* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0F3A5F;
    --navy-light: #1B5E8F;
    --gold: #D4A574;
    --gold-light: #E5C9A8;
    --dark-bg: #0A1E2E;
    --light-bg: #F5F3F0;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --accent: #2E7D9A;
    --cream: #F5F3F0;
    --navy-dark: #0A1E2E;
    --gold-bright: #E5C9A8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--light-bg);
    overflow-x: hidden;
}

/* ═════════════════════════════════════════════════════════ */
/* HEADER & NAVIGATION */
/* ═════════════════════════════════════════════════════════ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--gold);
    padding: 16px 30px;
    box-shadow: 0 2px 15px rgba(15, 58, 95, 0.08);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--navy), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 35px;
    flex: 1;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.3s ease;
}

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

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--text-light);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 58, 95, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(15, 58, 95, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #0F3A5F;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 58, 95, 0.98);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 10px;
    transition: background 0.2s ease;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: #E5C9A8; }
.mobile-menu .menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 34px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {
    nav {
        gap: 15px;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
    .logo {
        font-size: 22px;
    }
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(15, 58, 95, 0.9);
    color: #E5C9A8;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 98;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); background: #0F3A5F; }
@media (max-width: 640px) {
    .back-to-top { bottom: 85px; right: 22px; width: 44px; height: 44px; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═════════════════════════════════════════════════════════ */
/* HERO SECTION */
/* ═════════════════════════════════════════════════════════ */
.hero {
    background: linear-gradient(135deg, #0F3A5F 0%, #1B5E8F 25%, #2E7D9A 50%, #D4A574 75%, #E5C9A8 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    position: relative;
    overflow: hidden;
    padding: 80px 30px;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0,0,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
    align-self: center;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.15;
    text-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.hero .title-accent {
    display: inline-block;
    color: var(--gold-light);
    font-style: italic;
}

.hero .subtitle {
    font-size: 22px;
    color: var(--gold-light);
    margin-bottom: 6px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.hero .subtitle-secondary {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
}

.credentials-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 32px;
    display: inline-block;
}

.credentials-badge p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    margin: 4px 0;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--text-light);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.btn-whatsapp, .btn-call {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}
.btn-whatsapp .btn-ico,
.btn-call .btn-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* Primary CTA — prominent gold gradient */
.btn-whatsapp {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    border: none;
    box-shadow: 0 10px 30px rgba(212,165,116,0.45);
    position: relative;
}
.btn-whatsapp .btn-ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(212,165,116,0.6);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
/* Secondary CTA — elegant gold outline */
.btn-call {
    background: rgba(255,255,255,0.06);
    color: var(--gold-light);
    border: 2px solid var(--gold);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn-call .btn-ico { color: var(--gold-light); }
.btn-call:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,165,116,0.4);
}
.btn-call:hover .btn-ico { color: var(--navy); }

.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease-out;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    align-self: center;
    margin: 0;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 58, 95, 0.2), rgba(212, 165, 116, 0.1));
    pointer-events: none;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero-image {
        height: 400px;
    }
}

/* ═════════════════════════════════════════════════════════ */
/* CREDENTIALS BANNER */
/* ═════════════════════════════════════════════════════════ */
.credentials-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 60px 30px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.credentials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.credentials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cred-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}
.cred-tagline {
    font-size: 17px;
    font-style: italic;
    color: var(--gold-light);
    margin-top: -14px;
    margin-bottom: 28px;
    font-weight: 400;
}
.cred-intro {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,0.86);
    max-width: 760px;
    margin: 0 0 32px;
    font-weight: 400;
}
.cred-intro strong { color: var(--gold-light); font-weight: 600; }
.cred-feature-tagline {
    position: relative;
    max-width: 900px;
    margin: 56px auto 0;
    padding: 36px 40px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,165,116,0.35);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
}
.cred-feature-tagline::before,
.cred-feature-tagline::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cred-feature-tagline::before { top: 0; }
.cred-feature-tagline::after { bottom: 0; }
.cred-feature-quote {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 0.5;
    color: var(--gold);
    opacity: 0.55;
    margin-bottom: 10px;
}
.cred-feature-tagline p {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}
.cred-feature-tagline p .gold { color: var(--gold); }
@media (max-width: 768px) {
    .cred-feature-tagline {
        margin-top: 40px;
        padding: 28px 22px;
    }
    .cred-feature-tagline p { font-size: 19px; }
}

.cred-title .gold {
    color: var(--gold-light);
}

.cred-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

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

.cred-label {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.cred-value {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.cred-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.stat-box {
    position: relative;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(212, 165, 116, 0.4);
    padding: 26px 18px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(.2,.7,.3,1), border-color 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 170px;
    overflow: hidden;
}
.stat-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,165,116,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.stat-box:hover::before { opacity: 1; }
.stat-icon {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-box:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold-light);
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.32);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
    line-height: 1.15;
}
.stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
}

@media (max-width: 968px) {
    .credentials-container {
        grid-template-columns: 1fr;
    }
    .cred-title {
        font-size: 32px;
    }
}

/* ═════════════════════════════════════════════════════════ */
/* LEADERSHIP & PROFESSIONAL ASSOCIATIONS */
/* ═════════════════════════════════════════════════════════ */
.leadership-section {
    position: relative;
    padding: 90px 30px;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
    color: var(--text-light);
    overflow: hidden;
}
.leadership-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(212,165,116,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.leadership-section::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212,165,116,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.leadership-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.leadership-eyebrow {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.leadership-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.2;
}
.leadership-title .gold { color: var(--gold); }
.leadership-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}
.leadership-divider {
    width: 90px;
    height: 3px;
    margin: 0 auto 55px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}
.leadership-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 64px;
}
.lead-stat {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 28px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,165,116,0.25);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lead-stat:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}
.lead-stat-icon {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 12px;
}
.lead-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.lead-stat-num-text {
    font-size: 24px;
    line-height: 1.2;
}
.lead-stat-label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    font-family: 'Montserrat', sans-serif;
}
.leadership-timeline {
    position: relative;
}
.leadership-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(212,165,116,0.5), rgba(212,165,116,0.5), transparent);
    transform: translateX(-50%);
}
.lead-card {
    position: relative;
    width: calc(50% - 50px);
    margin-bottom: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,165,116,0.22);
    border-radius: 18px;
    padding: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.25);
    transition: transform 0.45s cubic-bezier(.2,.7,.3,1), box-shadow 0.45s ease, border-color 0.45s ease;
    overflow: hidden;
}
.lead-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,165,116,0.10), transparent 60%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}
.lead-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 26px 70px rgba(0,0,0,0.4);
}
.lead-card:hover::before { opacity: 1; }
.lead-card:nth-child(odd) { margin-left: 0; }
.lead-card:nth-child(even) {
    margin-left: calc(50% + 50px);
    margin-top: -10px;
}
.lead-card::after {
    content: '';
    position: absolute;
    top: 38px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border: 4px solid var(--navy);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212,165,116,0.25);
    z-index: 3;
}
.lead-card:nth-child(odd)::after { right: -59px; }
.lead-card:nth-child(even)::after { left: -59px; }
.lead-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.lead-logo {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(212,165,116,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.lead-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}
.lead-role {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.25;
    margin-bottom: 3px;
}
.lead-org {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
}
.lead-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
}
@media (max-width: 860px) {
    .leadership-title { font-size: 34px; }
    .leadership-timeline::before { left: 22px; }
    .lead-card,
    .lead-card:nth-child(odd),
    .lead-card:nth-child(even) {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    .lead-card:nth-child(odd)::after,
    .lead-card:nth-child(even)::after {
        left: -50px;
        right: auto;
    }
    .leadership-timeline { padding-left: 8px; }
}
@media (max-width: 480px) {
    .leadership-timeline::before,
    .lead-card::after { display: none; }
    .lead-card { padding: 24px; }
}

/* ═════════════════════════════════════════════════════════ */
/* SERVICES SECTION */
/* ═════════════════════════════════════════════════════════ */
.services-section {
    padding: 80px 30px;
    background: var(--light-bg);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy);
}

.section-title .gold {
    color: var(--gold);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--text-light);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--navy);
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ═════════════════════════════════════════════════════════ */
/* CLINICS SECTION */
/* ═════════════════════════════════════════════════════════ */
.clinics-section {
    padding: 80px 30px;
    background: var(--text-light);
}

.clinics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.clinic-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.clinic-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(15, 58, 95, 0.15);
}

.clinic-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--accent) 100%);
    padding: 30px;
    text-align: center;
}
.clinic-icon {
    font-size: 48px;
    filter: grayscale(0.2);
}

.clinic-info {
    background: var(--text-light);
    padding: 35px 30px;
}

.clinic-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.clinic-location {
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.clinic-info p {
    color: #555;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.clinic-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
}

.clinic-detail-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.clinic-detail-item strong {
    color: var(--navy);
    min-width: 80px;
}

@media (max-width: 968px) {
    .clinics-grid {
        grid-template-columns: 1fr;
    }
}


/* ═════════════════════════════════════════════════════════ */
/* TESTIMONIALS SECTION */
/* ═════════════════════════════════════════════════════════ */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    overflow: hidden;
}
.reviews-subtitle {
    text-align: center;
    max-width: 640px;
    margin: 14px auto 0;
    color: #5a6b78;
    font-size: 16px;
    line-height: 1.6;
}
/* Rating summary */
.rating-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(15,58,95,0.10);
    border-radius: 50px;
    padding: 12px 22px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(15,58,95,0.06);
}
.rating-pill .rating-score { color: #f5a623; font-weight: 800; }
.rating-pill .rating-sep { color: rgba(15,58,95,0.25); margin: 0 2px; }
/* Trust badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 30px auto 0;
    max-width: 920px;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    background: linear-gradient(160deg, var(--navy) 0%, var(--dark-bg) 100%);
    border: 1px solid rgba(212,165,116,0.28);
    border-radius: 14px;
    padding: 20px 14px;
    color: #fff;
}
.trust-badge .tb-icon { font-size: 26px; line-height: 1; }
.trust-badge .tb-value { font-weight: 800; font-size: 16px; color: var(--gold-light); }
.trust-badge .tb-label { font-size: 12.5px; color: rgba(255,255,255,0.72); }
/* Tabs */
.review-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 44px auto 0;
}
.review-tab {
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    border: 1px solid rgba(15,58,95,0.15);
    border-radius: 50px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all .25s ease;
}
.review-tab:hover { border-color: var(--gold); }
.review-tab.active {
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(15,58,95,0.22);
}
/* Carousel */
.review-carousel {
    position: relative;
    max-width: 1180px;
    margin: 34px auto 0;
    padding: 0 8px;
}
.carousel-viewport { overflow: hidden; }
.carousel-track {
    display: flex;
    --cpv: 3;
    transition: transform .55s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}
.review-card {
    flex: 0 0 calc(100% / var(--cpv));
    box-sizing: border-box;
    padding: 6px 12px 8px;
}
.review-card-inner {
    background: #fff;
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(15,58,95,0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: reviewFade .5s ease both;
}
.review-quote-icon {
    position: absolute; top: 16px; right: 20px;
    font-size: 40px; line-height: 1;
    color: rgba(212,165,116,0.22);
    font-family: Georgia, serif;
}
.review-stars { color: #f5a623; font-size: 17px; letter-spacing: 1px; margin-bottom: 12px; }
.review-text {
    color: #444; font-size: 15px; line-height: 1.7;
    margin-bottom: 20px; font-style: italic; flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 17px; flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.review-source { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #888; margin-top: 2px; }
.review-source svg { width: 13px; height: 13px; }
.review-date { color: #9aa6ad; font-weight: 400; }
.review-note-tr { font-size: 11.5px; color: #9aa6ad; margin: -10px 0 16px; line-height: 1.4; }
/* Arrows */
.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid rgba(15,58,95,0.12);
    background: #fff; color: var(--navy);
    font-size: 24px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(15,58,95,0.12);
    transition: all .25s ease; z-index: 3;
}
.carousel-arrow:hover { background: var(--navy); color: var(--gold-light); }
.carousel-arrow.prev { left: -6px; }
.carousel-arrow.next { right: -6px; }
.carousel-arrow:disabled { opacity: .35; cursor: default; box-shadow: none; }
/* Dots */
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dot {
    width: 9px; height: 9px; border-radius: 50%; padding: 0;
    border: none; cursor: pointer;
    background: rgba(15,58,95,0.18); transition: all .25s ease;
}
.carousel-dot.active { background: var(--gold); width: 26px; border-radius: 50px; }
/* CTA + note */
.reviews-cta { text-align: center; margin-top: 38px; }
.reviews-btn {
    display: inline-flex; align-items: center; gap: 9px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy); font-weight: 700; font-size: 15px;
    padding: 14px 30px; border-radius: 50px;
    transition: all .3s ease;
    box-shadow: 0 6px 20px rgba(212,165,116,0.30);
}
.reviews-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,165,116,0.42); }
.reviews-btn svg { width: 18px; height: 18px; }
.reviews-note {
    text-align: center; max-width: 620px; margin: 18px auto 0;
    font-size: 12.5px; color: #8a97a1; line-height: 1.6; font-style: italic;
}
@keyframes reviewFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (max-width: 1024px) {
    .trust-badges { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
}
@media (max-width: 768px) {
    .testimonials-section { padding: 50px 15px; }
    .carousel-arrow.prev { left: 0; }
    .carousel-arrow.next { right: 0; }
    .review-card { padding: 6px 6px 8px; }
    .review-tab { font-size: 13px; padding: 11px 18px; }
}
@media (prefers-reduced-motion: reduce) {
    .carousel-track { transition: none; }
    .review-card-inner { animation: none; }
}
/* ═════════════════════════════════════════════════════════ */
/* HEALTH TIPS SECTION */
/* ═════════════════════════════════════════════════════════ */
.health-tips-section {
    padding: 80px 30px;
    background: var(--light-bg);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tip-card {
    background: var(--text-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(15, 58, 95, 0.12);
}

.tip-image {
    height: 220px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255,255,255,0.2);
    overflow: hidden;
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tip-content {
    padding: 25px;
}

.tip-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tip-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tip-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.tip-read-more {
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tip-read-more:hover {
    gap: 8px;
}

@media (max-width: 968px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* ═════════════════════════════════════════════════════════ */
/* FAQ SECTION */
/* ═════════════════════════════════════════════════════════ */
.faq-section {
    padding: 80px 30px;
    background: var(--text-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
}

.faq-question {
    padding: 24px 30px;
    background: var(--light-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--navy);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(15, 58, 95, 0.03), rgba(212, 165, 116, 0.03));
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--gold);
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #555;
    line-height: 1.8;
    font-weight: 400;
}

.faq-item.active .faq-answer {
    padding: 20px 30px 30px;
    max-height: 500px;
}

/* ═════════════════════════════════════════════════════════ */
/* GALLERY SECTION */
/* ═════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════ */
/* GALLERY — CATEGORY SHOWCASE                                    */
/* ═══════════════════════════════════════════════════════════════ */
.gallery-section {
    padding: 80px 30px 100px;
    background: var(--light-bg);
}
.gallery-eyebrow {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.gallery-intro {
    max-width: 860px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.75;
    color: #555;
}
.gallery-divider {
    width: 80px;
    height: 3px;
    margin: 28px auto 56px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

/* Category block */
.gal-category { margin-bottom: 64px; }
.gal-category:last-child { margin-bottom: 0; }

.gal-cat-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(212,165,116,0.3);
}
.gal-cat-emoji {
    font-size: 34px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.gal-cat-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px;
}
.gal-cat-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Photo grid */
.gal-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

/* Each photo card */
.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    background: #e8e3dc;
    cursor: pointer;
    transition: transform 0.38s cubic-bezier(.2,.7,.3,1), box-shadow 0.38s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    position: relative;
    aspect-ratio: 4/3;
    width: 100%;
    margin: 0;
    align-self: stretch;
}
.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.42s ease;
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,58,95,0.20);
}
.gallery-item:hover img { transform: scale(1.06); }

/* Caption overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(10,30,46,0.88));
    padding: 28px 14px 14px;
    transform: translateY(100%);
    transition: transform 0.32s ease;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay span {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1.4;
}

/* Gold accent bar on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.32s ease;
    transform-origin: left;
}
.gallery-item:hover::after { transform: scaleX(1); }

/* Mobile "View All Photos" toggle button (hidden on desktop) */
.gal-view-toggle {
    display: none;
    width: 100%;
    margin: 18px auto 0;
    padding: 13px 22px;
    border: none;
    border-radius: 10px;
    background: var(--gold);
    color: #0a1e2e;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(15,58,95,0.18);
    transition: background 0.25s ease, transform 0.2s ease;
}
.gal-view-toggle:active { transform: scale(0.98); }

/* Items that get collapsed on mobile animate their reveal */
.gallery-item.gal-extra {
    animation: galFadeIn 0.4s ease both;
}
@keyframes galFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .gal-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gal-cat-title { font-size: 21px; }

    /* Show the toggle button only on mobile, and only when JS has flagged the section */
    .gal-category.gal-has-extra .gal-view-toggle { display: block; }

    /* Hide the 5th+ images when the section is collapsed */
    .gal-category.gal-collapsed .gallery-item.gal-extra { display: none; }
}
@media (max-width: 480px) {
    .gal-cat-grid { grid-template-columns: 1fr; }
}

/* ═════════════════════════════════════════════════════════ */
/* MODAL & LIGHTBOX STYLES */
/* ═════════════════════════════════════════════════════════ */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.gallery-modal.show {
    display: block;
}

.modal-content {
    background-color: var(--cream);
    margin: 40px auto;
    padding: 40px;
    border-radius: 15px;
    max-width: 1400px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--navy-dark);
    margin: 0;
}

.close-modal {
    color: var(--navy-dark);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.modal-gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.modal-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-gallery-item:hover img {
    transform: scale(1.08);
}

.modal-gallery-item:hover {
    box-shadow: 0 12px 30px rgba(15, 58, 95, 0.3);
}

/* LIGHTBOX STYLES */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-slide {
    display: none;
    text-align: center;
}

.lightbox-slide img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    pointer-events: none;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    border: none;
    font-size: 40px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-light);
    font-size: 40px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1002;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.lightbox-counter {
    color: var(--text-light);
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .modal-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modal-gallery-grid {
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 20px;
    }
}

/* ═════════════════════════════════════════════════════════ */
/* CONTACT SECTION */
/* ═════════════════════════════════════════════════════════ */
.contact-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: left;
    transition: all 0.3s ease;
}
.contact-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.contact-card-icon {
    font-size: 36px;
    margin-bottom: 15px;
}
.contact-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
}
.contact-card-location {
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}
.contact-card p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}
.contact-card-hours {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.8;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}
.contact-action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 60px;
    padding: 16px 35px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
}
.contact-action-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.contact-action-btn .action-icon {
    font-size: 28px;
}
.contact-action-btn .action-label {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: block;
}
.contact-action-btn .action-detail {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    display: block;
}
.contact-action-btn.whatsapp-btn {
    border-color: rgba(37,211,102,0.4);
}
.contact-action-btn.whatsapp-btn:hover {
    background: rgba(37,211,102,0.15);
}

.contact-social-row {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-cards-grid { grid-template-columns: 1fr; }
    .contact-actions { flex-direction: column; align-items: center; }
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--gold-light);
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-label {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.contact-info-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.contact-info-text a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--text-light);
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* ═════════════════════════════════════════════════════════ */
/* FOOTER */
/* ═════════════════════════════════════════════════════════ */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 50px 30px 25px;
    border-top: 2px solid var(--gold);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.footer-section a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.footer-seo {
    max-width: 1100px;
    margin: 0 auto;
    padding: 22px 0 0;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}
.footer-seo p {
    font-size: 12.5px;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    text-align: center;
    margin: 0 auto;
    max-width: 980px;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding-top: 25px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ═════════════════════════════════════════════════════════ */
/* FLOATING WHATSAPP */
/* ═════════════════════════════════════════════════════════ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20BA5C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 99;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@media (max-width: 640px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

/* Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: fixed;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 10001;
    background: rgba(255,255,255,0.15);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
    border: none;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-caption {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    background: rgba(15,58,95,0.7);
    padding: 8px 24px;
    border-radius: 30px;
    z-index: 10001;
}
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    background: rgba(255,255,255,0.1);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: none;
    transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
/* HEALTH TIP MODALS */
.tip-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    overflow-y: auto;
    padding: 30px 15px;
    backdrop-filter: blur(4px);
}
.tip-modal-overlay.active { display: flex; justify-content: center; align-items: flex-start; }
.tip-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    margin: 30px auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: tipModalIn 0.3s ease;
}
@keyframes tipModalIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.tip-modal-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 30px 35px;
    color: #fff;
    position: relative;
}
.tip-modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 5px;
}
.tip-modal-header .tip-modal-cat {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tip-modal-close {
    position: absolute;
    top: 15px; right: 20px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.tip-modal-close:hover { background: rgba(255,255,255,0.3); }
.tip-modal-body {
    padding: 35px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    font-size: 15px;
}
.tip-modal-body h3 {
    color: var(--navy);
    font-size: 20px;
    margin: 25px 0 12px;
    font-family: 'Cormorant Garamond', serif;
    border-left: 4px solid var(--gold);
    padding-left: 12px;
}
.tip-modal-body h3:first-child { margin-top: 0; }
.tip-modal-body ul {
    margin: 10px 0 15px 20px;
}
.tip-modal-body ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 8px;
}
.tip-modal-body .tip-highlight {
    background: linear-gradient(135deg, rgba(15,58,95,0.05), rgba(46,125,154,0.08));
    border-radius: 12px;
    padding: 20px 25px;
    margin: 20px 0;
    border-left: 4px solid var(--gold);
}
.tip-modal-body .tip-highlight strong {
    color: var(--navy);
}
.tip-modal-footer {
    padding: 20px 35px;
    background: var(--light-bg);
    border-top: 1px solid #e8e0d5;
    text-align: center;
    font-size: 13px;
    color: #777;
}
.tip-modal-footer a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}
@media (max-width: 768px) {
    .tip-modal-body { padding: 25px 20px; }
    .tip-modal-header { padding: 25px 20px; }
    .tip-modal-header h2 { font-size: 22px; }
}

/* ============================================================
   MOBILE COMPATIBILITY HARDENING (Android + iPhone)
   ============================================================ */

/* Prevent iOS auto text-resize & enable smooth touch scroll */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    max-width: 100vw;
}
*, *::before, *::after { box-sizing: border-box; }

/* Stop any element from forcing horizontal scroll */
img, video, svg, iframe, table { max-width: 100%; height: auto; }

/* Respect iPhone notch / safe areas */
@supports (padding: max(0px)) {
    nav, .navbar, footer {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

/* Tablet & below */
@media (max-width: 768px) {
    section { padding-left: 18px; padding-right: 18px; }
    .container, .footer-content { padding-left: 0; padding-right: 0; }
    h1 { font-size: clamp(26px, 8vw, 40px); line-height: 1.2; }
    h2 { font-size: clamp(22px, 6vw, 32px); line-height: 1.25; }
    h3 { font-size: clamp(18px, 5vw, 24px); }
    p, li, a, span { word-break: break-word; overflow-wrap: anywhere; }

    /* Tap targets min 44px (Apple/Google guideline) */
    a, button, .btn-call, .btn-primary, .btn-secondary,
    .contact-action-btn, .social-icon, .mobile-menu a, .hamburger {
        min-height: 44px;
    }
}

/* Phones */
@media (max-width: 480px) {
    section { padding-top: 40px; padding-bottom: 40px; }
    .contact-actions { grid-template-columns: 1fr !important; gap: 14px; }
    .contact-action-btn { width: 100%; }
    .whatsapp-btn { transform: none !important; } /* avoid overflow from scale */
    .footer-content { grid-template-columns: 1fr !important; text-align: center; }
    .social-icons { justify-content: center; }
    /* Make any multi-column grids single column on small phones */
    [class*="grid"], [class*="-cards"], [class*="cols"] {
        grid-template-columns: 1fr !important;
    }
}

/* Landscape small height fix for nav */
@media (max-height: 480px) and (orientation: landscape) {
    .mobile-menu { overflow-y: auto; }
}
