/* ═══════════════════════════════════════════
   SELF-HOSTED FONTS
   ═══════════════════════════════════════════ */
@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('/assets/fonts/sora-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('/assets/fonts/cormorant-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 300 400;
    font-display: swap;
    src: url('/assets/fonts/cormorant-400i-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
    --navy-deep: #080e1a;
    --navy: #0c1425;
    --navy-light: #131d33;
    --navy-mid: #1a2744;
    --gold: #c4a265;
    --gold-light: #d4b87a;
    --gold-pale: #e8d5a8;
    --gold-glow: rgba(196, 162, 101, 0.15);
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --white: #fefbf0;
    --text-dark: #0c1425;
    --text-body: #3a3f4b;
    --text-muted: #6b7080;
    --text-on-dark: #c8cdd8;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Sora', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}
/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ═══════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gold-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s var(--ease-out-quart);
}

.nav.scrolled {
    background: rgba(8, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 rgba(196, 162, 101, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.nav-logo-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-logo-title {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-on-dark);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
    color: var(--gold-light);
}

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

.nav-cta {
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
    color: var(--gold) !important;
    border: 1px solid rgba(196, 162, 101, 0.4);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--navy-deep) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Language toggle */
.lang-toggle {
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
    color: var(--gold) !important;
    border: 1px solid rgba(196, 162, 101, 0.3);
    padding: 0.4rem 0.8rem;
    transition: all 0.3s ease !important;
}

.lang-toggle:hover {
    background: rgba(196, 162, 101, 0.1);
}

.lang-toggle::after {
    display: none !important;
}

/* Nav CTA button (renamed from nav-cta to btn-nav for the new template) */
.btn-nav {
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
    color: var(--gold) !important;
    border: 1px solid rgba(196, 162, 101, 0.4);
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease !important;
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--navy-deep) !important;
}

.btn-nav::after {
    display: none !important;
}
/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--navy-deep) url('/assets/img/hero-bg.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to right, rgba(8, 14, 26, 0.85) 0%, rgba(8, 14, 26, 0.5) 60%, rgba(8, 14, 26, 0.3) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(196, 162, 101, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 162, 101, 0.03) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Subtle grid pattern */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(196, 162, 101, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 162, 101, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 5rem;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-eyebrow .gold-rule {
    width: 40px;
}

.hero-eyebrow span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-heading {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-heading .line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: heroFadeUp 1.2s var(--ease-out-expo) forwards;
}

.hero-heading .line:nth-child(1) { animation-delay: 0.5s; }
.hero-heading .line:nth-child(2) { animation-delay: 0.65s; }
.hero-heading .line:nth-child(3) { animation-delay: 0.8s; }

.hero-heading em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-on-dark);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s var(--ease-out-expo) 1s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s var(--ease-out-expo) 1.15s forwards;
}

/* Hero decorative side element */
.hero-deco {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.hero-deco-circle {
    width: 500px;
    height: 500px;
    border: 1px solid rgba(196, 162, 101, 0.08);
    border-radius: 50%;
    position: relative;
    opacity: 0;
    animation: heroScale 1.5s var(--ease-out-expo) 0.5s forwards;
}

.hero-deco-circle::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(196, 162, 101, 0.06);
    border-radius: 50%;
}

.hero-deco-circle::after {
    content: '';
    position: absolute;
    inset: 80px;
    border: 1px solid rgba(196, 162, 101, 0.04);
    border-radius: 50%;
}

.hero-stats {
    position: relative;
    z-index: 2;
    background: rgba(8, 14, 26, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(196, 162, 101, 0.15);
}

.hero-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    gap: 4rem;
    opacity: 0;
    animation: heroFadeUp 1s var(--ease-out-expo) 1.4s forwards;
}

.hero-stat {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-on-dark);
    opacity: 0.85;
}

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

@keyframes heroScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
    from {
        transform: scale(0.8);
    }
}
/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about {
    padding: 8rem 0;
    background: var(--cream-light);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-left {
    position: sticky;
    top: 120px;
}

.about-photo {
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--cream);
    object-fit: cover;
}

.about-label {
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-intro {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.about-credentials {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(196, 162, 101, 0.2);
}

.credential {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.credential-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.credential-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Timeline */
.about-timeline {
    padding-top: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(196, 162, 101, 0.12);
    position: relative;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
}

.timeline-content h3,
.timeline-content h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.timeline-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}
/* ═══════════════════════════════════════════
   PATHWAYS SECTION
   ═══════════════════════════════════════════ */
.pathways {
    padding: 6rem 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.pathways::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(196, 162, 101, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.pathways-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.pathways-header .section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.pathways-header p {
    font-size: 0.95rem;
    color: var(--text-on-dark);
    max-width: 500px;
    margin: 0 auto;
    opacity: 0.7;
}

.pathways-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pathway-card {
    position: relative;
    border: 1px solid rgba(196, 162, 101, 0.2);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    text-decoration: none;
    background: rgba(12, 20, 37, 0.6);
    backdrop-filter: blur(10px);
}

.pathway-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(196, 162, 101, 0.15);
}

.pathway-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 162, 101, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pathway-card:hover::before {
    opacity: 1;
}

.pathway-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pathway-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.pathway-card .pathway-badge {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy-deep);
    background: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.pathway-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.pathway-card p {
    font-size: 0.85rem;
    color: var(--text-on-dark);
    line-height: 1.7;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.pathway-card .pathway-cta {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.pathway-card .pathway-cta svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.pathway-card:hover .pathway-cta svg {
    transform: translateX(4px);
}

.pathway-card.pathway-external .pathway-badge {
    background: var(--cream);
    color: var(--navy-deep);
}

@media (max-width: 768px) {
    .pathways-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pathway-card {
        padding: 2.5rem 2rem;
    }
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════ */
.services {
    padding: 8rem 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(196, 162, 101, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.services-header .section-label {
    margin-bottom: 1.5rem;
    display: block;
}

.services-header .section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.services-header p {
    font-size: 0.95rem;
    color: var(--text-on-dark);
    max-width: 550px;
    margin: 0 auto;
    opacity: 0.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(196, 162, 101, 0.1);
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--navy);
    padding: 2.5rem 2rem;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--navy-light);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.2;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.82rem;
    color: var(--text-on-dark);
    opacity: 0.6;
    line-height: 1.7;
}
/* ═══════════════════════════════════════════
   AWARDS SECTION
   ═══════════════════════════════════════════ */
.awards {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.awards-left .section-label {
    margin-bottom: 1.5rem;
}

.awards-left .section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.awards-left p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.85;
}

.award-highlight {
    background: var(--navy-deep);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.award-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(196, 162, 101, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.award-year {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.award-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.award-desc {
    font-size: 0.85rem;
    color: var(--text-on-dark);
    opacity: 0.6;
    line-height: 1.7;
}

.award-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
}

.award-badge svg {
    width: 100%;
    height: 100%;
    fill: var(--gold);
    opacity: 0.2;
}

/* Memberships */
.memberships {
    margin-top: 4rem;
}

.memberships h3 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.memberships-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.membership-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-body);
}

.membership-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */
.contact {
    padding: 8rem 0 0;
    background: var(--cream-light);
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-header .section-label {
    margin-bottom: 1.5rem;
    display: block;
}

.contact-header .section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-info {
    padding: 4rem;
    background: var(--navy-deep);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.contact-item-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-item-value {
    font-size: 0.95rem;
    color: var(--text-on-dark);
    line-height: 1.7;
}

.contact-item-value a {
    transition: color 0.3s ease;
}

.contact-item-value a:hover {
    color: var(--gold-light);
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(196, 162, 101, 0.15);
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(196, 162, 101, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: var(--navy-deep);
}

.contact-map {
    min-height: 450px;
    position: relative;
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.3) contrast(1.1);
    transition: filter 0.5s ease;
}

.contact-map:hover iframe {
    filter: saturate(0.6) contrast(1.05);
}
/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy-deep);
    background: var(--gold);
    padding: 1rem 2.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 162, 101, 0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(8, 14, 26, 0.7);
    padding: 1.1rem 2rem;
    border: 1px solid var(--gold);
    border-radius: 4px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    color: var(--gold-light);
}

.btn-outline svg {
    transition: transform 0.3s ease;
}

.btn-outline:hover svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    padding: 3rem 0;
    background: var(--navy-deep);
    border-top: 1px solid rgba(196, 162, 101, 0.08);
}

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

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-on-dark);
    opacity: 0.4;
}

.footer-note {
    font-size: 0.7rem;
    color: var(--text-on-dark);
    opacity: 0.3;
    font-style: italic;
}

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

.footer-content p {
    font-size: 0.75rem;
    color: var(--text-on-dark);
    opacity: 0.65;
}

.footer-credentials {
    font-size: 0.7rem;
    color: var(--text-on-dark);
    opacity: 0.55;
    font-style: italic;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55); }
}
/* Blog listing */
.blog-listing {
    padding: 8rem 0;
    background: var(--cream-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid rgba(196, 162, 101, 0.1);
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-category {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Blog post */
.blog-post {
    padding-top: 6rem;
}

.post-header {
    padding: 4rem 0 3rem;
    background: var(--cream-light);
}

.post-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gold-light);
}

.blog-back {
    color: var(--text-muted) !important;
}

.blog-back:hover {
    color: var(--gold) !important;
}

.post-content {
    padding: 4rem 0;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.post-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem;
}

.post-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 2rem 0 0.8rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.85;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.post-footer {
    padding: 4rem 0;
    background: var(--cream-light);
}

/* Service page extras */
.service-hero {
    padding: 8rem 0 4rem;
    background: var(--navy-deep);
    color: var(--white);
}

.service-hero .section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--white);
    margin: 1rem 0;
}

.service-hero p {
    font-size: 1rem;
    color: var(--text-on-dark);
    max-width: 600px;
    opacity: 0.8;
}

.service-content {
    padding: 4rem 0 6rem;
}

.service-details {
    max-width: 800px;
    margin: 0 auto;
}

.service-meta {
    display: flex;
    gap: 3rem;
    padding: 2rem;
    background: var(--cream-light);
    margin-bottom: 3rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.meta-item strong {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.meta-item span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
}

.service-body {
    line-height: 1.85;
}

.service-body h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem;
}

.service-body p {
    margin-bottom: 1.5rem;
}

.service-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-body li {
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(196, 162, 101, 0.15);
}

.faq-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(196, 162, 101, 0.12);
    padding: 1.5rem 0;
}

.faq-item summary {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--navy-deep);
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* Condition page */
.condition-hero {
    padding: 8rem 0 4rem;
    background: var(--cream-light);
}

.condition-hero .section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--text-dark);
    margin: 1rem 0;
}

.condition-content {
    padding: 4rem 0 6rem;
}

.condition-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.85;
}

.condition-body h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem;
}

.condition-body p {
    margin-bottom: 1.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(196, 162, 101, 0.3);
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--gold);
    color: var(--navy-deep);
}
/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-deco {
        display: none;
    }

    .about-grid,
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-left {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-content {
        padding: 7rem 1.5rem 6rem;
    }

    .hero-stats-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        margin-top: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 2.5rem 1.5rem;
    }

    .about-credentials {
        flex-direction: column;
        gap: 1.5rem;
    }

    .memberships-list {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .award-highlight {
        padding: 2.5rem 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .service-meta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero-heading {
        font-size: 2.4rem;
    }

    .about, .services, .awards {
        padding: 5rem 0;
    }
}
