/* =========================================
   LOGIMEX INTERNATIONAL - LUXURY STYLES
   ========================================= */

/* =========================================
   1. FONTS: CORMORANT (Luxury) & MONTSERRAT
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500&display=swap');

/* HEADINGS - The "Sobha" Look */
h1, h2, h3, h4, h5, h6, .navbar-brand, .text-uppercase {
    font-family: 'Cormorant Garamond', serif;
    color: #0F172A; /* Midnight Slate */
    letter-spacing: 0.5px; 
    font-weight: 600;
}

h1 { font-size: 5rem; } /* Make main titles huge and dramatic */
h2 { font-size: 3.5rem; }

/* BODY TEXT - Clean & Airy */
body, p, li, a {
    font-family: 'Montserrat', sans-serif;
    color: #4a4a4a; /* Soft Charcoal, not black */
    font-weight: 300; /* Thinner text looks more premium */
    font-size: 20px;
    line-height: 1.9; /* More spacing between lines */
}

/* =========================================
   2. LUXURY COLOR OVERRIDES
   ========================================= */

/* --- BACKGROUNDS --- */
body {
    background-color: #F5F3EF; /* Warm Cream/Ivory - Luxurious Off-White */
}

/* Alternate sections (Warm Gray) */
.bar.background-gray, .box-gray {
    background-color: #EBE8E3 !important;
    border-top: 1px solid #DDD9D2;
}

/* Top Bar - Deep Midnight */
#top {
    background: #0F172A;
    color: #ffffff;
    border-bottom: 3px solid #C5A059;
}

/* =========================================
   LUXURY FOOTER STYLES
   ========================================= */
.luxury-footer {
    background: linear-gradient(180deg, #0F172A 0%, #0a0f1a 100%);
    color: #ffffff;
    padding: 80px 0 50px;
    border-top: 3px solid #C5A059;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

/* Footer Brand/Logo Column */
.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 1.25rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: rgba(255,255,255,0.7);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    background: transparent;
}

.social-icon:hover {
    background: #C5A059;
    border-color: #C5A059;
    color: #0F172A;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Footer Column Headings */
.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C5A059;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #C5A059;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Contact Info in Footer */
.footer-contact-info li {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.footer-contact-info span:last-child,
.footer-contact-info a {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
}

/* Footer CTA Button */
.footer-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 16px 32px;
    border: 1px solid #C5A059;
    color: #C5A059;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-cta:hover {
    background: #C5A059;
    color: #0F172A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

/* Copyright Bar */
.luxury-copyright {
    background: #060910;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    font-weight: 300;
}

.copyright-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.copyright-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.copyright-links a:hover {
    color: #C5A059;
}

.copyright-links .divider {
    color: rgba(255,255,255,0.2);
    font-size: 0.7rem;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-heading {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .copyright-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- BUTTONS (The biggest change) --- */
/* Make buttons sharp squares, not rounded blobs */
.btn {
    border-radius: 0px !important; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 12px 25px;
    transition: all 0.4s ease;
}

/* Primary Button - Deep Wine/Bordeaux (Rich version of logo red) */
.btn-primary, .btn-template-main {
    background-color: #9A252A !important;
    border: 1px solid #9A252A !important;
    color: #fff !important;
}

.btn-primary:hover, .btn-template-main:hover {
    background-color: #0F172A !important; /* turns Navy on hover */
    border-color: #0F172A !important;
}

/* Hero Button */
.btn-hero {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 40px;
    font-size: 13px;
    letter-spacing: 3px;
}

.btn-hero:hover {
    background-color: #C5A059;
    border-color: #C5A059;
    color: #0F172A;
}

/* Secondary Button (Ghost Style) */
.btn-outline-primary {
    color: #0F172A;
    border: 1px solid #0F172A;
    background: transparent;
}

/* --- LINKS & NAVIGATION --- */
a {
    color: #9A252A; /* Bordeaux Links */
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #C5A059; /* Turns Gold on hover */
    text-decoration: none;
}

/* Navbar Menu */
.navbar-default {
    background-color: #fff;
    border-bottom: none;
    margin-bottom: 0;
    min-height: 70px;
}

/* Remove white gap below navbar */
.navbar-affixed-top {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#navbar {
    margin-bottom: 0 !important;
    border: none !important;
    padding-bottom: 0 !important;
}

/* Remove any gap between header and content */
header.navbar-affixed-top + *,
#navbar + *,
.navbar + * {
    margin-top: 0 !important;
}

/* Fix for theme's default spacing */
.navbar-default {
    margin-bottom: 0 !important;
}

header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Vertically center navbar items */
.navbar-nav {
    display: flex;
    align-items: stretch;
}

.navbar-nav > li {
    display: flex;
    align-items: center;
}

.navbar-default .navbar-nav > li > a {
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    color: #0F172A !important;
    font-weight: 600;
    padding: 25px 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Menu Item Hover - Golden Highlight */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    background-color: #C5A059 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Remove ALL borders/lines on menu items */
.navbar-default .navbar-nav > li > a {
    border: none !important;
    text-decoration: none !important;
}

.navbar-default .navbar-nav > li > a::before,
.navbar-default .navbar-nav > li > a::after {
    display: none !important;
}

/* Dropdown Menu Styling */
.navbar-default .navbar-nav .dropdown-menu {
    background-color: #F5F3EF;
    border: 1px solid #E5E7EB;
    border-top: 2px solid #C5A059;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.navbar-default .navbar-nav .dropdown-menu > li > a {
    font-family: 'Cormorant Garamond', serif;
    color: #0F172A !important;
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.navbar-default .navbar-nav .dropdown-menu > li > a:hover {
    background-color: #C5A059 !important;
    color: #ffffff !important;
}

/* Active Menu Item - Gold Color (No Underline) */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    background: transparent !important;
    color: #C5A059 !important;
    border: none !important;
    text-decoration: none !important;
}

/* Brand Text next to Logo */
.navbar-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #C5A059;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-left: 12px;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    top: 2px;
    background: linear-gradient(135deg, #C5A059 0%, #d4af37 50%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-brand.home:hover .navbar-brand-text {
    letter-spacing: 6px;
}

/* Ensure logo and text are side by side and left-aligned */
.navbar-brand.home {
    display: flex;
    align-items: center;
    float: left;
    margin-left: 0;
    padding-left: 0;
}

.navbar-header {
    float: left;
}

.navbar-brand.home img {
    display: inline-block;
}

/* --- ICONS & BOXES --- */
/* Minimalist Boxes */
.box-simple {
    border: 1px solid #E5E7EB; /* Very subtle border */
    background: #fff;
    padding: 30px;
    transition: all 0.4s ease;
    min-height: 230px;
}

.box-simple:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft, expensive shadow */
    border-color: #C5A059; /* Gold border on hover */
    transform: translateY(-5px);
}

.box-simple .icon {
    color: #0F172A;
    border-color: transparent; /* Remove circle border for cleaner look */
    font-size: 40px;
}

/* =========================================
   3. ORIGINAL BOX SIZING (PRESERVED)
   ========================================= */

.box-image-text .image {
    min-height: 190px;
    max-height: 190px;
}

.box-image-text .image img {
    max-height: 190px;
    margin: auto;
}

/* =========================================
   4. HOMEPAGE SECTIONS
   ========================================= */

/* Hero Section */
.home-hero {
    position: relative;
    background: #0F172A;
    padding: 200px 0 180px;
    overflow: hidden;
    margin-top: 0 !important;
}

/* Background Image */
.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/img/home-page-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: bgFadeIn 2s ease forwards;
    animation-delay: 0.5s;
}

@keyframes bgFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Dark Tint Overlay */
.home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.75) 0%,
        rgba(15, 23, 42, 0.85) 50%,
        rgba(15, 23, 42, 0.9) 100%
    );
    z-index: 1;
}

/* Vignette Effect for luxury feel */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 4px;
    overflow: visible;
    padding-bottom: 10px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 30px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(197, 160, 89, 0.15);
}

/* Apple-style Letter Animation */
.title-word {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(40px) scale(0.9);
    animation: titleReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.08s * var(--i) + 0.3s);
}

.title-space {
    display: inline-block;
    width: 0.3em;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

/* Golden Line Animation */
.hero-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
    margin: 0 auto 25px;
    animation: lineExpand 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 2s;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 200px;
        opacity: 1;
    }
}

/* Tagline - Division names */
.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #C5A059;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.tagline-word {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(15px);
    animation: taglineReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.3s * var(--j) + 2.2s);
}

.tagline-dot {
    display: inline-block;
    opacity: 0;
    margin: 0 15px;
    animation: dotReveal 0.5s ease forwards;
    animation-delay: calc(0.3s * var(--j) + 2.2s);
}

@keyframes taglineReveal {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes dotReveal {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    100% {
        opacity: 0.8;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Hero Button Fade In */
.btn-hero {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 18px 45px;
    font-size: 14px;
    letter-spacing: 3px;
    opacity: 0;
    animation: buttonReveal 0.8s ease forwards;
    animation-delay: 3.8s;
}

@keyframes buttonReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Base Styles */
.home-section {
    padding: 100px 0;
    position: relative;
}

.section-white {
    background: #FAFAFA;
}

.section-dark {
    background: #0F172A;
}

.section-gradient {
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
}

.section-quote {
    background: #F0F2F5;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

/* Section Titles */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-title.white {
    color: #ffffff;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #C5A059; /* Gold */
    margin-bottom: 35px;
}

.title-underline.center {
    margin-left: auto;
    margin-right: auto;
}

.title-underline.left {
    margin-left: 0;
}

.title-underline.white {
    background: #C5A059;
}

/* Lead Text */
.lead-text {
    font-size: 1.45rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 25px;
    font-weight: 300;
}

.section-text {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #4a4a4a;
    font-weight: 300;
}

/* Impact Cards */
.impact-card {
    text-align: center;
    padding: 60px 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s ease;
    min-height: 320px;
}

.impact-card:hover {
    background: rgba(255,255,255,0.03);
    border-color: #C5A059;
}

.impact-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 35px;
    border: 2px solid #C5A059;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.impact-card:hover .impact-icon {
    background: #C5A059;
}

.impact-icon i {
    font-size: 2.2rem;
    color: #C5A059;
    transition: all 0.4s ease;
}

.impact-card:hover .impact-icon i {
    color: #0F172A;
}

.impact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 600;
}

.impact-card p {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: #ffffff;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #E5E7EB;
}

.stat-item:hover {
    border-color: #C5A059;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Values Section */
.vision-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    font-weight: 400;
}

.values-row {
    margin-top: 40px;
}

.value-card {
    background: transparent;
    padding: 50px 35px;
    text-align: center;
    height: 100%;
    min-height: 280px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.value-card:hover {
    border-color: #C5A059;
    background: rgba(255,255,255,0.02);
}

.value-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: rgba(197, 160, 89, 0.3); /* Faded Gold */
    margin-bottom: 15px;
    line-height: 1;
}

.value-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Division Cards */
.divisions-row {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
}

.divisions-row > div {
    display: flex;
}

.division-card {
    background: #ffffff;
    padding: 60px 45px;
    text-align: center;
    transition: all 0.5s ease;
    height: 100%;
    min-height: 420px;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.division-card:hover {
    border-color: #C5A059;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.division-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 40px;
    border: 2px solid #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.division-card:hover .division-icon {
    background: #0F172A;
    border-color: #0F172A;
}

.division-icon i {
    font-size: 2.5rem;
    color: #0F172A;
    transition: all 0.4s ease;
}

.division-card:hover .division-icon i {
    color: #C5A059;
}

.division-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: #0F172A;
    margin-bottom: 18px;
    font-weight: 600;
}

.division-card p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
    flex-grow: 1;
}

.division-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9A252A;
    text-decoration: none;
    transition: all 0.3s ease;
}

.division-link:hover {
    color: #C5A059;
}

.division-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.division-link:hover i {
    transform: translateX(5px);
}

/* Quote Block */
.quote-block {
    position: relative;
    padding: 70px 50px;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem;
    color: #C5A059;
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: #0F172A;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.quote-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #9A252A;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================================
   5. ABOUT/STATIC PAGE STYLES
   ========================================= */

/* Page Header */
.page-header {
    background: #0F172A;
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 3px solid #C5A059;
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.page-breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-breadcrumb a {
    color: #C5A059;
}

.page-breadcrumb span {
    margin: 0 10px;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E7EB;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    margin-bottom: 25px;
}

.page-content ul, .page-content ol {
    margin-bottom: 30px;
}

.page-content li {
    margin-bottom: 15px;
    padding-left: 10px;
}

/* About Navigation Links */
.about-nav {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #E5E7EB;
}

.about-nav h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-nav-link {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    transition: all 0.4s ease;
    text-decoration: none;
}

.about-nav-link:hover {
    border-color: #C5A059;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    transition: all 0.4s ease;
}

.about-nav-link:hover .nav-icon {
    background: #0F172A;
}

.nav-icon i {
    color: #0F172A;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.about-nav-link:hover .nav-icon i {
    color: #C5A059;
}

.nav-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #0F172A;
    flex: 1;
    font-weight: 600;
}

.nav-arrow {
    color: #C5A059;
    transition: transform 0.3s ease;
}

.about-nav-link:hover .nav-arrow {
    transform: translateX(5px);
}

/* =========================================
   6. SCROLL REVEAL ANIMATIONS
   ========================================= */

.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.reveal-item:nth-child(1) { transition-delay: 0s; }
.reveal-item:nth-child(2) { transition-delay: 0.15s; }
.reveal-item:nth-child(3) { transition-delay: 0.3s; }
.reveal-item:nth-child(4) { transition-delay: 0.45s; }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* =========================================
   7. RESPONSIVE
   ========================================= */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .home-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .home-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-card,
    .value-card,
    .division-card {
        margin-bottom: 30px;
    }
    
    .quote-text {
        font-size: 1.4rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
}

/* =========================================
   ABOUT PAGE - LUXURY STYLES
   ========================================= */

/* About Hero Banner */
.about-hero {
    position: relative;
    background: #0F172A;
    padding: 180px 0 140px;
    overflow: hidden;
    margin-top: 0 !important;
    text-align: center;
}

/* Background Image Layer */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/img/about-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: bgFadeIn 2s ease forwards;
    animation-delay: 0.5s;
}

/* Divisions Hero - use different banner image */
.about-hero.divisions-hero::before {
    background-image: url('/img/divisions-banner.png');
}

/* Sustainability Hero - use sustainability banner image (falls back to about-banner if not available) */
.about-hero.sustainability-hero::before {
    background-image: url('/img/sustainability-banner.png'), url('/img/about-banner.png');
}

/* Page Intro Section - centered text below hero */
.page-intro-section {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.page-intro-section .lead-text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
    color: #4a4a4a;
}

/* =========================================
   CERTIFICATION CARDS
   ========================================= */
.certifications-grid {
    margin-top: 40px;
}

.certification-card {
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.certification-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.certification-header {
    padding: 25px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    text-align: center;
}

.certification-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #0F172A;
    margin: 10px 0 5px;
}

.certification-header .cert-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    margin: 0;
}

.cert-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cert-badge.certified {
    background: linear-gradient(135deg, #C5A059 0%, #D4B76A 100%);
    color: #ffffff;
}

.cert-badge.compliant {
    background: rgba(197, 160, 89, 0.15);
    color: #C5A059;
    border: 1px solid #C5A059;
}

.cert-badge.in-process {
    background: rgba(15, 23, 42, 0.1);
    color: #0F172A;
    border: 1px solid rgba(15, 23, 42, 0.3);
}

.certification-body {
    padding: 25px;
    flex: 1;
}

.certification-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

/* Dark Tint Overlay - lighter for better image visibility */
.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.55) 0%,
        rgba(15, 23, 42, 0.65) 50%,
        rgba(15, 23, 42, 0.7) 100%
    );
    z-index: 1;
}

/* Vignette Effect for luxury feel */
.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.about-hero .hero-content {
    position: relative;
    z-index: 3;
}

.about-hero .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 4px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: aboutTitleFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 30px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(197, 160, 89, 0.15);
}

@keyframes aboutTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero .hero-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
    margin: 30px auto;
    animation: lineExpand 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.8s;
}

.hero-tagline-simple {
    opacity: 0;
    animation: aboutTitleFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.5s;
}

.hero-tagline-simple {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
}

/* Section Navigation Bar */
.about-section-nav {
    background: #ffffff;
    padding: 0;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 100;
}

.section-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 0;
}

.section-nav-list li {
    margin: 0;
}

.section-nav-link {
    display: block;
    padding: 20px 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.section-nav-link:hover,
.section-nav-link.active {
    color: #C5A059;
    border-bottom-color: #C5A059;
    background: transparent;
    text-decoration: none;
}

/* About Sections */
.about-section {
    padding: 100px 0;
}

.about-section.section-white {
    background: #ffffff;
}

.about-section.section-cream {
    background: #F5F3EF;
}

.about-section .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #0F172A;
    margin-bottom: 15px;
    text-align: center;
}

.about-section .title-underline {
    width: 60px;
    height: 2px;
    background: #C5A059;
    margin: 0 auto 50px;
}

.about-content {
    margin-bottom: 50px;
}

.about-content .lead-text {
    font-size: 1.4rem;
    line-height: 2;
    color: #4a4a4a;
    margin-bottom: 30px;
    text-align: center;
}

/* Mission Block */
.mission-block {
    background: #F5F3EF;
    padding: 50px;
    margin: 50px 0;
    text-align: center;
    border-left: 4px solid #C5A059;
}

.mission-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #0F172A;
    margin-bottom: 20px;
}

.mission-block p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin: 0;
    font-style: italic;
}

/* Division Cards */
.divisions-grid {
    margin: 60px 0;
}

.divisions-grid h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #0F172A;
    text-align: center;
    margin-bottom: 40px;
}

.division-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.division-card:hover {
    border-color: #C5A059;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.division-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #C5A059;
    color: #C5A059;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    background: transparent;
}

.division-icon i,
.division-icon .fa {
    color: #C5A059;
    transition: all 0.3s ease;
}

.division-card:hover .division-icon {
    background: #C5A059;
    border-color: #C5A059;
}

.division-card:hover .division-icon i,
.division-card:hover .division-icon .fa {
    color: #ffffff !important;
}

.division-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #0F172A;
    margin-bottom: 15px;
}

.division-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Headquarters Block */
.headquarters-block {
    text-align: center;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #E5E7EB;
}

.headquarters-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #0F172A;
    margin-bottom: 20px;
}

.headquarters-block p {
    font-size: 1.05rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 60px;
}

/* No ::before - we'll create individual line segments */

.timeline-item {
    position: relative;
    padding-bottom: 50px;
    padding-left: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

/* Line segment before circle */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -53px;
    top: 16px;
    bottom: -50px;
    width: 2px;
    background: #C5A059;
}

.timeline-item:last-child::before {
    display: none;
}

/* Circle - centered on line */
.timeline-item::after {
    content: '';
    position: absolute;
    left: -60px;
    top: 2px;
    width: 16px;
    height: 16px;
    background: #F5F3EF;
    border-radius: 50%;
    border: 3px solid #C5A059;
    z-index: 2;
}

.timeline-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #0F172A;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Leadership Quote */
.leadership-quote {
    margin-top: 60px;
}

.leadership-quote .quote-block {
    background: #F5F3EF;
    padding: 60px;
    text-align: center;
    position: relative;
}

.leadership-quote .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: #C5A059;
    line-height: 1;
    margin-bottom: 20px;
}

.leadership-quote .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #0F172A;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

.leadership-quote .quote-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Subtitle */
.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: #C5A059;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-style: italic;
}

/* The Logimex Difference Cards */
.difference-block {
    margin: 70px 0 30px;
}

.difference-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #0F172A;
    text-align: center;
    margin-bottom: 50px;
}

.difference-block .row {
    display: flex;
    flex-wrap: wrap;
}

.difference-block .col-md-4 {
    display: flex;
}

.difference-card {
    background: #F5F3EF;
    border: 1px solid #E5E7EB;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.difference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #C5A059;
}

.difference-icon {
    width: 70px;
    height: 70px;
    background: #0F172A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.difference-icon i {
    font-size: 1.8rem;
    color: #C5A059;
    transition: all 0.4s ease;
}

.difference-card:hover .difference-icon {
    background: #C5A059;
}

.difference-card:hover .difference-icon i {
    color: #ffffff;
}

.difference-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: #0F172A;
    margin-bottom: 18px;
}

.difference-card p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    flex-grow: 1;
    line-height: 1.7;
}

/* Chairman's Message Block */
.chairman-message {
    margin-top: 60px;
}

.chairman-message h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #0F172A;
    text-align: center;
    margin-bottom: 40px;
}

.chairman-message .quote-block {
    background: linear-gradient(135deg, #0F172A 0%, #1a2744 100%);
    padding: 80px 60px 70px;
    text-align: center;
    position: relative;
    border-left: 4px solid #C5A059;
}

.chairman-message .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    color: #C5A059;
    line-height: 0.8;
    margin-bottom: 40px;
    opacity: 0.8;
    display: block;
}

.chairman-message .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #ffffff;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 40px;
}

.chairman-message .quote-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .about-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .section-nav-list {
        flex-direction: column;
    }
    
    .section-nav-link {
        padding: 15px 20px;
        text-align: center;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-section .section-title {
        font-size: 2.2rem;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .timeline-item::before {
        left: -30px;
    }
    
    .leadership-quote .quote-block {
        padding: 40px 25px;
    }
    
    .leadership-quote .quote-text {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .difference-card {
        padding: 35px 25px;
    }
    
    .chairman-message .quote-block {
        padding: 50px 30px;
    }
    
    .chairman-message .quote-text {
        font-size: 1.3rem;
    }
    
    .chairman-message .quote-mark {
        font-size: 5rem;
    }
}
/* =========================================
   LUXURY CONTACT PAGE STYLES
   ========================================= */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: #0F172A;
    padding: 140px 0 120px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/img/contact-us-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: bgFadeIn 2s ease forwards;
    animation-delay: 0.5s;
    z-index: 1;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 2;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 3;
    pointer-events: none;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

/* Sequential animations: title first, then line, then tagline */
.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0;
    animation: contactFadeInUp 1s ease forwards;
    animation-delay: 0s;
}

.contact-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
    margin: 0 auto 20px;
    opacity: 0;
    animation: contactLineExpand 1s ease forwards;
    animation-delay: 1s;
}

.contact-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    animation: contactFadeInUp 1s ease forwards;
    animation-delay: 2s;
}

@keyframes contactFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactLineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

/* Contact Main Section */
.contact-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.contact-form-wrapper,
.contact-info-wrapper {
    padding: 50px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    height: 100%;
    transition: all 0.4s ease;
}

.contact-form-wrapper:hover,
.contact-info-wrapper:hover {
    border-color: #C5A059;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* Luxury Form Inputs */
.luxury-input-group {
    margin-bottom: 20px;
}

.luxury-input-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.luxury-input {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #4a4a4a;
    background: #F5F3EF;
    border: 1px solid #E5E7EB;
    border-radius: 0;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.luxury-input:focus {
    background: #ffffff;
    border-color: #C5A059;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
    outline: none;
}

.luxury-input::placeholder {
    color: #aaa;
    font-weight: 300;
}

.luxury-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Luxury Submit Button */
.btn-luxury-primary {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #0F172A;
    color: #ffffff;
    border: 2px solid #0F172A;
    border-radius: 0;
    padding: 14px 35px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.btn-luxury-primary:hover {
    background: #C5A059;
    border-color: #C5A059;
    color: #0F172A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.btn-luxury-primary i {
    margin-right: 10px;
}

.form-submit-center {
    text-align: center;
    margin-top: 10px;
}

/* Contact Info Cards */
.contact-info-card {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E7EB;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #C5A059;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background: #C5A059;
}

.contact-icon i {
    font-size: 1.1rem;
    color: #C5A059;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon i {
    color: #0F172A;
}

.contact-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.contact-details p,
.contact-details a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #4a4a4a;
    line-height: 1.4;
}

.contact-details a:hover {
    color: #C5A059;
}

/* Social Section */
.contact-social h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-social .social-icons {
    display: flex;
    gap: 12px;
}

.contact-social .social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E7EB;
    color: #0F172A;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    background: transparent;
}

.contact-social .social-icon:hover {
    background: #C5A059;
    border-color: #C5A059;
    color: #0F172A;
    transform: translateY(-3px);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-title {
        font-size: 3.5rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 80px;
    }
    
    .contact-title {
        font-size: 2.8rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px 25px;
    }
}

/* =========================================
   SUSTAINABILITY PAGE STYLES
   ========================================= */

/* Sustainability Hero Section */
.sustainability-hero {
    position: relative;
    background: #0F172A;
    padding: 180px 0 140px;
    overflow: hidden;
}

.sustainability-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/img/sustainability-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: bgFadeIn 2s ease forwards;
    animation-delay: 0.5s;
    z-index: 1;
}

.sustainability-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 2;
}

.sustainability-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 3;
    pointer-events: none;
}

.sustainability-hero .hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

/* Sequential animations: title first, then line, then tagline */
.sustainability-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0;
    animation: sustainFadeInUp 1s ease forwards;
    animation-delay: 0s;
}

.sustainability-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
    margin: 0 auto 25px;
    opacity: 0;
    animation: sustainLineExpand 1s ease forwards;
    animation-delay: 1s;
}

.sustainability-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0;
    animation: sustainFadeInUp 1s ease forwards;
    animation-delay: 2s;
}

@keyframes sustainFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sustainLineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

/* Certificate Display Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 50px;
}

.cert-card {
    border: 1px solid rgba(197, 160, 89, 0.2);
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.cert-card:hover {
    transform: translateY(-8px);
    border-color: #C5A059;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cert-card .cert-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(197, 160, 89, 0.3);
    transition: all 0.4s ease;
}

.cert-card:hover .cert-icon {
    border-color: #C5A059;
    background: rgba(197, 160, 89, 0.1);
}

.cert-card .cert-icon i {
    font-size: 1.8rem;
    color: #C5A059;
}

.cert-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}

.cert-card .gold-line {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
    margin: 15px auto;
}

.cert-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
}

/* White text utilities for dark sections */
.section-title.white {
    color: #ffffff;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.7);
}

.lead-text.white {
    color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   CERTIFICATE SECTION - ENHANCED STYLING
   ========================================= */

/* Certificate section wrapper with dark background */
.certificates-section {
    background: #0F172A;
    padding: 100px 0;
}

.certificates-section .section-title {
    color: #ffffff !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.certificates-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
}

.certificates-section .lead-text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

/* Enhanced certificate grid responsive behavior */
@media (max-width: 576px) {
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .certificates-section {
        padding: 60px 0;
    }
    
    .certificates-section .section-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   WHITE TEXT VISIBILITY FIXES - HIGH SPECIFICITY
   ========================================= */

/* Force white text in dark about-section backgrounds */
.about-section[style*="background: #0F172A"] .section-title,
.about-section[style*="background:#0F172A"] .section-title,
.about-section[style*="background: rgb(15, 23, 42)"] .section-title,
section[style*="background: #0F172A"] .section-title,
section[style*="background:#0F172A"] .section-title {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.about-section[style*="background: #0F172A"] .section-subtitle,
.about-section[style*="background:#0F172A"] .section-subtitle,
.about-section[style*="background: rgb(15, 23, 42)"] .section-subtitle,
section[style*="background: #0F172A"] .section-subtitle,
section[style*="background:#0F172A"] .section-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.7) !important;
}

.about-section[style*="background: #0F172A"] .lead-text,
.about-section[style*="background:#0F172A"] .lead-text,
.about-section[style*="background: rgb(15, 23, 42)"] .lead-text,
section[style*="background: #0F172A"] .lead-text,
section[style*="background:#0F172A"] .lead-text,
.about-section[style*="background: #0F172A"] p,
.about-section[style*="background:#0F172A"] p,
section[style*="background: #0F172A"] p,
section[style*="background:#0F172A"] p {
    color: rgba(255, 255, 255, 0.8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8) !important;
}

/* Additional specificity for nested elements */
.about-section[style*="background: #0F172A"] .row .col-md-12 .section-title,
.about-section[style*="background:#0F172A"] .row .col-md-12 .section-title {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Ensure list items are visible in dark sections */
.about-section[style*="background: #0F172A"] li,
.about-section[style*="background:#0F172A"] li,
section[style*="background: #0F172A"] li,
section[style*="background:#0F172A"] li {
    color: rgba(255, 255, 255, 0.8) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8) !important;
}

/* Ensure headings are visible in dark sections */
.about-section[style*="background: #0F172A"] h1,
.about-section[style*="background: #0F172A"] h2,
.about-section[style*="background: #0F172A"] h3,
.about-section[style*="background: #0F172A"] h4,
section[style*="background: #0F172A"] h1,
section[style*="background: #0F172A"] h2,
section[style*="background: #0F172A"] h3,
section[style*="background: #0F172A"] h4 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Sustainability Responsive */
@media (max-width: 992px) {
    .sustainability-title {
        font-size: 3.5rem;
    }
    
    .sustainability-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .cert-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sustainability-hero {
        padding: 120px 0 100px;
    }
    
    .sustainability-title {
        font-size: 2.8rem;
    }
    
    .sustainability-tagline {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .cert-card {
        padding: 30px 20px;
    }
    
    .cert-card h3 {
        font-size: 1.4rem;
    }
}

/* =========================================
   FAQ PAGE STYLES
   ========================================= */

section.faq-hero {
    position: relative;
    background: #0F172A !important;
    padding: 140px 0 120px;
    overflow: hidden;
    margin-top: 0 !important;
}

section.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/img/faq-page-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: bgFadeIn 2s ease forwards;
    animation-delay: 0.5s;
    z-index: 1;
}

section.faq-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 2;
}

section.faq-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 3;
    pointer-events: none;
}

section.faq-hero .hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

.faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0s;
}

.faq-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
    margin: 0 auto 20px;
    opacity: 0;
    animation: lineExpand 1s ease forwards;
    animation-delay: 0.8s;
}

.faq-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.5s;
}

.faq-section {
    padding: 80px 0;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category:last-of-type {
    margin-bottom: 40px;
}

.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    margin-bottom: 15px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(197, 160, 89, 0.4);
}

.faq-item.active {
    border-color: #C5A059;
}

.faq-question {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(197, 160, 89, 0.05);
}

.faq-question h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0F172A;
    margin: 0 !important;
    flex: 1;
    padding-right: 20px;
    display: inline-block;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p,
.faq-answer ul {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #4a4a4a !important;
    line-height: 1.8 !important;
    padding: 0 25px 20px;
    margin: 0;
    background: none !important;
    -webkit-text-fill-color: #4a4a4a !important;
}

.faq-answer ul {
    padding-left: 45px;
    list-style-type: disc !important;
}

.faq-answer li {
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #4a4a4a !important;
    -webkit-text-fill-color: #4a4a4a !important;
}

.faq-answer a {
    color: #C5A059 !important;
    -webkit-text-fill-color: #C5A059 !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: 500 !important;
    background: none !important;
}

.faq-answer a:hover {
    color: #0F172A !important;
    -webkit-text-fill-color: #0F172A !important;
}

.faq-answer strong {
    font-weight: 600 !important;
    color: #0F172A !important;
    -webkit-text-fill-color: #0F172A !important;
}

/* FAQ CTA Box */
.faq-cta {
    margin-top: 60px;
}

.cta-box {
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.cta-box .btn-luxury-primary {
    background: #C5A059;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-box .btn-luxury-primary:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

/* =========================================
   LEGAL PAGES STYLES (Privacy, Terms)
   ========================================= */

.legal-hero {
    position: relative;
    background: #0F172A;
    padding: 120px 0 100px;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 50%, #0F172A 100%);
    z-index: 1;
}

.legal-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
    z-index: 2;
}

.legal-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 3;
    pointer-events: none;
}

.legal-hero .hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

.legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.legal-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C5A059, transparent);
    margin: 0 auto;
    opacity: 0;
    animation: lineExpand 1s ease forwards;
    animation-delay: 0.8s;
}

.legal-section {
    padding: 60px 0 80px;
}

.legal-content {
    background: #ffffff;
}

.legal-updated {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 14px !important;
    color: #666666 !important;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    -webkit-text-fill-color: #666666 !important;
    background: none !important;
}

.legal-content h2 {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 22px !important;
    font-weight: bold !important;
    color: #333333 !important;
    margin-top: 35px;
    margin-bottom: 15px;
    -webkit-text-fill-color: #333333 !important;
    background: none !important;
    letter-spacing: normal !important;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 18px !important;
    font-weight: bold !important;
    color: #333333 !important;
    margin-top: 25px;
    margin-bottom: 12px;
    -webkit-text-fill-color: #333333 !important;
    background: none !important;
    letter-spacing: normal !important;
}

.legal-content p {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    font-weight: normal !important;
    color: #444444 !important;
    line-height: 1.7 !important;
    margin-bottom: 12px;
    -webkit-text-fill-color: #444444 !important;
    background: none !important;
}

.legal-content ul,
.legal-content ol {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    color: #444444 !important;
    line-height: 1.7 !important;
    margin-bottom: 15px;
    padding-left: 30px;
    -webkit-text-fill-color: #444444 !important;
    background: none !important;
}

.legal-content li {
    margin-bottom: 8px;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    color: #444444 !important;
    -webkit-text-fill-color: #444444 !important;
    background: none !important;
}

.legal-content strong {
    color: #333333 !important;
    font-weight: bold !important;
    -webkit-text-fill-color: #333333 !important;
    background: none !important;
}

.legal-content a {
    color: #0066cc !important;
    text-decoration: underline !important;
    -webkit-text-fill-color: #0066cc !important;
    background: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
}

.legal-content a:hover {
    color: #004499 !important;
    -webkit-text-fill-color: #004499 !important;
}

.legal-content hr {
    border: none;
    border-top: 1px solid #dddddd;
    margin: 30px 0;
}

.legal-content em {
    font-style: italic;
    color: #555555 !important;
    -webkit-text-fill-color: #555555 !important;
    background: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 0 80px;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .legal-hero {
        padding: 100px 0 80px;
    }
    
    .legal-title {
        font-size: 2.5rem;
    }
}
