/* ============================================================
   EASWARI ASSOCIATES — Luxury Design System v3
   "Zurich Private Bank meets South Indian Heritage"
   Pure CSS3 | No Frameworks | World-Class Financial Firm
   ============================================================ */

/* === FONTS — Premium Stack === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* === CSS CUSTOM PROPERTIES === */
:root {
    /* Brand Colors — Deep Navy + Muted Gold + Warm Ivory */
    --primary-dark: #0A1628;
    --primary-mid: #12203A;
    --primary-accent: #1A2D50;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-shimmer: #F5E6B2;
    --gold-glow: rgba(201, 168, 76, 0.12);
    --gold-deep: #B8952E;

    /* Warm Ivory Backgrounds */
    --ivory: #F5F0E8;
    --ivory-mid: #EDE7DB;
    --bg-card: #FFFFFF;
    --bg-alt: #F0EBE0;
    --bg-dark: #0A1628;

    /* Text Colors */
    --text-dark: #0D1B2A;
    --text-body: #2C3E50;
    --text-mid: #5A6C7D;
    --text-light: rgba(245, 240, 232, 0.7);
    --white: #FFFFFF;

    /* Borders & Shadows */
    --border-gold: rgba(201, 168, 76, 0.3);
    --border-subtle: rgba(201, 168, 76, 0.12);
    --glass-bg: rgba(10, 22, 40, 0.92);
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.04);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.07);
    --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.1);
    --shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.15);
    --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.25);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sub: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

    /* Type Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.75rem;
    --text-5xl: 3.75rem;
    --text-hero: clamp(3.5rem, 8vw, 7rem);

    /* Spacing */
    --section-py: clamp(5rem, 10vw, 9rem);
    --section-px: clamp(1.5rem, 6vw, 6rem);
    --gap-sm: 1rem;
    --gap-md: 2rem;
    --gap-lg: 3rem;
    --gap-xl: 5rem;
    --radius: 2px;

    /* Z-index Stack */
    --z-tawk: 999;
    --z-nav: 1000;
    --z-mobile-overlay: 1001;
    --z-mobile-menu: 1002;
    --z-preloader: 9999;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.25s ease;
    --transition-base: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--ivory);
    color: var(--text-body);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--section-px);
}

section {
    padding: var(--section-py) 0;
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* === PRELOADER === */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 40%;
    background: var(--gold);
    border-radius: 2px;
    animation: loaderSlide 1.2s ease infinite;
}

@keyframes loaderSlide {
    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}

/* ============================================================
   NAVBAR — Glassmorphism
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: var(--z-nav);
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Nav Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-logo svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.nav-logo:hover {
    color: var(--gold-light);
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 0;
}

.nav-link {
    position: relative;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: var(--z-mobile-menu);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay & Nav */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.7);
    z-index: var(--z-mobile-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: var(--z-mobile-menu);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--border-gold);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: color 0.3s ease, padding-left 0.3s ease;
    letter-spacing: 0.04em;
}

.mobile-nav a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

/* ============================================================
   HERO SECTION — The First Impression
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A1628 0%, #0F1E3A 40%, #0D1932 70%, #0A1628 100%);
}

/* Radial gold glow */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 65% 45%, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Geometric grid pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Canvas for gold particles */
#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 900px;
}

/* Eyebrow */
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out) 0.3s forwards;
}

/* Title */
.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-hero);
    font-weight: 900;
    color: var(--white);
    line-height: 1.02;
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.9s var(--ease-out) 0.6s forwards;
}

.gold-text {
    color: var(--gold);
    display: block;
}

/* Tagline */
.hero-tagline {
    font-family: var(--font-sub);
    font-style: italic;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out) 0.95s forwards;
}

/* Divider */
.hero-divider {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 2.5rem;
    animation: expandDivider 0.8s var(--ease-out) 1.15s forwards;
}

/* CTA */
.hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s var(--ease-out) 1.35s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite, heroFadeUp 0.6s var(--ease-out) 2s forwards;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    opacity: 0.5;
}

.scroll-indicator.hidden {
    opacity: 0 !important;
}

/* Hero Animations */
@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandDivider {
    to {
        width: 100px;
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================================
   GOLD SHIMMER BUTTON
   ============================================================ */
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #C9A84C 100%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.75rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-gold:active {
    transform: translateY(-1px);
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: var(--ivory);
    padding: 5rem 0;
    border-top: 2px solid var(--border-gold);
    border-bottom: 2px solid var(--border-gold);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-lg);
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 1.5rem 1rem;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-top: 0.25rem;
}

/* ============================================================
   BRAND BANNER — og-image.png Showcase
   ============================================================ */
.brand-banner {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.brand-banner-inner {
    position: relative;
    width: 100%;
    max-height: 380px;
    overflow: hidden;
}

.brand-banner-inner img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.7) contrast(1.1);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.brand-banner:hover .brand-banner-inner img {
    filter: brightness(0.55) contrast(1.15);
    transform: scale(1.02);
}

.brand-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.6), rgba(10, 22, 40, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-banner-text {
    text-align: center;
    padding: 2rem;
}

.brand-banner-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.brand-banner-text p {
    font-family: var(--font-sub);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-sub);
    font-style: italic;
    font-size: var(--text-xl);
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
}

/* Dark section variants */
.cta-section .section-title,
.testimonials-section .section-title {
    color: var(--white);
}

.cta-section .section-subtitle,
.testimonials-section .section-subtitle {
    color: var(--text-light);
}

/* ============================================================
   LEADERSHIP HERITAGE
   ============================================================ */
.leadership-section {
    background: var(--ivory);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-md);
}

.leader-card {
    background: var(--bg-card);
    padding: 2.5rem 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.leader-card:hover::before {
    opacity: 1;
}

.leader-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--ivory), var(--ivory-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-gold);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover .leader-avatar {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

.leader-avatar svg {
    width: 40px;
    height: 40px;
    fill: var(--gold);
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.leader-name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.leader-role {
    font-family: var(--font-sub);
    font-style: italic;
    font-size: var(--text-base);
    color: var(--gold);
    margin-bottom: 1rem;
}

.leader-desc {
    font-size: var(--text-sm);
    color: var(--text-mid);
    line-height: 1.7;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section {
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
    justify-items: center;
}

/* Center the last card if it's alone on its row */
.services-grid .service-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

/* Growing left border on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease, transform 0.3s var(--ease-spring);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    transform: scale(1.05);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: var(--text-sm);
    color: var(--text-mid);
    line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.05), transparent 60%);
    pointer-events: none;
}

.testimonials-section .section-eyebrow {
    border-color: rgba(201, 168, 76, 0.2);
}

.carousel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s var(--ease-out);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial-card {
    text-align: center;
    padding: 3rem 2rem;
}

.testimonial-stars {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-family: var(--font-sub);
    font-style: italic;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.06em;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-visual-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--primary-dark);
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 900;
    padding: 1.25rem 1.75rem;
    line-height: 1;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gold);
}

.about-visual-badge span {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: var(--text-base);
    color: var(--text-body);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-text em {
    color: var(--gold);
    font-family: var(--font-sub);
    font-size: 1.1em;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06), transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-family: var(--font-sub);
    font-style: italic;
    font-size: var(--text-xl);
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--gap-xl);
    align-items: start;
}

/* Contact Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.85rem 0;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
}

.form-label {
    position: absolute;
    top: 0.85rem;
    left: 0;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-mid);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus~.form-label,
.form-group input:not(:placeholder-shown)~.form-label,
.form-group textarea:focus~.form-label,
.form-group textarea:not(:placeholder-shown)~.form-label,
.form-group select:focus~.form-label,
.form-group select.has-value~.form-label {
    top: -1.1rem;
    font-size: var(--text-xs);
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
    font-family: var(--font-body);
}

.form-group.error input,
.form-group.error textarea {
    border-bottom-color: #e74c3c;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.1rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

#form-message {
    display: none;
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    font-size: var(--text-sm);
    border-radius: var(--radius);
}

#form-message.visible {
    display: block;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-item {
    padding: 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    margin-bottom: -1px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
}

.contact-info-item:last-of-type {
    border-radius: 0 0 var(--radius) var(--radius);
}

.contact-info-item:hover {
    border-color: var(--border-gold);
    z-index: 1;
    position: relative;
}

.contact-info-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-info-value {
    font-size: var(--text-base);
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-info-value a {
    transition: color 0.3s ease;
}

.contact-info-value a:hover {
    color: var(--gold);
}

/* Map */
.contact-map {
    margin-top: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.contact-map iframe {
    width: 100%;
    height: 220px;
    border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--primary-dark);
    padding: 4rem 0 0;
    border-top: 2px solid var(--border-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--gap-lg);
    padding-bottom: 3rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-family: var(--font-sub);
    font-style: italic;
    font-size: var(--text-base);
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.footer-address {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-copyright {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.footer-copyright a {
    color: var(--gold);
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--gold-light);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */

/* WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 998;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
    animation: pulseGreen 2s ease infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes pulseGreen {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary-dark);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    transition: stroke 0.3s ease;
}

.back-to-top:hover svg {
    stroke: var(--primary-dark);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    will-change: transform, opacity;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   TAWK.TO OVERRIDES
   ============================================================ */
iframe[title*="chat"],
.tawk-min-container {
    z-index: var(--z-tawk) !important;
    bottom: 24px !important;
    right: 24px !important;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-gold);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-deep);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-desc {
    color: var(--text-body);
    font-size: var(--text-sm);
    line-height: 1.8;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    background: var(--ivory-mid);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 1.75rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--text-body);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ============================================================
   ACCESSIBILITY — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }

    .hero-eyebrow,
    .hero-title,
    .hero-tagline,
    .hero-cta {
        opacity: 1;
        transform: none;
    }

    .hero-divider {
        width: 100px;
    }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--gap-lg);
    }

    .about-visual {
        order: 1;
    }

    .about-text {
        order: 2;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Navbar */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar .container {
        padding: 0 1.25rem;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.8rem, 10vw, 4rem);
    }

    .hero-eyebrow {
        font-size: var(--text-xs);
        letter-spacing: 0.2em;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gap-md);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    /* Leadership */
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 1.25rem 1.5rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--gap-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Brand Banner */
    .brand-banner-inner img {
        height: 250px;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .btn-gold {
        padding: 0.85rem 2rem;
        font-size: var(--text-xs);
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .brand-banner-text h2 {
        font-size: 1.5rem;
    }

    .brand-banner-inner img {
        height: 200px;
    }

    .about-visual-badge {
        font-size: 2rem;
        padding: 1rem 1.25rem;
        right: 0;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        bottom: 80px;
        right: 22px;
    }
}

/* ============================================================
   WIDE SCREEN ( ≥ 1400px)
   ============================================================ */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}