/* New css start */

/* --- HERO SECTION VARIABLES --- */
:root {
    --hero-height: 85vh; /* Takes up 85% of screen height */
    --gold: #6A1B4D;
    --dark: #8E2A63;
    --text-light: #f4f4f4;
    --overlay-color: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-slider-section {
    position: relative;
    width: 100%;
    height: var(--hero-height);
    min-height: 600px; /* Prevent it from getting too small on laptops */
    background-color: var(--dark);
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* --- SLIDE STYLING --- */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* IMAGE & KEN BURNS ANIMATION */
.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without distortion */
    transform: scale(1);
    transition: transform 10s ease; /* Slow zoom effect */
}

/* The Zoom Effect when active */
.slide.active .slide-bg img {
    transform: scale(1.15);
}

/* OVERLAY (Essential for text readability) */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-color);
    z-index: 2;
}

/* --- CONTENT LAYOUT --- */
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center; /* Vertically Center */
    padding-left: 10%; /* Indent from left */
}

.content-inner {
    max-width: 650px;
    color: var(--text-light);
}

/* TYPOGRAPHY */
.subtitle {
    display: block;
    color: #dea52e;
    /* font-family: 'Manrope', sans-serif; */
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    
    /* Animation setup */
    opacity: 0;
    transform: translateY(30px);
}

.content-inner h1 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 4rem; /* Big, authoritative font */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);

    /* Animation setup */
    opacity: 0;
    transform: translateY(30px);
}

.content-inner p {
    /* font-family: 'Manrope', sans-serif; */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.85);
    border-left: 3px solid #dea52e;
    padding-left: 20px;

    /* Animation setup */
    opacity: 0;
    transform: translateY(30px);
}

/* ANIMATIONS (Staggered Entrance) */
.slide.active .subtitle { animation: fadeInUp 0.8s ease forwards 0.3s; }
.slide.active h1 { animation: fadeInUp 0.8s ease forwards 0.5s; }
.slide.active p { animation: fadeInUp 0.8s ease forwards 0.7s; }
.slide.active .btn-wrapper { animation: fadeInUp 0.8s ease forwards 0.9s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- BUTTONS --- */
.btn-wrapper {
    display: flex;
    gap: 15px;
    opacity: 0; 
    transform: translateY(30px);
}

.btn-hero {
    text-decoration: none;
    padding: 16px 36px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    /* font-family: 'Manrope', sans-serif; */
}

.btn-hero.primary {
    background-color: #4e1841;
    color: #ffffff;
    border: 1px solid #4e1841;
}

.btn-hero.primary:hover {
    background-color: transparent;
    color: #8E2A63;
}

.btn-hero.outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-hero.outline:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* --- CONTROLS --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: #dea52e;
    border-color: #dea52e;
    color: #000;
}

.prev { left: 30px; }
.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 10%;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.3s;
}

.dot-indicator.active {
    background: #dea52e;
    transform: scale(1.3);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .content-inner h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hero-slider-section { height: 80vh; min-height: 500px; }
    
    .slide-content { 
        padding-left: 5%; 
        padding-right: 5%;
        justify-content: center;
        text-align: center;
    }
    
    .content-inner h1 { font-size: 2.2rem; }
    
    .content-inner p {
        border-left: none; /* Remove side line on mobile */
        border-bottom: 2px solid #dea52e; /* Add bottom line instead */
        padding-bottom: 15px;
        padding-left: 0;
    }

    .btn-wrapper { justify-content: center; flex-direction: column; }
    .btn-hero { width: 100%; }

    .slider-arrow { display: none; } /* Hide arrows on mobile for cleaner look */
    
    .slide-overlay {
        background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    }
    
    .slider-dots {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --------------------------------------------- */
/* Header/Global elements moved from styles.css  */
/* --------------------------------------------- */

.topbar {
    padding: 6px 10px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    background-color: #4e1841;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

/* Navbar Styles */
.navbar-nav .nav-link {
    font-size: 1.05rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #4e1841 !important;
    font-weight: 600;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: #4e1841;
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Enquiry button */
.btn-enquiry {
    background-color: #4e1841;
    border: 1px solid #4e1841;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 140px;
}
.btn-enquiry:hover {
    background-color: #2c4a7c;
    border-color: #2c4a7c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 51, 84, 0.3) !important;
}

/* Global container width */
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1250px;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
    z-index: 1050;
}
.whatsapp-float:hover {
    background: #1ebe57;
}

/* --- VARIABLES (Consistent with previous steps) --- */
:root {
    --gold: #6A1B4D;
    --navy: #8E2A63;
    --text-dark: #222;
    --text-gray: #666;
    --white: #ffffff;
}

.about-premium-section {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden; /* Prevents elements from sticking out */
}

/* --- GRID LAYOUT --- */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% 50% split */
    gap: 80px;
    align-items: center;
}

/* --- LEFT SIDE: VISUALS --- */
.about-visuals {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}



/* The Main Image */
.img-frame-f {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-visuals:hover .main-img {
    transform: scale(1.03); /* Subtle zoom on hover */
}

/* Gold Outline Box (Decorative) */
.pattern-box {
    position: absolute;
    top: -20px;
    left: 0;
    width: 90%;
    height: 90%;
    border: 3px solid #dea52e;
    z-index: 1;
    opacity: 0.3;
}

/* Floating Badge */
.exp-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #8E2A63;
    color: var(--white);
    padding: 25px 35px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-bottom: 4px solid #dea52e;
}

.exp-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #dea52e;
    /* font-family: 'Manrope', sans-serif; */
}

.exp-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* --- RIGHT SIDE: CONTENT --- */
.about-content {
    padding-right: 10px;
}

/* Tag */
.section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4e1841;
    margin-bottom: 15px;
}

.section-tag .line {
    width: 40px;
    height: 2px;
    background-color: #4e1841;
}

/* Headlines */
.about-content h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight {
    color: var(--navy);
    position: relative;
    z-index: 1;
    display: inline-block;
}

/* Gold highlight underline effect */
.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

/* Text */
.lead-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
    border-left: 3px solid var(--navy);
    padding-left: 20px;
}

.body-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.feature-list i {
    color: #dea52e;
    font-size: 1.1rem;
}

/* Buttons area */
.btn-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.signature {
    font-family: 'Playfair Display', serif; Or a handwriting font if available
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-gray);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 60px;
    }

    .about-visuals {
        padding: 0;
        margin-bottom: 30px;
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .pattern-box {
        left: -10px;
        top: -10px;
    }

    .exp-badge {
        padding: 15px 25px;
        right: 0;
        bottom: -20px;
    }
    
    .exp-badge .years { font-size: 2rem; }
    
    .about-content h2 { font-size: 2.2rem; }
    
    .feature-list { grid-template-columns: 1fr; } /* Single column list on mobile */
}

/* --- PURE CSS SMOOTH INFINITE SCROLLER --- */

/* Wrapper: Hides the overflow and adds fade edges */
.media-slider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px; /* Padding for hover drop-shadows */
    /* Adds a sleek fade effect on left and right edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

/* Track: Flex container that actually moves */
.media-slider-track {
    display: flex;
    gap: 40px; /* Space between cards */
    width: max-content;
    /* 30s controls the speed. Linear keeps it smooth. */
    animation: premium-scroll 30s linear infinite;
}

/* Pause animation when user hovers to read or click */
.media-slider-wrapper:hover .media-slider-track {
    animation-play-state: paused;
}

/* --- CARD UPDATES FOR SLIDER --- */
.media-card {
    /* Fixed width is required for the infinite scroll math to work smoothly */
    width: 380px; 
    flex-shrink: 0; 
    /* The rest of your existing card styles remain here */
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.03);
}

/* --- THE INFINITE SCROLL KEYFRAMES --- */
/* The track moves exactly half its total width (calc(-50%)) minus half the gap (-20px) to loop perfectly */
@keyframes premium-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); }
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .media-card {
        width: 300px; /* Smaller cards on mobile */
    }
    .media-slider-track {
        gap: 20px;
    }
    @keyframes premium-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 10px)); }
    }
    /* Remove the fade edge on small screens for better visibility */
    .media-slider-wrapper {
        -webkit-mask-image: none;
        mask-image: none;
    }
}
/* --- VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --navy-dark: #8E2A63;
    --navy-card: #15181e;
    --text-silver: #a0a0a0;
    --white: #ffffff;
}

.advantage-premium-section {
    padding: 50px 0;
    background-color: #4e1841;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Background Texture (Optional) */
.advantage-premium-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

/* --- HEADER --- */
.section-header .sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.highlight-text {
    color: #dea52e;
    font-style: italic;
}

.separator {
    width: 60px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto 20px;
}

/* --- GRID LAYOUT --- */
.advantage-grid {
    display: grid;
    /* Responsive: 2 columns on tablet, 4 on desktop */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* --- CARD DESIGN --- */
.advantage-card {
    background: #8e2a63;
    padding: 30px 30px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gold Top Border on Hover */
.advantage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 3px;
    background: #dea52e;
    transition: width 0.4s ease;
}

.advantage-card:hover::before {
    width: 100%;
}

/* Hover: Lift & Glow */
.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(212, 175, 55, 0.2);
}

/* Icon */
.card-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #dea52e;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: 0.4s;
}

.advantage-card:hover .card-icon {
    background: #dea52e;
    color: var(--navy-dark);
    transform: rotateY(180deg); /* 3D Flip Effect */
}

/* Content */
.advantage-card h3 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .advantage-grid {
        grid-template-columns: 1fr 1fr; /* 2 Columns on Tablet */
    }
}

@media (max-width: 600px) {
    .advantage-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
    }
    
    .section-header h2 { font-size: 2.2rem; }
}
/* --- VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --navy: #8E2A63;
    --bg-light: #f9f9f9;
    --text-gray: #666;
    --card-bg: #ffffff;
}

.services-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

/* --- HEADER (Reused for consistency) --- */
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- GRID LAYOUT (The Magic Part) --- */
.services-grid {
    display: grid;
    /* This creates 4 columns automatically */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
}

/* --- CARD DESIGN --- */
.service-card {
    background: var(--card-bg);
    border-radius: 4px; /* Slight rounded corners */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Soft shadow */
    transition: all 0.4s ease;
    position: relative;
    border-bottom: 3px solid transparent; /* Hidden border for hover effect */
}

/* Hover Effect: Lift Card & Show Gold Border */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom-color: #dea52e;
}

/* Image Area */
.img-box {
    width: 100%;
    height: 180px; /* Fixed height for uniformity */
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Effect: Zoom Image */
.service-card:hover .img-box img {
    transform: scale(1.1);
}

/* Content Area */
.content-box {
    padding: 25px;
}

.content-box h3 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: #dea52e;
}

.content-box p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px; /* Ensures cards align evenly even if text varies */
}

/* "Enquire Now" Link */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    transition: 0.3s;
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s;
    color: #dea52e;
}

.service-card:hover .read-more {
    color: #dea52e;
}

.service-card:hover .read-more i {
    transform: translateX(5px); /* Arrow moves right */
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet (2 Columns) */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile (1 Column) */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* --- VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --navy: #8E2A63;
    --white: #ffffff;
    --bg-light: #fdfdfd; /* Very subtle off-white */
    --text-gray: #555;
    --border-color: #eee;
}

.corporate-white-section {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
}

/* --- HEADER --- */
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-gray);
    line-height: 1.6;
}

.separator {
    width: 60px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto 20px;
}

/* --- GRID LAYOUT --- */
.corp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px;
}

/* --- ITEM DESIGN --- */
.corp-item {
    text-decoration: none;
    color: inherit;
    display: block;
}

.item-inner {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smooth ease */
    position: relative;
    overflow: hidden;
}

/* The Gold Top Border on Hover */
.item-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 3px;
    background: #dea52e;
    transition: width 0.4s ease;
}

.corp-item:hover .item-inner::before {
    width: 100%;
}

/* Hover: Lift & Shadow */
.corp-item:hover .item-inner {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* Icon Header */
.icon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.icon-header i {
    font-size: 2rem;
    color: var(--navy);
    transition: color 0.3s;
}

.corp-item:hover .icon-header i {
    color: #dea52e;
}

.arrow-icon {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #dea52e;
    font-size: 1.2rem;
}

.corp-item:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Text Content */
.item-inner h3 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.item-inner p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* --- BUTTON --- */
.btn-solid-navy {
    display: inline-block;
    background: #8E2A63;
    color: #ffffff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-solid-navy:hover {
    background: #dea52e;
    color: var(--navy);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .corp-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablet */
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .corp-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
        gap: 20px;
    }
    
    .section-header h2 { font-size: 2rem; }
}


/* --- WHITE PREMIUM STATS --- */
:root {
    --gold: #6A1B4D;
    --navy: #8E2A63;
    --white: #ffffff;
    --light-gray: #f8f8f8;
}

.stats-white-section {
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border-right: 1px solid #f0f0f0;
}

.stat-item:last-child {
    border-right: none;
}

/* Hover Effect: Subtle lift and shadow */
.stat-item:hover {
    transform: translateY(-5px);
    background: var(--white);
}

/* Number Styling */
.stat-number {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.stat-number .symbol {
    color: #dea52e;
    font-size: 1.8rem;
    margin-left: 4px;
    font-weight: 400;
}

/* Label & Icon Wrapper */
.label-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 1.2rem;
    color: #dea52e;
    opacity: 0.8;
}

.stat-label {
    /* font-family: 'Manrope', sans-serif; */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    font-weight: 700;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    .stat-item:nth-child(even) {
        border-left: 1px solid #f0f0f0;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item:nth-child(even) {
        border-left: none;
    }
    .stat-number {
        font-size: 2.8rem;
    }
}

/* --- VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --navy: #8E2A63;
    --bg-gray: #f9f9f9;
    --text-dark: #333;
    --text-muted: #666;
}

.testimonials-premium-section {
    padding: 60px 0;
    background-color: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 40% 55%; /* Split Layout */
    gap: 5%;
    align-items: center;
}

/* --- LEFT SIDE: INTRO --- */
.testi-intro .sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testi-intro h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.testi-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Trust Indicators (Badges) */
.trust-indicators {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
}

.indicator i {
    color: #dea52e;
    font-size: 1.2rem;
}

/* Custom Controls */
.testi-controls {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #8E2A63;
    color: #dea52e;
    border-color: var(--navy);
}

/* --- RIGHT SIDE: SLIDER --- */
.testi-slider-container {
    position: relative;
    background: #fff;
    padding: 25px 50px 20px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* Decorative Quote Icon */
.quote-icon {
    position: absolute;
    top: 30px;
    left: 40px;
    /* font-family: 'Playfair Display', serif; */
    font-size: 8rem;
    line-height: 1;
    color: rgba(212, 175, 55, 0.1); /* Very faint Gold */
    z-index: 0;
}

.testi-slides {
    position: relative;
    z-index: 1;
    min-height: 250px; /* Ensures height stability */
}

.testi-slide {
    display: none; /* Hidden by default */
    animation: fadeIn 0.8s ease;
}

.testi-slide.active {
    display: block; /* Show active */
}

/* Star Ratings */
.rating {
    color: #dea52e;
    font-size: 0.9rem;
    margin-bottom: 20px;
}


/* Client Details */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-details h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.client-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .testi-controls {
        justify-content: center; /* Center buttons on mobile */
    }
    
    .testi-intro {
        text-align: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }

    .testi-slider-container {
        padding: 40px 30px;
    }
    
    .review-text { font-size: 1.2rem; }
}

/* --- VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --navy: #8E2A63;
    --white: #ffffff;
    --text-gray: #555;
    --bg-light: #fdfdfd;
}

.blog-premium-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

/* --- HEADER --- */
.blog-header {
    margin-bottom: 60px;
}

.blog-header .sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.blog-header h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.separator {
    width: 60px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto;
}

/* --- BLOG GRID --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px;
}

/* --- BLOG CARD DESIGN --- */
.blog-item {
    background: var(--white);
    border: 1px solid #eee; /* Very subtle border */
    transition: all 0.4s ease;
}

.blog-item:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

/* Image Wrapper */
.blog-img-box {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-item:hover .blog-img-box img {
    transform: scale(1.1);
}

/* Date Badge */
.date-badge {
    position: absolute;
    /* top: 20px; */
    left: 20px;
    background: var(--white);
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 60px;
}

.date-badge .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffff;
    line-height: 1;
}

.date-badge .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #dea52e;
    font-weight: 600;
}

/* Content Area */
.blog-content {
    padding: 25px;
}

.category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #dea52e;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--navy);
    text-decoration: none;
    transition: 0.3s;
}

.blog-content h3 a:hover {
    color: #dea52e;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limits text to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Link */
.read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: 0.3s;
}

.read-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #dea52e;
    transition: 0.3s;
}

.blog-item:hover .read-link {
    color: #dea52e;
    gap: 12px; /* Arrow moves */
}

.blog-item:hover .read-link::after {
    width: 100%;
}

/* View All Button */
.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-view-all:hover {
    background: #8E2A63;
    color: var(--white);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablet */
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
        gap: 30px;
    }
    
    .blog-header h2 { font-size: 2rem; }
}

/* --- FULL WIDTH WHITE PREMIUM CTA --- */
:root {
    --luxury-gold: #6A1B4D;
    --luxury-navy: #8E2A63;
    --luxury-white: #ffffff;
}

.cta-fullwidth-premium {
    position: relative;
    width: 100%;
    min-height: 550px; /* Large, immersive height */
    display: flex;
    align-items: center;
    background-color: var(--luxury-white);
    overflow: hidden;
    padding: 60px 0;
}

/* Background Image Handling */
.cta-image-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center; /* Keeps the detailed part of the image on the right */
}

/* The White Gradient Fade */
.cta-white-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* This fades from solid white on the left to 20% white on the right */
    background: linear-gradient(90deg, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,0.95) 35%, 
        rgba(255,255,255,0.2) 100%
    );
}

.cta-fullwidth-premium .relative-z {
    position: relative;
    z-index: 5;
}

.relative-z {
    position: relative;
    z-index: 3;
}

/* Content Box Styling */
.cta-content-box {
    max-width: 650px; /* Keeps text readable and away from the edge */
}

.sub-tag-gold {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cta-content-box h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3rem;
    color: var(--luxury-navy);
    line-height: 1.15;
    margin-bottom: 25px;
}

.text-gold-serif {
    color: #dea52e;
    font-style: italic;
}

.accent-bar {
    width: 60px;
    height: 4px;
    background: #dea52e;
    margin-bottom: 30px;
}

.cta-content-box p {
    /* font-family: 'Manrope', sans-serif; */
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 45px;
}

/* Action Area */
.cta-footer-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-navy-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--luxury-navy);
    color: var(--luxury-white);
    padding: 20px 45px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: 1px solid var(--luxury-navy);
}

.btn-navy-luxury:hover {
    background-color: #dea52e;
    color: var(--luxury-navy);
    border-color: #dea52e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Support Flex */
.contact-support-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-icon {
    font-size: 1.8rem;
    color: #dea52e;
}

.support-info small {
    display: block;
    color: #888;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.support-info a {
    color: var(--luxury-navy);
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.support-info a:hover {
    color: #dea52e;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .cta-content-box { max-width: 100%; text-align: center; }
    .cta-white-gradient {
        background: rgba(255,255,255,0.9); /* Solid white wash on mobile */
    }
    .accent-bar { margin: 0 auto 30px; }
    .cta-footer-actions { flex-direction: column; gap: 30px; }
    .cta-content-box h2 { font-size: 2.5rem; }
}
/* --- VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --navy: #8E2A63;
    --white: #ffffff;
    --input-bg: #f8f9fa;
    --text-muted: #888;
}

.contact-premium-section {
    padding: 30px 0;
    background-color: #8E2A63; /* Dark background for the whole section */
    position: relative;
    overflow: hidden;
}

/* Background Pattern (Optional subtle texture) */
.contact-premium-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 50%; height: 100%;
    background: #15181e; /* Slightly lighter right side */
    z-index: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* --- LEFT SIDE: CONTEXT --- */
.contact-context {
    color: var(--white);
    padding-right: 20px;
}

.sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-context h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-context p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Contact Details List */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box-form{
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dea52e;
    font-size: 1.2rem;
}

.detail-item .label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 3px;
}

.detail-item .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    /* font-family: 'Playfair Display', serif; */
    transition: 0.3s;
}

.detail-item .value:hover {
    color: #dea52e;
}

/* --- RIGHT SIDE: FORM --- */
.contact-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 30px;
}

/* Floating Label Inputs */
.input-group {
    position: relative;
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    color: var(--navy);
    border: none;
    border-bottom: 2px solid #eee;
    background: transparent;
    outline: none;
    transition: all 0.3s;
    /* font-family: 'Manrope', sans-serif; */
}

/* Label styling */
.form-label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s;
}

/* Focus Effects */
.form-input:focus,
.form-input:not(:placeholder-shown) {
    border-bottom-color: #dea52e;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    font-size: 0.8rem;
    color: #dea52e;
    font-weight: 600;
}

/* Submit Button */
.btn-submit {
    background: #8E2A63;
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: #dea52e;
    color: var(--navy);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .contact-premium-section::before { display: none; }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-context {
        text-align: center;
        padding-right: 0;
    }
    
    .contact-details {
        align-items: center; /* Center icons on mobile */
    }
    
    .detail-item {
        text-align: left;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
}
/* --- VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --navy: #8E2A63;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --text-muted: #666;
}

.faq-premium-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 35% 60%; /* Split Layout */
    gap: 5%;
    align-items: flex-start;
}

/* --- LEFT SIDE: STICKY SIDEBAR --- */
.faq-sidebar {
    position: sticky;
    top: 100px; /* Stick to top when scrolling */
}

.faq-sidebar .sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.faq-sidebar h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.faq-sidebar p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Help Box */
.help-box {
    background: #8E2A63;
    padding: 30px;
    border-radius: 4px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.help-box::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 100px; height: 100px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.icon-circle {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #dea52e;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.help-box h4 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.help-box p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.btn-text-gold {
    color: #dea52e;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-text-gold:hover {
    color: var(--white);
    padding-left: 5px;
}

/* --- RIGHT SIDE: ACCORDION --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hover effect on the card */
.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-trigger {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.q-text {
    /* font-family: 'Manrope', sans-serif; */
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    padding-right: 20px;
    transition: color 0.3s;
}

.icon-toggle {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Active State Styling */
.faq-item.active .q-text {
    color: #dea52e;
}

.faq-item.active .icon-toggle {
    background: #dea52e;
    color: var(--navy);
    transform: rotate(45deg); /* Turns Plus into X */
}

/* Answer Area */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.answer-inner {
    padding: 0 25px 25px 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-sidebar {
        position: relative; /* Un-stick on mobile */
        top: 0;
        text-align: center;
    }

    .help-box {
        display: none; /* Hide help box on mobile to save space, or keep if preferred */
    }
}

/* --- VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --navy-dark: #0b0d10; /* Very dark background */
    --navy-light: #15181e; /* Slightly lighter for bottom bar */
    --text-gray: #a0a0a0;
    --white: #ffffff;
}

.footer-premium-section {
    background-color: #4e1841;
    color: #ffff;
    padding-top: 40px;
    position: relative;
    /* font-family: 'Manrope', sans-serif; */
    border-top: 4px solid #dea52e; /* The Premium Top Border */
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* --- GRID LAYOUT --- */
.footer-grid {
    display: grid;
    /* 4 Columns: Brand (Wide), Links, Links, Contact (Wide) */
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 25px;
}

/* --- COLUMN 1: BRAND --- */
.footer-logo img {
    height: 60px;
    margin-bottom: 25px;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 90%;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid rgb(255 255 255);
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: 0.3s;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: #dea52e;
    color: #000;
    border-color: #dea52e;
}

/* --- COLUMNS 2 & 3: LINKS --- */
.footer-heading {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

/* Small Gold Underline under Heading */
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: #dea52e;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Hover: Slide Right & Turn Gold */
.footer-nav a:hover {
    color: #dea52e;
    transform: translateX(8px);
}

/* --- COLUMN 4: CONTACT --- */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-gold {
    color: #dea52e;
    font-size: 1.1rem;
    margin-top: 4px; /* Align with text top */
    flex-shrink: 0;
}

.contact-list div {
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-list strong {
    color: var(--white);
    display: block;
    margin-bottom: 2px;
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    background-color: #8e2a63;
    padding: 14px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
}

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

.legal-links a {
    color: #ffff;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #dea52e;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2 Columns on Tablet */
        gap: 50px 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
        gap: 40px;
    }

    .bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .legal-links a {
        margin: 0 10px;
    }
}

/* --- VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --navy-dark: #0b0d10; /* Very deep navy/black */
    --navy-light: #15181e; /* Slightly lighter for cards */
    --text-silver: #a0a0a0;
    --white: #ffffff;
}

.identity-premium-section {
    padding: 50px 0;
    background-color: #4e1841;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Optional Background Pattern */
.identity-premium-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* --- HEADER --- */
.identity-premium-section .sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.identity-premium-section h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.highlight-text {
    color: #dea52e;
    font-style: italic;
}

.separator {
    width: 60px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto;
}

/* --- 1. INTRO BLOCK (Who We Are) --- */
.identity-intro {
    background: #8e2a63;
    border-left: 5px solid #dea52e;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro-icon {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.2); /* Faint Gold */
    flex-shrink: 0;
}

.intro-content h3 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
    margin: 0;
}

.intro-content strong {
    color: #dea52e;
    font-weight: 600;
}

/* --- 2. GRID (Expertise & Principles) --- */
.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.identity-card {
    background: #95285E;
    border: 1px solid rgb(255 255 255 / 60%);
    padding: 25px 30px;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Glow & Lift */
.identity-card:hover {
    background: #95285E;
    border-color: #dea52e;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background-color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.identity-card:hover .card-icon {
    background: #dea52e;
    color: var(--navy-dark);
}

.card-text h4 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.card-text p {
    font-size: 0.95rem;
    color: #ffff;
    line-height: 1.6;
    margin-bottom: 10px;
}

.card-text strong {
    color: var(--white);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .identity-grid {
        grid-template-columns: 1fr; /* Stack on Tablet/Mobile */
        gap: 30px;
    }

    .identity-intro {
        flex-direction: column; /* Icon on top of text on mobile */
        gap: 20px;
        text-align: center;
        border-left: none;
        border-top: 5px solid #dea52e;
        border-radius: 0 0 4px 4px;
    }
    
    .intro-icon {
        margin: 0 auto;
    }
}

/* --- PREMIUM HERO VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --navy: #0f1115;
    --white: #ffffff;
}

.premium-hero-section {
    position: relative;
    height: 60vh; /* Takes up 60% of the screen height */
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* --- PARALLAX BACKGROUND --- */
.hero-bg-parallax {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* The Parallax Effect */
    z-index: 0;
    transform: scale(1.1); /* Slight zoom for drama */
    filter: saturate(0.8) contrast(1.1); /* Moody cinematic look */
}

/* --- GRADIENT OVERLAY --- */
.hero-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient goes from Navy (top) to Transparent (center) to Black (bottom) */
    background: linear-gradient(180deg, 
        rgba(15, 17, 21, 0.9) 0%, 
        rgba(15, 17, 21, 0.6) 50%, 
        rgba(15, 17, 21, 0.95) 100%
    );
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* --- TYPOGRAPHY --- */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px; /* Offset for balance */
}

.hero-sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    /* font-family: 'Manrope', sans-serif; */
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.highlight-gold-serif {
    color: #dea52e;
    font-style: italic;
}

.gold-separator {
    width: 80px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto 30px;
    border-radius: 2px;
    animation: scaleIn 0.8s ease-out 0.5s backwards;
}

.hero-lead {
    /* font-family: 'Manrope', sans-serif; */
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* --- BREADCRUMB --- */
.premium-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.premium-breadcrumb .breadcrumb-item a:hover {
    color: #dea52e;
}

.premium-breadcrumb .breadcrumb-item.active {
    color: #dea52e;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "•"; /* Custom separator */
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    color: var(--white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #dea52e, transparent);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .premium-hero-section { height: 50vh; min-height: 400px; }
    .hero-title { font-size: 2.8rem; }
    .hero-lead { font-size: 1rem; }
    .hero-sub-tag { letter-spacing: 2px; font-size: 0.75rem; }
}

/* --- PREMIUM ABOUT SECTION --- */
:root {
    --gold: #6A1B4D;
    --navy: #0f1115;
    --white: #ffffff;
    --text-gray: #666;
    --bg-light: #fdfdfd;
}

.about-premium-section {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden;
}

/* --- LEFT SIDE: IMAGE STACK --- */
.about-image-stack {
    position: relative;
    padding: 20px 0 20px 20px; /* Space for the pattern */
    z-index: 1;
}

/* Decorative Dots Pattern */
.pattern-grid {
    position: absolute;
    top: 0; left: 0;
    width: 60%;
    height: 80%;
    background-image: radial-gradient(#e0e0e0 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: -1;
}

/* Main Image Frame */
.image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-stack:hover .image-frame img {
    transform: scale(1.03);
}

/* Floating Gold Badge */
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: #8E2A63;
    color: #dea52e;
    padding: 25px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(15, 17, 21, 0.4);
    text-align: center;
    border: 1px solid #dea52e;
    z-index: 2;
}

.experience-badge .years {
    display: block;
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.4;
}

/* --- RIGHT SIDE: CONTENT --- */
.about-content-premium {
    padding-left: 20px;
}

.sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-content-premium h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3rem;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}

.highlight-navy {
    position: relative;
    color: var(--navy);
    z-index: 1;
}

/* Gold Highlight Underline */
.highlight-navy::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 10px;
    background: rgba(212, 175, 55, 0.15);
    z-index: -1;
}

.separator-left {
    width: 70px;
    height: 3px;
    background: #dea52e;
    margin-bottom: 30px;
}

/* Text Styling */
.lead-text {
    font-size: 1.15rem;
    color: #333;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 20px;
}

.description-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.description-text strong {
    color: var(--navy);
}

/* Features List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
}

.icon-gold {
    color: #dea52e;
    font-size: 1.1rem;
}

/* Button */
.btn-text-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
    border-bottom: 2px solid #dea52e;
    padding-bottom: 5px;
}

.btn-text-premium:hover {
    color: #dea52e;
    gap: 15px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .about-image-stack { margin-bottom: 50px; padding: 0; }
    .pattern-grid { display: none; } /* Simplify on mobile */
    .experience-badge { right: 10px; bottom: -20px; padding: 15px 20px; }
    .about-content-premium { padding-left: 0; }
    .about-content-premium h2 { font-size: 2.5rem; }
}

/* --- PREMIUM DARK STATS --- */
:root {
    --gold: #6A1B4D;
    --navy-dark: #0b0d10;
    --navy-light: #15181e;
    --white: #ffffff;
}

.stats-premium-dark {
    position: relative;
    padding: 80px 0;
    background-color: #8E2A63;
    color: var(--white);
    overflow: hidden;
}

/* Background Pattern */
.stats-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Dashboard Grid */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #95285E;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Individual Entry */
.stat-entry {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

/* Vertical Divider Lines */
.stat-entry:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

/* Icon */
.icon-gold-circle {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dea52e;
    font-size: 1.2rem;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: 0.4s;
}

.stat-entry:hover .icon-gold-circle {
    background: #dea52e;
    color: var(--navy-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Typography */
.number-wrap {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--white);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.gold-plus {
    color: #dea52e;
    font-size: 2rem;
    font-weight: 400;
}

.stat-title {
    /* font-family: 'Manrope', sans-serif; */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-weight: 600;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .stats-dashboard {
        grid-template-columns: 1fr 1fr; /* 2x2 Grid */
        gap: 40px 0;
    }

    .stat-entry:nth-child(2)::after {
        display: none; /* Remove border for the 2nd item on tablet to make grid look clean */
    }
}

@media (max-width: 576px) {
    .stats-dashboard {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 40px;
        padding: 30px 0;
    }
    
    .stat-entry:not(:last-child)::after {
        display: none; /* Remove all dividers on mobile */
    }
    
    .stat-entry {
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 30px;
    }
    
    .stat-entry:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* --- PREMIUM WHY SECTION --- */
:root {
    --gold: #6A1B4D;
    --navy: #0f1115;
    --white: #ffffff;
    --bg-light: #f9f9fb;
    --text-muted: #666;
}

.why-premium-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    position: relative;
}

/* Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-navy {
    position: relative;
    color: var(--navy);
    z-index: 1;
}

.highlight-navy::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background: rgba(212, 175, 55, 0.15);
    z-index: -1;
}

.separator-center {
    width: 60px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto 25px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- GRID LAYOUT --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px;
}

/* --- CARD DESIGN --- */
.why-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

/* Hover: Lift & Shadow */
.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Top Gold Border on Hover */
.why-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 3px;
    background: #dea52e;
    transition: width 0.4s ease;
}

.why-item:hover::before {
    width: 100%;
}

/* Icon Halo */
.icon-halo {
    width: 60px;
    height: 60px;
    background: rgba(15, 17, 21, 0.03); /* Faint Navy */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

/* Icon Hover Effect */
.why-item:hover .icon-halo {
    background: #8E2A63;
    color: #dea52e;
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.15); /* The Halo Ring */
}

/* Text Content */
.why-content h4 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablet */
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
        gap: 20px;
    }
    
    .section-header h2 { font-size: 2.2rem; }
    .why-item { padding: 30px 20px; }
}

/* --- PREMIUM OWNER SECTION --- */
:root {
    --gold: #6A1B4D;
    --navy: #0f1115;
    --white: #ffffff;
    --bg-white: #ffffff;
    --text-gray: #555;
}

.owner-premium-section {
    padding: 60px 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

/* --- LEFT: IMAGE STACK --- */
.owner-image-stack {
    position: relative;
    padding: 20px 0 40px 20px; /* Space for pattern and card */
}

/* Dots Pattern */
.dots-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 60%; height: 80%;
    background-image: radial-gradient(#e0e0e0 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
}

/* Main Image */
.owner-img-box {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.owner-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.owner-image-stack:hover .owner-img-box img {
    transform: scale(1.02);
}

/* Floating Name Card */
.owner-card {
    position: absolute;
    bottom: 0;
    right: -20px;
    background: var(--white);
    padding: 25px 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left: 4px solid #dea52e;
    z-index: 2;
    min-width: 260px;
}

.owner-card h4 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.4rem;
    color: var(--navy);
    margin: 0;
    font-weight: 700;
}

.owner-card .designation {
    font-size: 0.8rem;
    color: #dea52e;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

/* --- RIGHT: CONTENT --- */
.owner-content {
    position: relative;
    padding-left: 30px;
}

/* Sub Tag */
.sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Heading */
.owner-content h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3rem;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 30px;
}

.highlight-navy {
    color: var(--navy);
    position: relative;
    display: inline-block;
}

.highlight-navy::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background: rgba(212, 175, 55, 0.15);
    z-index: -1;
}

/* Background Icon */
.bg-icon {
    position: absolute;
    top: 0; right: 0;
    font-size: 6rem;
    color: rgba(0,0,0,0.03);
    z-index: 0;
}

/* Text Styling */
.message-body {
    position: relative;
    z-index: 1;
}

.lead-text {
    font-size: 1.25rem;
    color: #333;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    /* font-family: 'Playfair Display', serif; */
    border-left: 4px solid #4e1841;
    padding-left: 20px;
}

.secondary-text {
    /* font-family: 'Manrope', sans-serif; */
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Signature Block */
.signature-block {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.script-font {
    font-family: 'Dancing Script', cursive; /* Ensure you load this font or similar */
    font-size: 2rem;
    color: var(--navy);
}

.sig-meta strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}

.sig-meta span {
    font-size: 0.8rem;
    color: #999;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .owner-image-stack { margin-bottom: 50px; padding: 0; }
    .owner-card { right: 0; bottom: -30px; left: 20px; width: auto; min-width: auto; }
    .owner-content { padding-left: 0; }
    .owner-content h2 { font-size: 2.5rem; }
    .dots-pattern { display: none; }
}

/* --- UNIQUE VARIABLES FOR THIS SECTION --- */
:root {
    --ex-gold: #6A1B4D;
    --ex-navy: #0f1115;
    --ex-white: #ffffff;
    --ex-bg: #f8f9fa;
    --ex-text: #555555;
}

.ex-premium-section {
    padding: 60px 0;
    background-color: var(--ex-bg);
    position: relative;
    overflow: hidden;
}

/* --- HEADER STYLES --- */
.ex-premium-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.ex-sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    /* font-family: 'Manrope', sans-serif; */
}

.ex-main-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8rem;
    color: var(--ex-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.ex-highlight {
    color: var(--ex-navy);
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* Gold Underline Effect */
.ex-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(212, 175, 55, 0.15);
    z-index: -1;
}

.ex-separator {
    width: 60px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto;
    border-radius: 2px;
}

/* --- CARD DESIGN (THE FLOATING LEDGER) --- */
.ex-service-card {
    position: relative;
    margin-bottom: 30px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ex-service-card:hover {
    transform: translateY(-10px);
}

/* Image Container */
.ex-img-container {
    position: relative;
    height: 320px;
    width: 100%;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ex-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ex-service-card:hover .ex-img {
    transform: scale(1.08);
}

/* Dark Gradient Overlay */
.ex-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(15, 17, 21, 0.8));
    z-index: 2;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.ex-service-card:hover .ex-overlay {
    opacity: 0.4;
}

/* Corner Icon Box */
.ex-icon-box {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--ex-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: var(--ex-navy);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.ex-service-card:hover .ex-icon-box {
    background: #dea52e;
    color: var(--ex-navy);
    transform: rotate(-45deg); /* Dynamic rotation */
}

/* Content Box (Floating) */
.ex-content-box {
    background: var(--ex-white);
    padding: 20px 30px;
    margin-top: -60px; /* Pulls text box UP over the image */
    margin-left: 30px; /* Indent */
    margin-right: 30px; /* Indent */
    position: relative;
    z-index: 4;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.ex-service-card:hover .ex-content-box {
    border-bottom-color: #dea52e; /* Gold border appears */
    transform: translateY(5px); /* Subtle shift */
}

.ex-card-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.4rem;
    color: var(--ex-navy);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.ex-service-card:hover .ex-card-title {
    color: #dea52e;
}

.ex-gold-line {
    width: 40px;
    height: 2px;
    background: #dea52e;
    margin-bottom: 20px;
    transition: width 0.4s ease;
}

.ex-service-card:hover .ex-gold-line {
    width: 80px; /* Line grows */
}

.ex-card-text {
    /* font-family: 'Manrope', sans-serif; */
    font-size: 0.95rem;
    color: var(--ex-text);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .ex-content-box {
        margin-left: 15px;
        margin-right: 15px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .ex-main-title {
        font-size: 2.2rem;
    }
    
    .ex-img-container {
        height: 250px;
    }
    
    .ex-content-box {
        margin-top: -40px;
    }
}

/* --- PREMIUM SERVICES ARCHIVE --- */
:root {
    --gold: #6A1B4D;
    --navy: #0f1115;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --text-muted: #666;
}

.services-archive-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

/* Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-navy {
    color: var(--navy);
    font-style: italic;
    border-bottom: 3px solid rgba(212, 175, 55, 0.3);
}

.separator-center {
    width: 60px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto 25px;
}

/* --- PREMIUM TABS --- */
.premium-tabs {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0;
}

.premium-tabs .nav-link {
    background: transparent !important;
    border: none;
    color: #999;
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.25rem;
    padding: 15px 30px;
    position: relative;
    transition: all 0.3s;
    border-radius: 0; /* Remove pill shape */
}

.premium-tabs .nav-link:hover {
    color: var(--navy);
}

.premium-tabs .nav-link.active {
    color: var(--navy);
    font-weight: 700;
}

/* The Animated Underline for Tabs */
.premium-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #dea52e;
    transition: width 0.3s ease;
}

.premium-tabs .nav-link.active::after {
    width: 100%;
}

/* --- ARCHIVE CARD --- */
.archive-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 6px;
    overflow: hidden;
    height: 100%; /* Ensures grid height consistency */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

/* Hover: Lift */
.archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Image Area */
.card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.archive-card:hover .card-img img {
    transform: scale(1.1);
}

/* Overlay Icon (Hidden by default, shows on hover) */
.overlay-icon {
    position: absolute;
    inset: 0;
    background: rgba(15, 17, 21, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.overlay-icon i {
    font-size: 2.5rem;
    color: #dea52e;
    transform: scale(0.8);
    transition: 0.3s;
}

.archive-card:hover .overlay-icon {
    opacity: 1;
}

.archive-card:hover .overlay-icon i {
    transform: scale(1);
}

/* Card Body */
.card-body {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body h4 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.gold-divider {
    width: 40px;
    height: 2px;
    background: #dea52e;
    margin-bottom: 20px;
    transition: width 0.3s;
}

.archive-card:hover .gold-divider {
    width: 80px; /* Expands */
}

.card-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.card-body strong {
    color: var(--navy);
    font-weight: 700;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .premium-tabs {
        flex-direction: column;
        border-bottom: none;
        gap: 10px;
    }
    
    .premium-tabs .nav-link {
        border-bottom: 1px solid #e0e0e0;
        text-align: center;
    }
    
    .premium-tabs .nav-link.active::after {
        display: none; /* Remove animated line on mobile, simpler active state */
    }
    
    .premium-tabs .nav-link.active {
        background: rgba(212, 175, 55, 0.1) !important;
        border-radius: 4px;
        color: var(--navy);
    }
}

/* --- PREMIUM BLOG SECTION --- */
:root {
    --gold: #6A1B4D;
    --navy: #0f1115;
    --white: #ffffff;
    --bg-light: #f9f9fb;
    --text-muted: #666;
}

.blog-premium-section {
    padding: 60px 0;
    background-color: var(--white);
}

/* --- HEADER --- */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-navy {
    position: relative;
    color: var(--navy);
    z-index: 1;
}

.highlight-navy::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background: rgba(212, 175, 55, 0.15);
    z-index: -1;
}

.separator-center {
    width: 60px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto 25px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- BLOG CARD --- */
.blog-card-premium {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Image Frame */
.blog-img-frame {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-premium:hover .blog-img-frame img {
    transform: scale(1.08);
}

/* Date Badge (Magazine Style) */
.date-badge {
    position: absolute;
    bottom: 0;
    left: 20px;
    background: #8E2A63;
    color: #dea52e;
    padding: 10px 15px;
    text-align: center;
    border-radius: 4px 4px 0 0; /* Rounded top only */
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.date-badge .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.date-badge .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Area */
.blog-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-tag {
    font-size: 0.75rem;
    color: #dea52e;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card-premium:hover .blog-title {
    color: #dea52e;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes button to bottom */
}

/* Link Button */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.read-more-link i {
    transition: transform 0.3s;
    color: #dea52e;
}

.read-more-link:hover {
    color: #dea52e;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .blog-img-frame { height: 200px; }
    .section-header h2 { font-size: 2.2rem; }
    .blog-content { padding: 25px 20px; }
}
/* --- PREMIUM LOCATIONS SECTION --- */
:root {
    --gold: #6A1B4D;
    --navy: #0f1115;
    --white: #ffffff;
    --bg-gray: #f9f9fb;
    --text-muted: #666;
}

.locations-premium-section {
    padding: 60px 0;
    background-color: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

/* Background Map Pattern */
.map-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Create a subtle grid or dot pattern */
    background-image: radial-gradient(#e0e0e0 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 1;
}

/* Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-navy {
    color: var(--navy);
    border-bottom: 3px solid rgba(212, 175, 55, 0.3);
}

.separator-center {
    width: 60px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto 25px;
}

.section-header p {
    color: var(--text-muted);
}

/* --- LOCATION CARDS --- */
.loc-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 6px;
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Icon */
.loc-icon {
    width: 60px;
    height: 60px;
    background: rgba(15, 17, 21, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.loc-card:hover .loc-icon {
    background: #8E2A63;
    color: #dea52e;
}

/* Content */
.loc-content h4 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.loc-divider {
    width: 40px;
    height: 2px;
    background: #dea52e;
    margin: 0 auto 20px;
    transition: width 0.3s;
}

.loc-card:hover .loc-divider {
    width: 60px;
}

.loc-content p {
    /* font-family: 'Manrope', sans-serif; */
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- THE "CALL NOW" CARD (Unique Style) --- */
.loc-card.call-card {
    background: #8E2A63;
    border: none;
}

.call-card .loc-icon {
    background: rgba(255,255,255,0.1);
    color: #dea52e;
}

.call-card:hover .loc-icon {
    background: #dea52e;
    color: var(--navy);
}

.call-card h4 {
    color: var(--white);
}

.call-card .white-line {
    background: rgba(255,255,255,0.2);
}

.call-card p {
    color: rgba(255,255,255,0.7);
}

.call-link {
    display: block;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    /* font-family: 'Playfair Display', serif; */
    transition: 0.3s;
}

.call-link:hover {
    color: #dea52e;
    transform: scale(1.05);
}

/* Pulse Animation for Phone Icon */
.pulse-gold {
    animation: pulse-gold-anim 2s infinite;
}

@keyframes pulse-gold-anim {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .section-header h2 { font-size: 2.2rem; }
    .call-link { font-size: 1.4rem; }
}


/* --- PREMIUM DOSSIER FORM --- */
:root {
    --gold: #6A1B4D;
    --navy: #0f1115;
    --white: #ffffff;
    --bg-gray: #f2f2f5;
    --text-muted: #666;
}

.contact-dossier-section {
    padding: 60px 0;
    background-color: var(--bg-gray);
}

.dossier-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    min-height: 600px;
}

/* --- SIDEBAR --- */
.dossier-sidebar {
    background-color: #8E2A63;
    position: relative;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    overflow: hidden;
}

/* Background Pattern */
.sidebar-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(30deg, rgba(212, 175, 55, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(212, 175, 55, 0.05) 87.5%, rgba(212, 175, 55, 0.05)),
    linear-gradient(150deg, rgba(212, 175, 55, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(212, 175, 55, 0.05) 87.5%, rgba(212, 175, 55, 0.05));
    background-size: 40px 70px;
    opacity: 0.3;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 1;
}

.sub-tag-gold {
    display: block;
    color: #dea52e;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sidebar-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gold-line-short {
    width: 40px;
    height: 3px;
    background: #dea52e;
    margin-bottom: 20px;
}

.sidebar-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Contact Info Stack */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-gold {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dea52e;
    font-size: 1rem;
}

.info-item small {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item a, .info-item span {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

.info-item a:hover {
    color: #dea52e;
}

.social-links-minimal {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links-minimal a {
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-links-minimal a:hover {
    color: #dea52e;
    transform: translateY(-3px);
}

/* --- FORM AREA --- */
.dossier-form-area {
    padding: 60px 50px;
    background: var(--white);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Line Form Inputs */
.form-group-line {
    position: relative;
    margin-bottom: 10px;
}

.form-group-line input, 
.form-group-line textarea, 
.form-group-line select {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    font-size: 1rem;
    color: var(--navy);
    outline: none;
    transition: 0.3s;
}

/* Floating Label Logic */
.form-group-line label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 0.95rem;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease all;
}

.form-group-line input:focus ~ label,
.form-group-line input:not(:placeholder-shown) ~ label,
.form-group-line textarea:focus ~ label,
.form-group-line textarea:not(:placeholder-shown) ~ label,
.form-group-line select:valid ~ label {
    top: -14px;
    font-size: 0.75rem;
    color: #dea52e;
    font-weight: 700;
}

/* Animated Bottom Border */
.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #dea52e;
    transition: 0.4s;
}

.form-group-line input:focus ~ .focus-border,
.form-group-line textarea:focus ~ .focus-border,
.form-group-line select:focus ~ .focus-border {
    width: 100%;
}

/* Custom Select Arrow */
.select-arrow {
    position: absolute;
    right: 0;
    top: 15px;
    color: #999;
    pointer-events: none;
    font-size: 0.8rem;
}

/* Submit Button */
.btn-submit-premium {
    background: #8E2A63;
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit-premium:hover {
    background: #dea52e;
    color: var(--navy);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .dossier-sidebar { padding: 40px; }
    .dossier-form-area { padding: 40px 30px; }
}

.map-full-color-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Clean borders to separate from other content */
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.map-full-color-section iframe {
    display: block; /* Removes annoying bottom white space */
    width: 100%;
    height: 500px; /* Premium height */
    filter: none; /* ENSURES REAL COLORS */
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .map-full-color-section iframe {
        height: 350px; /* Adjusted height for mobile */
    }
}
/* --- PREMIUM MATRIMONIAL SECTION --- */
:root {
    --gold: #6A1B4D;
    --navy: #0f1115;
    --white: #ffffff;
    --text-muted: #666;
    --bg-soft: #fcfcfc;
}

.matrimonial-premium-section {
    padding: 60px 0;
    background-color: var(--bg-soft);
    overflow: hidden;
}

/* --- TEXT CONTENT --- */
.matrimonial-content {
    padding-right: 20px;
}

.sub-tag-gold {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    /* font-family: 'Manrope', sans-serif; */
}

.display-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 27px;
    color: var(--navy);
    line-height: 35px;
    margin-bottom: 25px;
}

.highlight-navy {
    color: var(--navy);
    position: relative;
    z-index: 1;
}

/* Subtle Underline highlight */
.highlight-navy::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background: rgba(212, 175, 55, 0.15);
    z-index: -1;
}

.gold-separator-left {
    width: 60px;
    height: 3px;
    background: #dea52e;
    margin-bottom: 30px;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.body-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- FEATURE BOX --- */
.feature-box-minimal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 4px solid #dea52e;
    margin-bottom: 40px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(15, 17, 21, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-box-minimal h5 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-box-minimal p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* --- BUTTON --- */
.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 15px 35px;
    border: 1px solid var(--navy);
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background: #8E2A63;
    color: var(--white);
    transform: translateY(-3px);
}

/* --- IMAGE STACK (RIGHT SIDE) --- */
.matrimonial-image-stack {
    position: relative;
    padding: 20px;
}

.pattern-dots {
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 80%;
    background-image: radial-gradient(#e0e0e0 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
}

.main-img-frame {
    position: relative;
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.main-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.matrimonial-image-stack:hover .main-img-frame img {
    transform: scale(1.03);
}

/* Floating Trust Badge */
.trust-badge {
    position: absolute;
    bottom: 40px;
    left: -20px; /* Overlaps left side */
    background: var(--white);
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    border-left: 3px solid #dea52e;
}

.badge-icon {
    color: #dea52e;
    font-size: 1.5rem;
}

.badge-text strong {
    display: block;
    color: var(--navy);
    font-size: 0.9rem;
    line-height: 1;
    margin-bottom: 2px;
}

.badge-text span {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .matrimonial-content { padding-right: 0; padding-bottom: 40px; }
    .display-title { font-size: 2.5rem; }
    .trust-badge { left: 0; bottom: -20px; }
    .pattern-dots { display: none; }
}

/* --- DARK PREMIUM THEME VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --gold-dim: #8a7020;
    --navy-bg: #0b0d10;       /* Deepest Navy/Black */
    --navy-card: #15181e;     /* Slightly Lighter Card BG */
    --white: #ffffff;
    --silver: #b0b3b8;
}

.matrimonial-dark-section {
    padding: 100px 0;
    background-color: var(--navy-bg);
    position: relative;
    overflow: hidden;
}

/* Background Texture */
.dark-pattern-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Subtle geometric grid */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 1;
}

/* --- HEADER --- */
.section-header-dark {
    max-width: 700px;
    margin: 0 auto 60px;
}

.sub-tag-gold {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.display-title-dark {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Gold Gradient Text Effect */
.text-gradient-gold {
    background: linear-gradient(to right, #6A1B4D, #F2D06B, #6A1B4D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.separator-gold {
    width: 80px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto 25px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.text-silver {
    color: var(--silver);
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- DARK SERVICE CARD --- */
.service-card-dark {
    background: #95285E;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 25px 30px;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    gap: 25px;
    position: relative;
    overflow: hidden;
}

/* Hover: Glow & Lift */
.service-card-dark:hover {
    transform: translateY(-8px);
    background: #1a1e26;
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Gold accent line on left */
.service-card-dark::before {
    content: '';
    position: absolute;
    left: 0; top: 0; height: 100%; width: 4px;
    background: #dea52e;
    opacity: 0.5;
    transition: 0.3s;
}

.service-card-dark:hover::before {
    opacity: 1;
    box-shadow: 0 0 15px #dea52e;
}

/* Icon Styling */
.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1); /* Faint gold bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dea52e;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: 0.4s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card-dark:hover .card-icon-wrapper {
    background: #dea52e;
    color: var(--navy-bg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Content */
.card-content h4 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.card-desc {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

/* Premium List */
.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    transition: 0.3s;
}

.premium-list li:hover {
    color: #dea52e;
    transform: translateX(5px);
}

.premium-list li i {
    color: var(--gold-dim);
    font-size: 0.9rem;
    margin-top: 4px;
    transition: 0.3s;
}

.premium-list li:hover i {
    color: #dea52e;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .service-card-dark { flex-direction: column; gap: 20px; }
    .display-title-dark { font-size: 2.5rem; }
}

/* --- PREMIUM LIGHT SECTION VARIABLES --- */
:root {
    --gold: #6A1B4D;
    --navy: #0f1115;
    --white: #ffffff;
    --bg-light: #f9f9fb;
    --text-dark: #333333;
    --text-gray: #666666;
}

.why-premium-light {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle Dot Pattern */
.light-pattern-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#e0e0e0 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.6;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 1;
}

/* --- LEFT CONTENT --- */
.premium-content-light {
    padding-right: 20px;
}

.sub-tag-navy {
    display: block;
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.display-title-navy {
    /* font-family: 'Playfair Display', serif; */
    font-size: 3rem;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 25px;
}

.highlight-gold-text {
    color: #dea52e;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Underline Effect */
.highlight-gold-text::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.navy-line-left {
    width: 60px;
    height: 3px;
    background: #8E2A63;
    margin-bottom: 30px;
}

.lead-text-dark {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.body-text-gray {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Button - Solid Navy to pop on White */
.btn-navy-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: #8E2A63;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(15, 17, 21, 0.15);
}

.btn-navy-solid:hover {
    background: #dea52e;
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* --- RIGHT: LIGHT CARDS --- */
.feature-card-light {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 35px 25px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* Hover: Lift */
.feature-card-light:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

/* Corner Accent (Hidden until hover) */
.card-corner-accent {
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent #dea52e transparent transparent;
    opacity: 0;
    transition: 0.3s;
}

.feature-card-light:hover .card-corner-accent {
    opacity: 1;
}

/* Icon Styling */
.icon-navy-circle {
    width: 60px;
    height: 60px;
    background: rgba(15, 17, 21, 0.05); /* Very light gray/navy tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: 0.4s;
}

.feature-card-light:hover .icon-navy-circle {
    background: #8E2A63;
    color: #dea52e;
    transform: rotateY(180deg); /* 3D flip effect */
}

/* Card Text */
.card-text h5 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--navy);
    font-weight: 700;
}

.card-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.card-text-p p{
    color: white;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .premium-content-light { padding-right: 0; margin-bottom: 40px; }
    .display-title-navy { font-size: 2.5rem; }
}

/* --- PREMIUM TESTIMONIALS --- */
:root {
    --gold: #6A1B4D;
    --navy: #0f1115;
    --white: #ffffff;
    --bg-light: #f9f9fb;
    --text-muted: #666;
}

.testimonials-premium-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

/* Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.sub-tag {
    display: block;
    color: #dea52e;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-navy {
    color: var(--navy);
    position: relative;
    z-index: 1;
}

.highlight-navy::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background: rgba(212, 175, 55, 0.15);
    z-index: -1;
}

.separator-center {
    width: 60px;
    height: 3px;
    background: #dea52e;
    margin: 0 auto 25px;
}

/* --- CARD DESIGN --- */
.testimonial-card-premium {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

/* Watermark Icon */
.quote-watermark {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(15, 17, 21, 0.03); /* Faint Navy */
    z-index: 0;
    font-family: serif;
}

/* Top Row: Stars & Case Type */
.card-content-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 20px;
}

.star-rating {
    color: #dea52e;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.case-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin: 0;
    font-weight: 600;
}

/* Review Text */
.review-text {
    position: relative;
    z-index: 1;
    /* font-family: 'Playfair Display', serif; */
    font-size: 1rem;
    color: var(--navy);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Client Info */
.client-info {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar-placeholder {
    width: 50px;
    height: 50px;
    background: #8E2A63;
    color: #dea52e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    /* font-family: 'Playfair Display', serif; */
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
}

.verified-badge {
    font-size: 0.75rem;
    color: #28a745; /* Green for verified */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .section-header h2 { font-size: 2.2rem; }
    .testimonial-card-premium { padding: 30px 25px; }
    .quote-watermark { font-size: 4rem; top: 10px; right: 20px; }
}

