/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════ */
:root {
    --brand: #2596be;
    --brand-dark: #1a7a9e;
    --brand-light: #5cb8d6;
    --brand-accent: #7dd3e8;
    --brand-bg: #e8f4f8;
    --dark: #1a1a2e;
    --dark-mid: #2d2d44;
    --text: #2c2c3e;
    --text-light: #6b6b80;
    --text-muted: #9b9bb0;
    --white: #ffffff;
    --off-white: #f8fafb;
    --border: #e2e8f0;
    --shadow: 0 4px 30px rgba(37, 150, 190, 0.08);
    --shadow-hover: 0 8px 40px rgba(37, 150, 190, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body.loading {
    overflow: hidden;
}

::selection {
    background: var(--brand);
    color: var(--white);
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul,
ol {
    list-style: none;
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR (Desktop only)
═══════════════════════════════════════════ */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--brand);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-dot.hovering {
    width: 16px;
    height: 16px;
    background: var(--brand-accent);
}

@media (pointer: coarse),
(max-width: 1024px) {
    .cursor-dot {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
}

.preloader-eye {
    width: 80px;
    height: 50px;
}

.preloader-eye svg {
    width: 100%;
    height: 100%;
}

.preloader-eye .eye-path {
    stroke: var(--brand);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawEye 1.2s ease forwards;
}

.preloader-eye .eye-iris {
    fill: var(--brand);
    opacity: 0;
    animation: fadeInIris 0.3s ease 0.9s forwards;
}

.preloader-text {
    color: var(--brand-accent);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin-top: 16px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInIris 0.4s ease 0.6s forwards;
}

@keyframes drawEye {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInIris {
    to {
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.top-bar {
    background: var(--brand-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 6px 0;
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar .separator {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.top-bar .cashless-badge {
    background-color: var(--white);
    color: #000000;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    cursor: default;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.top-bar a[href*="wa.me"] {
    background-color: var(--white, #ffffff);
    color: #2ea44f !important;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.top-bar a[href*="wa.me"]:hover {
    background-color: #f5f5f5;
    color: #22843c !important;
    transform: translateY(-0.5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

@media (max-width: 640px) {
    .top-bar {
        font-size: 0.62rem;
    }

    .top-bar-inner {
        justify-content: center;
        gap: 6px 10px;
    }

    .top-bar-left,
    .top-bar-right {
        font-size: 0.6rem;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar .separator {
        height: 10px;
    }
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--white);
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 36px;
    height: 36px;
}

.nav-logo svg {
    width: 100%;
    height: 100%;
}

.nav-brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: var(--dark);
    line-height: 1.2;
}

.nav-brand-text span {
    display: block;
    font-size: 0.65em;
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.2rem);
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.02em;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width var(--transition);
}

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

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

.nav-links a.active {
    color: var(--brand);
    font-weight: 700;
}

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

.nav-cta {
    background: var(--brand) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.78rem !important;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

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

.nav-cta:hover {
    background: var(--brand-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 150, 190, 0.3);
}

/* Navigation Dropdown Menu styling */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.55rem;
    vertical-align: middle;
    transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 0;
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu a {
    display: block !important;
    padding: 0.7rem 1.5rem !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    transition: background 0.2s ease, color 0.2s ease !important;
    text-align: left;
}

.dropdown-menu a::after {
    display: none !important;
    /* Remove bottom border transition inside dropdown */
}

.dropdown-menu a:hover {
    background: var(--brand-bg) !important;
    color: var(--brand-dark) !important;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.96);
    backdrop-filter: blur(20px);
    z-index: 105;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu nav {
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem 0;
}

.mobile-menu a {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--white);
    padding: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu.open a:nth-child(2) {
    transition-delay: 0.1s;
}

.mobile-menu.open a:nth-child(3) {
    transition-delay: 0.15s;
}

.mobile-menu.open a:nth-child(4) {
    transition-delay: 0.2s;
}

.mobile-menu.open a:nth-child(5) {
    transition-delay: 0.25s;
}

.mobile-menu.open a:nth-child(6) {
    transition-delay: 0.3s;
}

.mobile-menu.open a:nth-child(7) {
    transition-delay: 0.35s;
}

.mobile-menu.open a:nth-child(8) {
    transition-delay: 0.4s;
}

.mobile-menu.open a:nth-child(9) {
    transition-delay: 0.45s;
}

.mobile-menu.open a:nth-child(10) {
    transition-delay: 0.5s;
}

.mobile-menu.open a:nth-child(11) {
    transition-delay: 0.55s;
}

.mobile-menu.open a:nth-child(12) {
    transition-delay: 0.6s;
}

.mobile-menu.open a:nth-child(13) {
    transition-delay: 0.65s;
}

.mobile-menu.open a:nth-child(14) {
    transition-delay: 0.70s;
}

.mobile-menu.open a:nth-child(15) {
    transition-delay: 0.75s;
}

.mobile-menu.open a:nth-child(16) {
    transition-delay: 0.80s;
}

/* Mobile sublinks styling */
.mobile-sublink {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem) !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    padding: 6px 0 !important;
    opacity: 0.9;
}

.mobile-menu a:hover {
    color: var(--brand-accent);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

/* ═══════════════════════════════════════════
   HERO & BANNERS
═══════════════════════════════════════════ */
.hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vh, 8rem) clamp(1rem, 4vw, 3rem);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--brand);
    border-radius: 50%;
    opacity: 0.15;
}

.hero-particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation: floatParticle 8s ease-in-out infinite;
}

.hero-particle:nth-child(2) {
    top: 30%;
    left: 85%;
    animation: floatParticle 10s ease-in-out 1s infinite;
    width: 6px;
    height: 6px;
    opacity: 0.1;
}

.hero-particle:nth-child(3) {
    top: 70%;
    left: 20%;
    animation: floatParticle 12s ease-in-out 2s infinite;
    width: 3px;
    height: 3px;
}

.hero-particle:nth-child(4) {
    top: 80%;
    left: 75%;
    animation: floatParticle 9s ease-in-out 0.5s infinite;
}

.hero-particle:nth-child(5) {
    top: 25%;
    left: 50%;
    animation: floatParticle 11s ease-in-out 1.5s infinite;
    width: 5px;
    height: 5px;
    opacity: 0.08;
}

.hero-particle:nth-child(6) {
    top: 55%;
    left: 65%;
    animation: floatParticle 7s ease-in-out 3s infinite;
    width: 3px;
    height: 3px;
    opacity: 0.12;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(-10px) translateX(-15px);
    }

    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

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

.hero-heading {
    margin-bottom: 1.5rem;
}

.hero-line {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    line-height: 1.1;
    display: block;
    overflow: hidden;
}

.hero-line-inner {
    display: inline-block;
    transform: translateY(110%);
    animation: revealLine 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero-line:nth-child(1) .hero-line-inner {
    animation-delay: 0.2s;
}

.hero-line:nth-child(2) .hero-line-inner {
    animation-delay: 0.4s;
}

.hero-line:nth-child(3) .hero-line-inner {
    animation-delay: 0.6s;
}

.hero-line:nth-child(1) {
    font-weight: 300;
    color: var(--text-light);
}

.hero-line:nth-child(2) {
    font-weight: 400;
    color: var(--text);
}

.hero-line:nth-child(3) {
    font-weight: 800;
    color: var(--brand);
}

@keyframes revealLine {
    to {
        transform: translateY(0);
    }
}

.hero-accreditations {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.8s forwards;
}

.hero-accreditations .line {
    width: 40px;
    height: 1px;
    background: var(--brand);
    margin-right: 16px;
    flex-shrink: 0;
}

.hero-accreditations span {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 1s forwards;
    margin-bottom: 1.5rem;
}

.hero-founder {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0.5rem 0 0;
    padding: 0.6rem 1.05rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 150, 190, 0.14);
    background: rgba(232, 244, 248, 0.75);
    color: var(--text-light);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.9s forwards;
}

.hero-founder strong {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 0.96rem;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

/* Inner Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #12122a 100%);
    color: var(--white);
    padding: clamp(5rem, 10vh, 8rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 6vh, 4rem);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-banner-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-banner-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--brand-accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-banner-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.page-banner-desc {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
}

.breadcrumbs a {
    color: var(--brand-accent);
    transition: color var(--transition);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span.separator {
    color: rgba(255, 255, 255, 0.25);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.btn-primary {
    background: var(--brand);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 150, 190, 0.25);
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 150, 190, 0.35);
}

.btn-secondary {
    background: var(--brand-bg);
    color: var(--brand-dark);
    box-shadow: 0 4px 15px rgba(37, 150, 190, 0.1);
}

.btn-secondary:hover {
    background: var(--brand-accent);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 150, 190, 0.2);
}

.btn-outline {
    border: 2px solid var(--brand);
    color: var(--brand);
    background: transparent;
}

.btn-outline:hover {
    background: var(--brand);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 150, 190, 0.25);
}

.btn-white-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: transparent;
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-eye-container {
    width: clamp(250px, 30vw, 400px);
    height: clamp(180px, 22vw, 280px);
    position: relative;
}

.hero-eye-svg {
    width: 100%;
    height: 100%;
}

.hero-eye-svg .eye-outline {
    fill: none;
    stroke: var(--brand);
    stroke-width: 1.5;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawHeroEye 2s ease 0.5s forwards;
}

.hero-eye-svg .eye-iris-outer {
    fill: none;
    stroke: var(--brand-light);
    stroke-width: 1;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawHeroEye 1.5s ease 1.2s forwards;
}

.hero-eye-svg .eye-iris-inner {
    fill: var(--brand);
    opacity: 0;
    animation: fadeInIris 0.5s ease 1.8s forwards;
}

.hero-eye-svg .eye-highlight {
    fill: var(--white);
    opacity: 0;
    animation: fadeInIris 0.3s ease 2s forwards;
}

.hero-eye-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(37, 150, 190, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: fadeInIris 1s ease 1.5s forwards;
}

@keyframes drawHeroEye {
    to {
        stroke-dashoffset: 0;
    }
}

.scroll-indicator {
    position: absolute;
    right: clamp(1rem, 2vw, 2rem);
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInIris 0.6s ease 1.5s forwards;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    text-transform: uppercase;
}

.scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--brand), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 6rem;
        min-height: auto;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 1.5rem;
    }

    .hero-eye-container {
        width: 200px;
        height: 140px;
    }

    .hero-founder {
        justify-content: center;
        width: 100%;
    }

    .hero-buttons {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content ul {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        display: inline-block;
    }

    .hero-accreditations {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-accreditations .line {
        margin-right: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════ */
.section {
    padding: clamp(3.5rem, 7vh, 7rem) clamp(1rem, 4vw, 3rem);
    max-width: 1400px;
    margin: 0 auto;
}

.section-bg {
    background: var(--off-white);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--brand);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    display: block;
}

.section-dark .section-tag {
    color: var(--brand-accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

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

.section-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.stat-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-item:nth-child(3)::after {
        display: none;
    }
}

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

    .stat-item:nth-child(even)::after {
        display: none;
    }

    .stat-item {
        padding: 1.8rem 1rem;
    }
}

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

    .stat-item::after {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   ABOUT & CLINIC
═══════════════════════════════════════════ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
}

.about-text p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.88rem;
}

.about-feat svg {
    color: var(--brand);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-visual img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .about-split {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.featured-service {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: var(--shadow);
    margin-bottom: 4rem;
}

.feat-service-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.feat-service-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feat-service-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feat-service-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--brand-bg);
    color: var(--brand-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feat-service-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 2rem;
}

.feat-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--text);
    font-weight: 500;
}

.feat-bullet svg {
    color: var(--brand);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    transition: all var(--transition);
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-light);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-dark);
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.service-card-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.service-card-link:hover {
    color: var(--brand-dark);
}

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

    .feat-service-split {
        grid-template-columns: 1fr;
    }
}

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

    .feat-service-bullets {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US & BENEFITS
═══════════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    transition: all var(--transition);
    height: 100%;
}

.why-card:hover {
    background: var(--brand-bg);
    border-color: rgba(37, 150, 190, 0.15);
}

.why-card-icon {
    color: var(--brand);
    margin-bottom: 1.2rem;
}

.why-card-icon svg {
    width: 32px;
    height: 32px;
}

.why-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.why-card-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

/* ═══════════════════════════════════════════
   INSURANCE PARTNERS
═══════════════════════════════════════════ */
.insurance-section {
    background: var(--white);
    text-align: center;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.insurance-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    background: var(--off-white);
    transition: all var(--transition);
}

.insurance-card:hover {
    border-color: var(--brand-light);
    background: var(--brand-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.insurance-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    text-align: center;
}

.tpa-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.tpa-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tpa-badge {
    padding: 8px 18px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .insurance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* ═══════════════════════════════════════════
   DOCTOR CARD LISTING & PROFILES
═══════════════════════════════════════════ */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.doctor-profile-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.doctor-profile-top {
    padding: 2.2rem 2.2rem 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.doctor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand);
    flex-shrink: 0;
}

.doctor-initials-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doctor-profile-top-info h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.doctor-profile-top-info .role {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 8px;
    display: block;
}

.doctor-profile-details {
    padding: 0 2.2rem 2.2rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    flex-grow: 1;
}

.doctor-detail-section {
    margin-bottom: 1.25rem;
}

.doctor-detail-section h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.doctor-detail-section p {
    font-size: 0.88rem;
    color: var(--text);
}

.doctor-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.doctor-tag-item {
    padding: 3px 10px;
    background: var(--brand-bg);
    color: var(--brand-dark);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
}

.doctor-profile-footer {
    background: var(--off-white);
    padding: 1.2rem 2.2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doctor-surgeries {
    font-size: 0.82rem;
    color: var(--text-light);
}

.doctor-surgeries strong {
    color: var(--dark);
}

@media (max-width: 992px) {
    .doctors-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .doctor-profile-top {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .doctor-profile-details {
        padding: 1.5rem;
    }

    .doctor-profile-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS & PATIENT STORIES
═══════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f1c40f;
    margin-bottom: 1.2rem;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-bg);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-author-info h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-author-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

.video-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.04);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 150, 190, 0.4);
    transition: all var(--transition);
    padding-left: 4px;
}

.video-card:hover .video-play-btn {
    background: var(--brand-accent);
    color: var(--dark);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 150, 190, 0.6);
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.25rem;
    color: var(--white);
}

.video-caption h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.video-caption p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

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

    .video-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

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

/* ═══════════════════════════════════════════
   BLOGS & ARTICLES
═══════════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-light);
}

.blog-card-img {
    aspect-ratio: 16/10;
    background: var(--brand-bg);
    overflow: hidden;
    position: relative;
}

.blog-card-img svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    color: var(--brand-light);
    opacity: 0.4;
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--brand);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    display: flex;
    gap: 10px;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.35;
}

.blog-card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.blog-card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand);
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.blog-card-link:hover {
    color: var(--brand-dark);
}

/* Single Blog Page Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 3rem;
}

.blog-article-content {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

.blog-article-content p {
    margin-bottom: 1.5rem;
}

.blog-article-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--dark);
    margin: 2.2rem 0 1rem;
}

.blog-article-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--dark);
    margin: 1.8rem 0 0.8rem;
}

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

.blog-article-content li {
    margin-bottom: 0.5rem;
}

.blog-article-content strong {
    color: var(--dark);
}

.blog-sidebar-widget {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    margin-bottom: 1.8rem;
}

.blog-sidebar-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--brand);
    padding-bottom: 8px;
}

.sidebar-post-item {
    display: block;
    margin-bottom: 1rem;
}

.sidebar-post-item h5 {
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    transition: color var(--transition);
}

.sidebar-post-item:hover h5 {
    color: var(--brand);
}

.sidebar-post-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

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

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

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

/* ═══════════════════════════════════════════
   ACCORDIONS & FAQS
═══════════════════════════════════════════ */
.faq-category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.faq-tab-btn {
    padding: 10px 22px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    transition: all var(--transition);
}

.faq-tab-btn:hover,
.faq-tab-btn.active {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
    box-shadow: 0 4px 15px rgba(37, 150, 190, 0.2);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: var(--brand-light);
}

.faq-question {
    padding: 1.25rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    text-align: left;
    width: 100%;
}

.faq-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--brand);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    transition: transform var(--transition);
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
    padding: 0 1.8rem;
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 1000px;
    /* arbitrary high number */
}

/* ═══════════════════════════════════════════
   CONTACT & APPTS
═══════════════════════════════════════════ */
.contact-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
}

.contact-card-info {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.2rem;
}

.contact-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
}

.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 2rem;
}

.contact-block-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 150, 190, 0.15);
    color: var(--brand-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-block-icon svg {
    width: 20px;
    height: 20px;
}

.contact-block-text h4 {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-block-text p,
.contact-block-text a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-block-text a:hover {
    color: var(--white);
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand);
    background: var(--white);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c;
}

.form-group .error-msg {
    font-size: 0.72rem;
    color: #e74c3c;
    margin-top: 4px;
    display: none;
}

.form-group .error-msg.show {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 40px;
    background: var(--brand);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--brand-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 150, 190, 0.3);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 16px 28px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
    z-index: 9000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    background: #27ae60;
}

.toast.error {
    background: #e74c3c;
}

/* Maps card */
.maps-container {
    height: 450px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 3.5rem;
    box-shadow: var(--shadow);
}

.maps-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

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

/* ═══════════════════════════════════════════
   SURGERY JOURNEY & FLOWCHART
═══════════════════════════════════════════ */
.journey-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 2rem;
}

.journey-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    position: relative;
}

.journey-step-num {
    position: absolute;
    top: -1.5rem;
    left: 1.8rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 150, 190, 0.3);
}

.journey-step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0.8rem 0 0.8rem;
}

.journey-step-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .journey-flow {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 2rem auto 0;
    }

    .journey-step {
        padding-top: 2.5rem;
    }
}

/* ═══════════════════════════════════════════
   PHOTO GALLERY
═══════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

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

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
    background-size: 22px 22px;
    background-repeat: no-repeat;
    background-position: center;
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover::after {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
}

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 10;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.4rem;
    line-height: 1;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    font-family: inherit;
}

.lightbox-close:hover {
    color: #fff;
    transform: scale(1.15);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s, border-color 0.25s;
    color: rgba(255, 255, 255, 0.7);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 22px;
    height: 22px;
}

.lightbox-prev {
    left: 1.25rem;
}

.lightbox-next {
    right: 1.25rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(37, 150, 190, 0.25);
    border-color: var(--brand);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.lightbox-content {
    position: relative;
    z-index: 5;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    max-width: 90vw;
    max-height: 80vh;
    touch-action: none;
}

.lightbox-img {
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    transform-origin: center center;
    transition: transform 0.25s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    white-space: nowrap;
    max-width: 80vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lightbox-counter {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.lightbox-zoom-hint {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease 0.6s;
}

.lightbox.open .lightbox-zoom-hint {
    opacity: 1;
}

.lightbox.open .lightbox-zoom-hint.hide-hint {
    opacity: 0;
}

.lightbox-img.sliding-left {
    animation: lbSlideLeft 0.35s ease forwards;
}

.lightbox-img.sliding-right {
    animation: lbSlideRight 0.35s ease forwards;
}

@keyframes lbSlideLeft {
    0% {
        transform: translateX(60px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes lbSlideRight {
    0% {
        transform: translateX(-60px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 640px) {

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 18px;
        height: 18px;
    }

    .lightbox-close {
        top: 0.75rem;
        right: 1rem;
        font-size: 2rem;
    }

    .lightbox-caption {
        bottom: 1.25rem;
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
    }

    .lightbox-counter {
        top: 1rem;
        left: 1rem;
    }
}

/* ═══════════════════════════════════════════
   FOUNDER SECTION
═══════════════════════════════════════════ */
.founder {
    background: var(--white);
    padding: clamp(3.5rem, 7vh, 7rem) 0;
    position: relative;
    overflow: hidden;
}

.founder-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.founder-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.founder-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--brand);
    box-shadow: 0 8px 40px rgba(37, 150, 190, 0.18);
    transition: transform var(--transition), box-shadow var(--transition);
}

.founder-image:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 50px rgba(37, 150, 190, 0.28);
}

.founder-image-label {
    text-align: center;
}

.founder-image-label h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.founder-image-label span {
    font-size: 0.8rem;
    color: var(--brand);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.founder-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.founder-tag {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--brand);
    font-weight: 600;
    text-transform: uppercase;
}

.founder-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
}

.founder-title em {
    color: var(--brand);
    font-style: italic;
}

.founder-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
}

.founder-legacy {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    padding: 1.2rem 1.5rem;
    background: var(--brand-bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--brand);
}

.founder-legacy img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-light);
}

.founder-legacy-text {
    font-size: 0.88rem;
    color: var(--dark);
    line-height: 1.55;
}

.founder-legacy-text strong {
    color: var(--brand-dark);
}

@media (max-width: 768px) {
    .founder-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-image {
        width: 180px;
        height: 180px;
    }

    .founder-legacy {
        flex-direction: column;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    background: #12122a;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(3rem, 5vh, 5rem) clamp(1rem, 4vw, 3rem);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(2rem, 3vw, 4rem);
    margin-bottom: 2.5rem;
}

.footer-brand-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer-brand-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 0;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.75rem;
}

.footer-tags {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
}

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

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

    .footer-bottom {
        gap: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-tags {
        line-height: 1.7;
        letter-spacing: 0.08em;
    }
}

/* ═══════════════════════════════════════════
   PARALLAX ELEMENTS
═══════════════════════════════════════════ */
.parallax-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.03;
    z-index: 0;
}

.parallax-shape.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid var(--brand);
    top: 20%;
    right: -100px;
}

.parallax-shape.diamond {
    width: 200px;
    height: 200px;
    border: 2px solid var(--brand);
    transform: rotate(45deg);
    bottom: 10%;
    left: -80px;
}

/* ═══════════════════════════════════════════
   REDUCED MOTION & ACCESSIBILITY
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 3s infinite ease-in-out;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    animation: none; /* pause pulse animation on hover for stable pointer control */
}

@keyframes whatsapp-pulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
}

/* Ensure visibility and comfort on smaller mobile devices */
@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}