/* ================================================================
   Crown Kraft Dental Studio — PREMIUM DESIGN SYSTEM
   Deep Navy + Teal-Cyan + Violet accents — Standout Healthcare UI
   ================================================================ */

/* ----------------------------- CSS Variables ----------------------------- */
:root {
    /* Primary Palette — Deep Navy + Vibrant Teal */
    --navy: #0a192f;
    --navy-light: #112240;
    --navy-medium: #0d1f3c;

    --teal: #14b8a6;
    --teal-light: #2dd4bf;
    --teal-dark: #0d9488;
    --teal-glow: rgba(20, 184, 166, 0.35);

    --cyan: #06b6d4;
    --cyan-light: #67e8f9;

    --violet: #a78bfa;
    --violet-light: #c4b5fd;
    --violet-glow: rgba(167, 139, 250, 0.3);

    --gold: #fbbf24;
    --gold-light: #fde68a;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f1f5f9;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-300: #94a3b8;
    --gray-400: #64748b;
    --gray-500: #475569;
    --gray-600: #334155;
    --gray-700: #1e293b;
    --gray-800: #0f172a;

    /* Semantic */
    --success: #22c55e;
    --error: #ef4444;

    /* Background & Surface */
    --bg: var(--white);
    --bg-alt: var(--off-white);
    --surface: var(--white);
    --text-primary: var(--navy);
    --text-secondary: var(--gray-400);
    --text-muted: var(--gray-300);
    --border: rgba(14, 25, 47, 0.08);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(10, 25, 47, 0.88) 0%, rgba(13, 31, 60, 0.82) 40%, rgba(20, 184, 166, 0.7) 100%);
    --gradient-primary: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 50%, var(--violet) 100%);
    --gradient-warm: linear-gradient(135deg, var(--teal) 0%, var(--violet) 100%);
    --gradient-card: linear-gradient(145deg, rgba(20, 184, 166, 0.06) 0%, rgba(167, 139, 250, 0.04) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 100%);
    --gradient-dark: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 25, 47, 0.08);
    --shadow-lg: 0 16px 50px rgba(10, 25, 47, 0.12);
    --shadow-xl: 0 24px 70px rgba(10, 25, 47, 0.15);
    --shadow-glow-teal: 0 0 40px var(--teal-glow);
    --shadow-glow-violet: 0 0 40px var(--violet-glow);

    /* Typography */
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --fs-4xl: 2.75rem;
    --fs-5xl: 3.5rem;
    --fs-6xl: 5rem;

    /* Spacing */
    --container: 1240px;
    --section-py: 120px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.35s var(--ease);
    --transition-slow: 0.55s var(--ease);
}

/* ----------------------------- Reset ----------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

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

input,
textarea,
select {
    font-family: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ----------------------------- Global Background Orbs ----------------------------- */
.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--teal);
    top: -200px;
    right: -200px;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--violet);
    bottom: -100px;
    left: -150px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--cyan);
    top: 50%;
    left: 50%;
    animation: orbFloat 18s ease-in-out infinite 5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -60px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.95);
    }
}

/* ----------------------------- Utilities ----------------------------- */
.heading-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(10, 25, 47, 0.06);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--teal);
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-heading {
    font-size: var(--fs-4xl);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 56px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ----------------------------- Buttons ----------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: var(--fs-sm);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-glow {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px var(--teal-glow), 0 0 60px rgba(20, 184, 166, 0.1);
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px var(--teal-glow), 0 0 80px rgba(20, 184, 166, 0.2);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    filter: blur(12px);
    opacity: 0.4;
    transition: opacity var(--transition);
}

.btn-glow:hover::before {
    opacity: 0.7;
}

.btn-ghost {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: var(--fs-base);
}

/* ----------------------------- Scroll Progress ----------------------------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: width 0.08s linear;
    box-shadow: 0 0 10px var(--teal-glow);
}

/* ============================= NAVBAR ============================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px rgba(10, 25, 47, 0.06);
    padding: 10px 0;
    border-bottom: 1px solid rgba(10, 25, 47, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar.scrolled .logo-name {
    color: var(--navy);
}

.navbar.scrolled .logo-sub {
    color: var(--gray-400);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--white);
}

.navbar.scrolled .nav-link {
    color: var(--gray-400);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--teal);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    font-size: var(--fs-xs) !important;
    padding: 10px 24px !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--navy);
}

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

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

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

/* ============================= HERO ============================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 70% 40%, rgba(167, 139, 250, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
}

/* Hero floating shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--teal-light);
    top: -100px;
    right: -100px;
    animation: shapeFloat 12s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--violet-light);
    bottom: 5%;
    left: -60px;
    animation: shapeFloat 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: var(--gold);
    top: 35%;
    right: 20%;
    animation: shapeFloat 8s ease-in-out infinite 3s;
}

.shape-ring {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    top: 20%;
    left: 10%;
    animation: shapeFloat 10s ease-in-out infinite 2s;
}

@keyframes shapeFloat {

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

    50% {
        transform: translateY(-35px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: 500;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero-title {
    font-size: var(--fs-6xl);
    font-weight: 900;
    line-height: 1.02;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--cyan-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.hero-subtitle {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 500px;
}

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

/* Hero stat cards — premium ring design */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.hero-stat-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 2px;
    animation: cardFloat 5s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.5), rgba(167, 139, 250, 0.5), rgba(6, 182, 212, 0.3));
    background-size: 200% 200%;
    animation: cardFloat 5s ease-in-out infinite, borderShimmer 4s ease infinite;
}

.card-offset {
    animation-delay: 1.5s;
    margin-right: 30px;
}

.card-offset-2 {
    animation-delay: 3s;
    margin-right: 60px;
}

@keyframes borderShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.stat-card-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 28px;
    background: rgba(10, 25, 47, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: calc(var(--radius-lg) - 2px);
}

.stat-icon-ring {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.stat-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-ring-fill {
    transition: stroke-dasharray 1.5s var(--ease);
}

.stat-icon-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
}

.stat-text strong {
    display: block;
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.stat-text span {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-stat-card:hover .stat-card-inner {
    background: rgba(10, 25, 47, 0.85);
}

.hero-stat-card:hover .stat-icon-center {
    color: var(--white);
}

@keyframes cardFloat {

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

    50% {
        transform: translateY(-12px);
    }
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
}

/* ============================= TRUST STRIP ============================= */
.trust-strip {
    padding: 56px 0;
    background: var(--gradient-dark);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.trust-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 80% at 10% 50%, rgba(20, 184, 166, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 90% 50%, rgba(167, 139, 250, 0.10) 0%, transparent 70%);
}

.trust-strip-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0;
    position: relative;
}

.trust-stat {
    text-align: center;
    flex: 1;
    padding: 8px 24px;
    position: relative;
}

.trust-stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.trust-number {
    font-size: var(--fs-4xl);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
}

.trust-suffix {
    font-size: var(--fs-2xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-stat-label {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 4px 0 14px;
    font-weight: 500;
}

.trust-stat-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
    max-width: 120px;
    margin: 0 auto;
}

.trust-stat-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: inherit;
    transition: width 1.5s var(--ease);
}

.trust-stat.visible .trust-stat-bar-fill {
    width: var(--fill);
}

.trust-stat-divider {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
    flex-shrink: 0;
}

/* ============================= ABOUT ============================= */
.about-section {
    padding: var(--section-py) 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-frame img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.95) saturate(0.8) sepia(0.2) hue-rotate(-10deg);
    transition: all var(--transition-slow);
}

.about-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(20, 184, 166, 0.15) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
    transition: all var(--transition-slow);
}

.about-image-wrap:hover .about-image-frame img {
    transform: scale(1.05);
    filter: contrast(1) brightness(1) saturate(1) sepia(0);
}

.about-image-wrap:hover .about-image-frame::after {
    opacity: 0;
}

.about-image-border {
    position: absolute;
    inset: -8px;
    border: 2px solid transparent;
    border-radius: calc(var(--radius-xl) + 4px);
    background: var(--gradient-primary) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    z-index: 3;
}

.about-badge span {
    font-size: 28px;
}

.about-badge strong {
    display: block;
    font-size: var(--fs-sm);
}

.about-badge small {
    font-size: var(--fs-xs);
    color: var(--text-secondary);
}

.about-experience-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 3;
    box-shadow: var(--shadow-glow-teal);
    animation: cardFloat 4s ease-in-out infinite;
}

.about-experience-badge strong {
    font-size: var(--fs-xl);
    font-weight: 900;
    line-height: 1;
}

.about-experience-badge span {
    font-size: var(--fs-xs);
    opacity: 0.8;
}

.about-subtitle {
    font-size: var(--fs-base);
    color: var(--teal);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.about-bio {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 36px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature-item:hover {
    background: var(--gradient-card);
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12) 0%, rgba(167, 139, 250, 0.12) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    transition: all var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-teal);
}

.feature-item strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.feature-item p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================= CTA HOOK ============================= */
.cta-hook {
    padding: 48px 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.06) 0%, rgba(167, 139, 250, 0.06) 100%);
    position: relative;
    z-index: 1;
}

.cta-hook-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-hook-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(20, 184, 166, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 50%);
}

.cta-hook-text {
    position: relative;
    z-index: 1;
}

.cta-hook-text h3 {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.cta-hook-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-sm);
}

.cta-hook .btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* ============================= SERVICES ============================= */
.services-section {
    padding: var(--section-py) 0;
    background: var(--gradient-dark);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(20, 184, 166, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
}

.services-section .section-tag {
    color: var(--teal-light);
}

.services-section .section-heading {
    color: var(--white);
}

.services-section .heading-accent {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--violet-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.services-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.services-intro {
    position: sticky;
    top: 120px;
}

.services-intro-desc {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.9;
    margin-bottom: 32px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
    cursor: pointer;
}

.service-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-row:hover {
    padding-left: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.service-num {
    font-size: var(--fs-3xl);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.35;
    flex-shrink: 0;
    min-width: 60px;
    transition: opacity var(--transition);
}

.service-row:hover .service-num {
    opacity: 0.8;
}

.service-row-content {
    flex: 1;
}

.service-row-content h3 {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    transition: color var(--transition);
}

.service-row:hover .service-row-content h3 {
    color: var(--teal-light);
}

.service-row-content p {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.service-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
}

.service-row:hover .service-arrow {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-glow-teal);
    transform: translateX(4px);
}

/* ============================= GALLERY ============================= */
.gallery-section {
    padding: var(--section-py) 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: var(--fs-lg);
    border-left: 3px solid var(--teal);
    padding-left: 12px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 80px rgba(20, 184, 166, 0.2);
    animation: lbZoom 0.4s var(--ease-spring);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 40px;
    color: var(--white);
    transition: all var(--transition);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@keyframes lbZoom {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================= TESTIMONIALS ============================= */
.testimonials-section {
    padding: var(--section-py) 0;
    background: var(--gradient-dark);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials-section .section-tag {
    color: var(--teal-light);
}

.testimonials-section .section-heading {
    color: var(--white);
}

.testimonials-section .heading-accent {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--violet-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.testimonials-section .section-desc {
    color: rgba(255, 255, 255, 0.5);
}

.testimonials-carousel {
    max-width: 820px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.55s var(--ease);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 48px 48px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(8px);
    position: relative;
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 80px;
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.testimonial-stars {
    color: var(--gold);
    font-size: var(--fs-lg);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-card blockquote {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 28px;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: var(--fs-sm);
}

.testimonial-author strong {
    display: block;
    color: var(--white);
}

.testimonial-author span {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.4);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.carousel-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    box-shadow: var(--shadow-glow-teal);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dot.active {
    background: var(--gradient-primary);
    width: 30px;
    box-shadow: 0 0 12px var(--teal-glow);
}

/* ============================= BLOG ============================= */
.blog-section {
    padding: var(--section-py) 0;
    position: relative;
    z-index: 1;
}

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

.blog-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition-slow);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.blog-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--fs-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 28px;
}

.blog-content time {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content h3 {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin: 8px 0 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.blog-link {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--teal);
}

.blog-link span {
    display: inline-block;
    transition: transform var(--transition);
}

.blog-link:hover span {
    transform: translateX(6px);
}

/* ============================= APPOINTMENT ============================= */
.appointment-section {
    padding: var(--section-py) 0;
    background: var(--gradient-dark);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 80%, rgba(20, 184, 166, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
}

.appointment-section .section-tag {
    color: var(--teal-light);
}

.appointment-section .section-heading {
    color: var(--white);
}

.appointment-section .heading-accent {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--violet-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.appointment-info p {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    margin-bottom: 32px;
}

.appointment-perks {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.perk-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.25) 0%, rgba(34, 197, 94, 0.25) 100%);
    color: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-weight: 800;
    flex-shrink: 0;
}

.appointment-form {
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-group {
    position: relative;
}

.form-full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 16px 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    color: var(--white);
    transition: all var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.form-group label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.4);
    transition: all var(--transition);
    pointer-events: none;
}

.form-group label.label-float,
.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: 4px;
    font-size: var(--fs-xs);
    color: var(--teal-light);
    font-weight: 600;
}

.form-error {
    display: none;
    font-size: var(--fs-xs);
    color: var(--error);
    margin-top: 4px;
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--error);
}

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

.btn-submit {
    grid-column: 1 / -1;
    width: 100%;
}

.btn-loader,
.btn-success {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: flex;
    animation: spin 1s linear infinite;
}

.btn-submit.success .btn-text,
.btn-submit.success .btn-loader {
    display: none;
}

.btn-submit.success .btn-success {
    display: inline;
}

.btn-submit.success {
    background: var(--success);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================= CONTACT ============================= */
.contact-section {
    padding: var(--section-py) 0;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 440px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-color: transparent;
}

.contact-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12) 0%, rgba(167, 139, 250, 0.08) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.contact-card strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-card p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card a {
    color: var(--teal);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ============================= FOOTER ============================= */
.footer {
    background: var(--navy);
    color: var(--gray-300);
    padding: 100px 0 0;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .nav-logo {
    margin-bottom: 16px;
}

.footer .logo-name {
    color: var(--white);
}

.footer .logo-sub {
    color: var(--gray-400);
}

.footer-brand p {
    font-size: var(--fs-sm);
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-glow-teal);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: var(--fs-sm);
    color: var(--gray-400);
    padding: 5px 0;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--teal-light);
    transform: translateX(4px);
}

.footer-newsletter h4 {
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: var(--fs-sm);
    color: var(--gray-400);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color var(--transition);
}

.newsletter-form:focus-within {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: var(--fs-sm);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    transition: opacity var(--transition);
}

.newsletter-form button:hover {
    opacity: 0.85;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: var(--fs-xs);
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: var(--fs-xs);
    color: var(--gray-500);
}

.footer-bottom-links a:hover {
    color: var(--teal-light);
}

/* ============================= ANIMATIONS ============================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.services-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.services-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.services-grid .animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.services-grid .animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

.trust-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.trust-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.trust-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.gallery-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.08s;
}

.gallery-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.16s;
}

.gallery-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.24s;
}

.gallery-grid .animate-on-scroll:nth-child(5) {
    transition-delay: 0.32s;
}

/* ============================= RESPONSIVE ============================= */
@media (max-width: 1024px) {
    :root {
        --fs-6xl: 3.5rem;
        --fs-4xl: 2.25rem;
        --section-py: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--navy) !important;
        font-size: var(--fs-lg);
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-cards {
        display: none;
    }

    .trust-strip-grid {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .trust-stat-divider {
        display: none;
    }

    .trust-stat {
        min-width: 140px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-frame img {
        height: 400px;
    }

    .cta-hook-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-intro {
        position: static;
        text-align: center;
    }

    .services-intro .btn {
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .gallery-wide {
        grid-column: span 1;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-6xl: 2.75rem;
        --fs-4xl: 1.85rem;
        --section-py: 64px;
    }

    .container {
        padding: 0 16px;
    }

    .trust-stat {
        min-width: 120px;
    }

    .service-num {
        font-size: var(--fs-2xl);
        min-width: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

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

    .appointment-form {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 420px) {
    :root {
        --fs-6xl: 2.25rem;
        --fs-4xl: 1.5rem;
    }

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

    .hero-badge {
        font-size: var(--fs-xs);
    }

    .service-arrow {
        display: none;
    }
}

/* ============================= BLOG MODAL ============================= */
.hidden-article {
    display: none;
}

.blog-modal {
    position: fixed;
    inset: 0;
    background: rgba(4, 12, 24, 0.92);
    /* Deeper, more sophisticated overlay */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.blog-modal.active {
    opacity: 1;
    pointer-events: all;
}

.blog-modal-content {
    width: 100%;
    max-width: 850px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 56px;
    position: relative;
    background: linear-gradient(135deg, #0a192f 0%, #060e1a 100%);
    border: 1px solid rgba(20, 184, 166, 0.2);
    /* Teal glow border */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(20, 184, 166, 0.05);
    transform: translateY(40px) scale(0.98);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.blog-modal.active .blog-modal-content {
    transform: translateY(0);
}

.blog-modal-content::-webkit-scrollbar {
    width: 6px;
}

.blog-modal-content::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

.blog-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    color: var(--white);
    line-height: 1;
    z-index: 10;
    transition: transform var(--transition);
}

.blog-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--teal);
}

#articleBody {
    color: var(--white);
}

#articleBody h2 {
    font-size: var(--fs-3xl);
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

#articleBody p {
    font-size: var(--fs-lg);
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.blog-modal-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
}

.read-article-btn {
    background: none;
    border: none;
    color: var(--teal);
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
}

.read-article-btn:hover {
    color: var(--white);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .blog-modal-content {
        padding: 32px 24px;
    }

    #articleBody h2 {
        font-size: var(--fs-2xl);
    }
}