﻿/* ================================
   CSS VARIABLES & RESET
================================ */
:root {
    --primary-color: #0ea5e9;
    --secondary-color: #38bdf8;
    --dark-color: #0c4a6e;
    --light-color: #f0f9ff;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    /* Professional Hero Color Palette */
    --hero-primary: #0284c7;
    --hero-secondary: #0ea5e9;
    --hero-accent: #06b6d4;
    --hero-dark: #075985;
    --hero-darker: #0c4a6e;
    --hero-light: #e0f2fe;
    --hero-lighter: #f0f9ff;
    --hero-text-primary: #0f172a;
    --hero-text-secondary: #475569;
    --hero-text-muted: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-call {
    background-color: var(--dark-color);
    color: var(--white);
}

.btn-call:hover {
    background-color: #0c3a54;
}

.btn-full {
    width: 100%;
}

/* ================================
   NAVIGATION
================================ */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 6px 30px rgba(14, 165, 233, 0.15), 0 2px 5px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(14, 165, 233, 0.5); }
}

.logo-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a::after {
    display: none;
}

.nav-menu a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover i {
    transform: scale(1.2) rotate(5deg);
}

.nav-menu a.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.nav-menu a.active i {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-appointment-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-appointment-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.nav-appointment-btn:hover::before {
    width: 300px;
    height: 300px;
}

.nav-appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.5);
}

.nav-appointment-btn i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.nav-appointment-btn span {
    position: relative;
    z-index: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(14, 165, 233, 0.1);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
/* ================================
   ADVANCED HERO SECTION
================================ */
/* ================================
   HERO SECTION â€” MODERN REDESIGN
================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 40%, #f8fafc 100%);
    overflow: hidden;
    padding: 100px 0 60px;
}

/* Background elements */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-a {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.18) 0%, transparent 70%);
    top: -10%;
    right: -6%;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-b {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, transparent 70%);
    bottom: -8%;
    left: -8%;
    animation: orbFloat 16s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(30px, -30px) scale(1.08); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(2, 132, 199, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 132, 199, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* Layout */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

/* ---- LEFT: Content ---- */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Tag / Badge */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(2, 132, 199, 0.25);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #0369a1;
    width: fit-content;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.1);
    letter-spacing: 0.2px;
}

.hero-tag i {
    color: #0ea5e9;
    font-size: 0.9rem;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: #0ea5e9;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.6);
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%   { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(14, 165, 233, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

/* Heading */
.hero-heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-name {
    font-size: 4.4rem;
    font-weight: 900;
    color: #0c2340;
    line-height: 1.05;
    display: block;
}

.hero-name-accent {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 60%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: -0.3px;
    margin-top: 8px;
    display: block;
}

/* Description */
.hero-desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-desc strong {
    color: #0369a1;
    font-weight: 700;
}

/* Stats Row */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 36px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(2, 132, 199, 0.12);
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.08);
    width: fit-content;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hstat-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0c2340;
    line-height: 1;
}

.hstat-plus {
    font-size: 1.6rem;
    color: #0ea5e9;
    font-weight: 800;
}

.hstat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(2, 132, 199, 0.15);
    flex-shrink: 0;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 12px;
    font-size: 0.97rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.2px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(2, 132, 199, 0.35);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(2, 132, 199, 0.45);
    color: #fff;
}

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.95);
    color: #0369a1;
    border: 2px solid rgba(2, 132, 199, 0.4);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08);
}

.hero-btn-outline:hover {
    background: #0ea5e9;
    color: #fff;
    border-color: #0ea5e9;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(2, 132, 199, 0.3);
}

/* Trust Bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.trust-item i {
    color: #10b981;
    font-size: 0.9rem;
}

.trust-dot {
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
}

/* ---- RIGHT: Visual ---- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
}

/* Gradient ring around image */
.hero-img-gradient-ring {
    position: absolute;
    inset: -4px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8, #0284c7, #0ea5e9);
    background-size: 300% 300%;
    animation: ringGradient 6s ease infinite;
    z-index: 0;
}

@keyframes ringGradient {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

.hero-img-box {
    position: relative;
    z-index: 1;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(2, 132, 199, 0.22);
    background: #e0f2fe;
}

.hero-img-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Experience Badge */
.hero-exp-badge {
    position: absolute;
    top: 42%;
    right: -22px;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 12px 36px rgba(2, 132, 199, 0.4);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50%       { transform: translateY(-50%) scale(1.04); }
}

.hero-exp-badge .exp-number {
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: block;
}

.hero-exp-badge .exp-text {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.3;
    display: block;
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.97);
    border: 1.5px solid rgba(2, 132, 199, 0.15);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(2, 132, 199, 0.14);
    z-index: 10;
    white-space: nowrap;
}

.card-top {
    top: 8%;
    left: -18%;
    animation: floatCard 5s ease-in-out infinite;
}

.card-bottom {
    bottom: 12%;
    left: -14%;
    animation: floatCard 5s ease-in-out infinite 2.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.fcard-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.fcard-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.fcard-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0c2340;
    line-height: 1;
    margin-bottom: 3px;
}

.fcard-text span {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* ================================
   HERO RESPONSIVE
================================ */

/* Tablet landscape */
@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .hero-name {
        font-size: 3.2rem;
    }
    .hero-title-sub {
        font-size: 1.3rem;
    }
    .hero-img-box img {
        height: 440px;
    }
    .card-top  { left: -10%; }
    .card-bottom { left: -8%; }
}

/* Tablet portrait — stack layout */
@media (max-width: 900px) {
    .hero-section {
        padding: 100px 0 56px;
        min-height: auto;
    }
    .hero-container {
        padding: 0 24px;
    }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    /* Content */
    .hero-tag {
        margin: 0 auto 20px;
    }
    .hero-heading {
        align-items: center;
    }
    .hero-name {
        font-size: 3rem;
    }
    .hero-title-sub {
        font-size: 1.2rem;
    }
    .hero-desc {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
    }
    .hero-stats-row {
        margin: 0 auto 28px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Show image on tablet in a compact form */
    .hero-visual {
        display: flex;
        order: -1;
    }
    .hero-img-wrap {
        max-width: 380px;
        margin: 0 auto;
    }
    .hero-img-box img {
        height: 360px;
    }
    .hero-exp-badge {
        width: 88px;
        height: 88px;
        right: -10px;
    }
    .hero-exp-badge .exp-number {
        font-size: 1.5rem;
    }
    .hero-exp-badge .exp-text {
        font-size: 0.6rem;
    }
    .card-top {
        top: 6%;
        left: -6%;
        padding: 10px 14px;
    }
    .card-bottom {
        bottom: 8%;
        left: -6%;
        padding: 10px 14px;
    }
    .fcard-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    .fcard-text strong { font-size: 0.78rem; }
    .fcard-text span   { font-size: 0.68rem; }
}

/* Large mobile */
@media (max-width: 600px) {
    .hero-section {
        padding: 90px 0 48px;
    }
    .hero-container {
        padding: 0 18px;
    }

    /* Tag */
    .hero-tag {
        font-size: 0.75rem;
        padding: 8px 16px;
        gap: 8px;
        margin-bottom: 18px;
    }

    /* Heading */
    .hero-name {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    .hero-title-sub {
        font-size: 1.05rem;
        margin-top: 6px;
    }

    /* Description */
    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Stats row */
    .hero-stats-row {
        gap: 18px;
        padding: 18px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hstat-value {
        font-size: 1.8rem;
    }
    .hstat-plus {
        font-size: 1.3rem;
    }
    .hstat-label {
        font-size: 0.68rem;
    }
    .hero-stat-divider {
        display: none;
    }

    /* Buttons */
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* Trust bar */
    .hero-trust {
        gap: 8px;
    }
    .trust-item {
        font-size: 0.78rem;
    }
    .trust-dot {
        display: none;
    }

    /* Image */
    .hero-visual {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 420px) {
    .hero-section {
        padding: 84px 0 44px;
    }
    .hero-container {
        padding: 0 16px;
    }
    .hero-name {
        font-size: 2.1rem;
    }
    .hero-title-sub {
        font-size: 0.95rem;
    }
    .hero-desc {
        font-size: 0.9rem;
    }
    .hero-stats-row {
        padding: 14px 16px;
        gap: 14px;
    }
    .hstat-value {
        font-size: 1.6rem;
    }
    .hero-tag {
        font-size: 0.7rem;
        padding: 7px 14px;
    }
}

/* ================================
   ABOUT SECTION
================================ */
.about-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.16) 0%, rgba(56, 189, 248, 0) 72%);
    top: -220px;
    right: -160px;
    pointer-events: none;
}

.section-header-about {
    margin-bottom: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(14, 165, 233, 0.16);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.14);
    position: relative;
    z-index: 1;
}

.about-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(140deg, rgba(224, 242, 254, 0.22) 0%, rgba(224, 242, 254, 0) 100%);
    pointer-events: none;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    min-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 22px 48px rgba(14, 165, 233, 0.24);
}

.about-image-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(14, 165, 233, 0.25);
    box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

.about-image-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.about-image-badge strong {
    display: block;
    color: #075985;
    font-size: 0.95rem;
}

.about-image-badge span {
    color: #0369a1;
    font-size: 0.8rem;
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-kicker {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.14);
    color: #0369a1;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.about-text h3 {
    color: #0f4c75;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.about-text p {
    color: #4b6478;
    margin-bottom: 14px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0;
}

.about-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(14, 165, 233, 0.18);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.12);
}

.about-highlight-card i {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-top: 3px;
}

.about-highlight-card h4 {
    color: #0f4c75;
    font-size: 0.98rem;
    margin-bottom: 3px;
}

.about-highlight-card p {
    color: #5d7286;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.about-features {
    margin: 20px 0 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 12px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(14, 165, 233, 0.08);
}

.about-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-feature-item span {
    color: #255777;
    font-size: 0.92rem;
    font-weight: 600;
}

.about-actions .btn {
    border-radius: 999px;
    padding: 12px 30px;
    box-shadow: 0 10px 22px rgba(14, 165, 233, 0.2);
}

/* ================================
   WHY US SECTION
================================ */
.why-us-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #0ea5e9 100%);
}

.why-us-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.why-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 74, 110, 0.95) 0%, rgba(3, 105, 161, 0.9) 50%, rgba(14, 165, 233, 0.85) 100%);
    z-index: 1;
}

.why-us-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    z-index: 2;
}

.why-us-section .container {
    position: relative;
    z-index: 3;
}

.why-us-header {
    margin-bottom: 60px;
}

.why-us-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.why-us-header .section-badge i {
    color: #fbbf24;
}

.why-us-header h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.why-us-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.why-us-content {
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.why-us-card {
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-us-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
}

.why-us-card:hover .why-us-card-inner {
    transform: translateY(-10px);
}

.why-us-card-front {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-us-card:hover .why-us-card-front {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-us-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s;
}

.why-us-card:hover .why-us-card-front::before {
    left: 100%;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(14, 165, 233, 0.08);
    line-height: 1;
}

.icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

.why-us-card:hover .icon-bg {
    transform: rotate(225deg);
}

.icon-wrapper i {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    color: var(--white);
    transition: transform 0.4s ease;
}

.why-us-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.why-us-card-front h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-us-card-front p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-detail {
    margin-top: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.why-us-card:hover .card-detail {
    opacity: 1;
    transform: translateY(0);
}

.card-detail p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.why-us-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.stat-content h4 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
    
    .why-us-header h2 {
        font-size: 2rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-us-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
}

/* ================================
   SERVICES SECTION
================================ */
.services-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.services-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-section .section-header h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
}

.service-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(12, 74, 110, 0.7) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.8;
}

.service-content {
    padding: 35px 30px;
    position: relative;
}

.service-number {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
    transition: transform 0.3s ease;
}

.service-card:hover .service-number {
    transform: rotate(360deg);
}

.service-content h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-card:hover .service-link::after {
    width: calc(100% - 25px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-image {
        height: 200px;
    }
}

/* ================================
   GALLERY SECTION
================================ */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
    position: relative;
    overflow: hidden;
}

.gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #0c4a6e, #0369a1);
    bottom: -150px;
    right: -50px;
    animation-delay: 7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #38bdf8, #7dd3fc);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.gallery-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.abstract-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(14, 165, 233, 0.3) 0%, 
        rgba(56, 189, 248, 0.2) 50%, 
        rgba(125, 211, 252, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover .abstract-overlay {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(12, 74, 110, 0.95) 0%, 
        rgba(3, 105, 161, 0.90) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.gallery-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: rotate(90deg) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.overlay-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.gallery-cta {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 15px;
    }
    
    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
}

/* ================================
   TESTIMONIALS SECTION
================================ */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.rating {
    color: #fbbf24;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ================================
   FAQ SECTION
================================ */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background-color: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-color);
}

.faq-question h3 {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
}

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-item h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.appointment-form {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

.appointment-form h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ================================
   FOOTER
================================ */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p,
.footer-col li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-col i {
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================
   PAGE HEADER
================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
}

/* ================================
   ABOUT PAGE
================================ */
/* About Page Header */
.about-page-header {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-page-header .header-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.about-page-header .header-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(12, 74, 110, 0.88) 0%,
        rgba(3, 105, 161, 0.85) 50%,
        rgba(14, 165, 233, 0.82) 100%
    );
}

.about-page-header .container {
    position: relative;
    z-index: 1;
}

.about-header-content {
    text-align: center;
    color: var(--white);
}

.about-page-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.about-page-header .header-badge i {
    font-size: 1.2rem;
}

.about-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.about-header-content > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.about-page-header .header-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-page-header .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-page-header .stat-item i {
    font-size: 1.8rem;
    color: #fbbf24;
}

.about-page-header .stat-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

.about-page-header .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.about-page-header .scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-page-header .scroll-indicator i {
    font-size: 1.5rem;
}

/* About Detail Section */
.about-detail-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.about-detail-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.about-detail-image {
    position: relative;
}

.about-detail-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    transition: transform 0.4s ease;
}

.about-detail-image:hover img {
    transform: scale(1.02);
}

.about-detail-text {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.about-detail-text h2 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.about-detail-text h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 600;
}

.about-detail-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Qualifications, Expertise, Philosophy, Locations Sections */
.qualifications-section,
.expertise-section,
.philosophy-section,
.locations-section {
    padding: 80px 0;
}

.qualifications-section {
    background: var(--light-color);
}

.qualifications-section .section-badge,
.expertise-section .section-badge,
.philosophy-section .section-badge,
.locations-section .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(3, 105, 161, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.qualifications-section .section-header,
.expertise-section .section-header,
.philosophy-section .section-header,
.locations-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.qualifications-section .section-header h2,
.expertise-section .section-header h2,
.philosophy-section .section-header h2,
.locations-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.qualifications-section .section-header p,
.expertise-section .section-header p,
.philosophy-section .section-header p,
.locations-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.qualification-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.qualification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.qualification-card:hover::before {
    transform: scaleX(1);
}

.qualification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.qual-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(3, 105, 161, 0.1));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.qual-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.qualification-card:hover .qual-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.qualification-card:hover .qual-icon i {
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.qualification-card h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.qualification-card ul {
    text-align: left !important;
}

.qualification-card ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Expertise Section */
.expertise-section {
    background: linear-gradient(to bottom, #f0f9ff 0%, #e0f2fe 100%);
}

.expertise-list {
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-item {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    padding: 35px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.expertise-item:hover::before {
    transform: scaleY(1);
}

.expertise-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
}

.expertise-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.expertise-item:hover i {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.expertise-item h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.expertise-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--light-color);
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.philosophy-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.philosophy-card:hover::before {
    transform: scaleX(1);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.phil-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(3, 105, 161, 0.1));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.phil-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.philosophy-card:hover .phil-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.philosophy-card:hover .phil-icon i {
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.philosophy-card h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Locations Section (About Page) */
.locations-section {
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.location-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.location-icon {
    width: 80px;
    height: 80px;
    margin: -40px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    transition: all 0.4s ease;
}

.location-icon i {
    font-size: 2rem;
    color: var(--white);
}

.location-card:hover .location-icon {
    transform: scale(1.1) rotate(5deg);
}

.location-card::before {
    content: '';
    display: block;
    height: 80px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(3, 105, 161, 0.1));
}

.location-card > div:last-child {
    padding: 0 35px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-card h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.location-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.location-card strong {
    color: var(--dark-color);
    font-weight: 600;
}

.location-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-page-header {
        padding: 100px 0 60px;
    }
    
    .about-header-content h1 {
        font-size: 2.2rem;
    }
    
    .about-page-header .header-stats {
        gap: 20px;
    }
    
    .about-page-header .stat-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .about-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-detail-text {
        padding: 30px;
    }
    
    .qualifications-grid,
    .philosophy-content,
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   CLINIC LOCATIONS SECTION
================================ */
.locations-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.locations-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.location-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.03) 0%, transparent 50%);
}

.locations-section .container {
    position: relative;
    z-index: 1;
}

.locations-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.locations-header h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
}

/* ================================
   CLINIC LOCATION CARDS â€” NEW DESIGN
================================ */
/* === LOCATION CARD REDESIGN START === */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 44px;
    align-items: stretch;
}

.location-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10, 40, 80, 0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(14, 165, 233, 0.10);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(10, 40, 80, 0.16);
}

/* Top accent stripe */
.location-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.location-card.card-featured::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.location-card.card-green::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

/* Image area — simple, bulletproof */
.loc-img-wrap {
    position: relative;
    width: 100%;
    height: 205px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
    background: #cce7f7;
}

.loc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0; padding: 0; border: none;
    transition: transform 0.55s ease;
}

.location-card:hover .loc-img-wrap img {
    transform: scale(1.07);
}

.loc-img-gradient {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(to bottom, transparent, rgba(6, 28, 55, 0.68));
    pointer-events: none;
    z-index: 1;
}

.loc-num {
    position: absolute;
    bottom: 12px;
    left: 18px;
    z-index: 2;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.20);
    line-height: 1;
    letter-spacing: -2px;
    font-style: italic;
    pointer-events: none;
    user-select: none;
}

.loc-badge {
    position: absolute;
    top: 16px;
    right: 14px;
    z-index: 3;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.63rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 3px 12px rgba(14, 165, 233, 0.45);
}

.loc-badge.featured {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.45);
}

/* Content body */
.loc-body {
    padding: 20px 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.loc-title {
    color: #0b1f3a;
    font-size: 1.07rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 13px;
    letter-spacing: -0.3px;
    padding-bottom: 13px;
    border-bottom: 1.5px dashed #dbeafe;
}

/* Address row */
.loc-address {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 15px;
}

.loc-address > i {
    color: #0ea5e9;
    font-size: 0.82rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.location-card.card-featured .loc-address > i {
    color: #f59e0b;
}

.location-card.card-green .loc-address > i {
    color: #10b981;
}

.loc-address > span {
    color: #64748b;
    font-size: 0.79rem;
    line-height: 1.55;
}

/* Schedule + Timing 2-col grid */
.loc-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.loc-meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 12px 10px;
    background: #f8fafd;
    border-radius: 12px;
    border: 1px solid #e8f0f9;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.loc-meta-item:hover {
    background: #eff8ff;
    border-color: #bae6fd;
}

.loc-meta-item > i {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: #fff;
    font-size: 0.68rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.location-card.card-featured .loc-meta-item > i {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.location-card.card-green .loc-meta-item > i {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.meta-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #94a3b8;
    line-height: 1;
    margin-bottom: 4px;
}

.meta-val {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0b1f3a;
    line-height: 1.3;
}

/* Book Appointment button */
.loc-btn {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    font-size: 0.87rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
    background: transparent;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
}

.loc-btn:hover {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.30);
}

.location-card.card-featured .loc-btn {
    color: #f59e0b;
    border-color: #f59e0b;
}

.location-card.card-featured .loc-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.30);
}

.location-card.card-green .loc-btn {
    color: #10b981;
    border-color: #10b981;
}

.location-card.card-green .loc-btn:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.30);
}

/* Footer note */
.locations-footer {
    margin-top: 16px;
}

.location-note {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef9c3 100%);
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    max-width: 900px;
    margin: 0 auto;
}

.location-note i {
    font-size: 1.4rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.location-note p {
    color: #78350f;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.location-note a {
    color: #0ea5e9;
    font-weight: 600;
    text-decoration: underline;
}

.location-note a:hover {
    color: #0c4a6e;
}

/* Responsive */
@media (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .locations-section {
        padding: 50px 0;
    }
    .locations-header h2 {
        font-size: 1.8rem;
    }
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .loc-img-wrap {
        height: 190px;
    }
    .location-note {
        flex-direction: column;
        text-align: center;
        padding: 14px 16px;
    }
}

/* ================================
   IMAGE POPUP MODAL
================================ */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    text-align: center;
    color: var(--white);
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.modal-close:hover,
.modal-close:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    padding: 20px;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content-wrapper {
        max-width: 95%;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
        width: 40px;
        height: 40px;
    }
    
    .modal-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        padding: 10px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
    
    .modal-caption {
        font-size: 0.95rem;
        padding: 15px;
    }
}

/* ================================
   SERVICES PAGE
================================ */
/* Services Page Header */
.services-page-header {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.services-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-page-header .header-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.services-page-header .header-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(12, 74, 110, 0.88) 0%,
        rgba(3, 105, 161, 0.85) 50%,
        rgba(14, 165, 233, 0.82) 100%
    );
}

.services-page-header .container {
    position: relative;
    z-index: 1;
}

.services-header-content {
    text-align: center;
    color: var(--white);
}

.services-page-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.services-page-header .header-badge i {
    font-size: 1.2rem;
}

.services-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.services-header-content > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.services-page-header .header-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.services-page-header .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-page-header .stat-item i {
    font-size: 1.8rem;
    color: #fbbf24;
}

.services-page-header .stat-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

.services-page-header .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.services-page-header .scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.services-page-header .scroll-indicator i {
    font-size: 1.5rem;
}

/* Services Detailed Section */
.services-detailed-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.services-detailed-section .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(3, 105, 161, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.services-detailed-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-detailed-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.services-detailed-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-detailed {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    margin-bottom: 50px;
    padding: 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.service-detailed:hover::before {
    transform: scaleY(1);
}

.service-detailed:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.service-detailed.reverse {
    grid-template-columns: 1fr 200px;
}

.service-detailed.reverse .service-detailed-content {
    order: -1;
}

.service-detailed-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(3, 105, 161, 0.1));
    transition: all 0.4s ease;
}

.service-detailed-icon i {
    font-size: 4.5rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.service-detailed:hover .service-detailed-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-detailed:hover .service-detailed-icon i {
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-detailed-content h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-detailed-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-detailed-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detailed-content li {
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.service-detailed-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detailed-content li::after {
    content: 'âœ“';
    position: absolute;
    left: 5px;
    top: 3px;
    color: var(--white);
    font-weight: bold;
    font-size: 0.85rem;
}

.service-detailed-content li:hover {
    padding-left: 40px;
    color: var(--dark-color);
}

/* Treatment Approach Section */
.treatment-approach-section {
    padding: 80px 0;
    background: var(--light-color);
}

.treatment-approach-section .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(3, 105, 161, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.treatment-approach-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.treatment-approach-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.treatment-approach-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.approach-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.approach-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    transition: all 0.4s ease;
}

.approach-card:hover .approach-number {
    transform: scale(1.15) rotate(360deg);
}

.approach-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.approach-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f0f9ff 0%, #e0f2fe 100%);
}

.benefits-section .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(3, 105, 161, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.benefits-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefits-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.benefit-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary-color);
}

.benefit-card h3 {
    color: var(--dark-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0c4a6e 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-page-header {
        padding: 100px 0 60px;
    }
    
    .services-header-content h1 {
        font-size: 2.2rem;
    }
    
    .services-page-header .header-stats {
        gap: 20px;
    }
    
    .services-page-header .stat-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .service-detailed {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .service-detailed.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-detailed.reverse .service-detailed-content {
        order: 0;
    }
    
    .service-detailed-icon {
        width: 120px;
        height: 120px;
    }
    
    .service-detailed-icon i {
        font-size: 3rem;
    }
    
    .approach-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ================================
   GALLERY PAGE
================================ */
/* Gallery Page Header */
.gallery-page-header {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.gallery-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.header-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.header-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(12, 74, 110, 0.85) 0%,
        rgba(3, 105, 161, 0.8) 50%,
        rgba(14, 165, 233, 0.75) 100%
    );
}

.gallery-page-header .container {
    position: relative;
    z-index: 1;
}

.gallery-header-content {
    text-align: center;
    color: var(--white);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.header-badge i {
    font-size: 1.2rem;
}

.gallery-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-header-content > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 1.8rem;
    color: #fbbf24;
}

.stat-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Gallery Filter Section */
.gallery-filter-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.filter-header {
    text-align: center;
    margin-bottom: 40px;
}

.filter-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.filter-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.4s ease;
    z-index: 0;
}

.filter-btn i,
.filter-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.filter-btn i {
    font-size: 1.2rem;
}

.filter-btn span {
    font-weight: 600;
}

.filter-count {
    padding: 3px 10px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    min-width: 30px;
    text-align: center;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover i,
.filter-btn:hover span,
.filter-btn.active i,
.filter-btn.active span {
    color: var(--white);
}

.filter-btn:hover .filter-count,
.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Main Gallery Section */
.main-gallery-section {
    padding: 80px 0;
    background: var(--light-color);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.3);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(12, 74, 110, 0.7) 50%,
        rgba(12, 74, 110, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gallery-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.overlay-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.gallery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    z-index: 1;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.gallery-modal-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.gallery-modal-content {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.gallery-modal-caption {
    text-align: center;
    color: var(--white);
    padding: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    padding: 20px;
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.gallery-modal-nav.prev {
    left: 30px;
}

.gallery-modal-nav.next {
    right: 30px;
}

.gallery-modal-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

/* Locations Gallery Section */
.locations-gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

.locations-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.location-gallery-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.location-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.location-gallery-image {
    height: 250px;
    overflow: hidden;
}

.location-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-gallery-card:hover .location-gallery-image img {
    transform: scale(1.1);
}

.location-gallery-info {
    padding: 35px 30px;
}

.location-gallery-info h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.location-gallery-info p {
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.location-gallery-info p i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.location-gallery-info .btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}

/* Gallery Features Section */
.gallery-features-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f0f9ff 0%, #e0f2fe 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.15);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-page-header {
        padding: 100px 0 60px;
    }
    
    .gallery-header-content h1 {
        font-size: 2.2rem;
    }
    
    .header-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-card {
        height: 350px;
    }
    
    .gallery-modal-close {
        top: 15px;
        right: 15px;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }
    
    .gallery-modal-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-modal-nav.prev {
        left: 10px;
    }
    
    .gallery-modal-nav.next {
        right: 10px;
    }
    
    .locations-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   CONTACT PAGE
================================ */
/* Contact Page Header */
.contact-page-header {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-page-header .header-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.contact-page-header .header-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(12, 74, 110, 0.88) 0%,
        rgba(3, 105, 161, 0.85) 50%,
        rgba(14, 165, 233, 0.82) 100%
    );
}

.contact-page-header .container {
    position: relative;
    z-index: 1;
}

.contact-header-content {
    text-align: center;
    color: var(--white);
}

.contact-page-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.contact-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-header-content > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.header-quick-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 600;
}

.quick-action-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.quick-action-btn i {
    font-size: 1.2rem;
}

.contact-page-header .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.contact-page-header .scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-page-header .scroll-indicator i {
    font-size: 1.5rem;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-info-section > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleY(1);
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(3, 105, 161, 0.1));
    flex-shrink: 0;
}

.info-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-details h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-details p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.info-link:hover {
    gap: 10px;
}

.info-link::after {
    content: 'â†’';
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.quick-contact-buttons .btn {
    flex: 1;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Appointment Form Section */
.appointment-form-section {
    background: var(--white);
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.form-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.form-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    margin-top: 35px;
}

.form-message {
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.4s ease;
}

.form-message i {
    font-size: 1.3rem;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 20px;
    text-align: center;
}

.btn-full {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px;
    margin-top: 10px;
}

/* Clinic Locations Detailed */
.clinic-locations-detailed {
    padding: 80px 0;
    background: var(--light-color);
}

.clinic-locations-detailed .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(3, 105, 161, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.locations-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.location-detailed-card {
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.location-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.location-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, 
        rgba(14, 165, 233, 0.05) 0%, 
        rgba(3, 105, 161, 0.05) 100%);
    border-bottom: 3px solid var(--primary-color);
}

.location-header i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.location-header h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
}

.location-details {
    padding: 30px;
}

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(14, 165, 233, 0.05);
}

.detail-item i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.detail-item strong {
    color: var(--dark-color);
}

.location-detailed-card .btn {
    margin: 0 30px 30px;
    width: calc(100% - 60px);
    justify-content: center;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--light-color);
}

.map-container iframe {
    display: block;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f0f9ff 0%, #e0f2fe 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-page-header {
        padding: 100px 0 60px;
    }
    
    .contact-header-content h1 {
        font-size: 2.2rem;
    }
    
    .header-quick-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .quick-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .appointment-form-section {
        padding: 35px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .locations-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
}

/* ================================
   CTA SECTION
================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 968px) {
    .logo-name {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-icon i {
        font-size: 1.3rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 255, 0.98) 100%);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.4s ease;
        box-shadow: 0 10px 40px rgba(14, 165, 233, 0.2);
        padding: 30px 0;
        gap: 0;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0 20px;
    }

    .nav-menu a {
        width: 100%;
        justify-content: center;
        padding: 18px 25px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .nav-menu a i {
        font-size: 1.2rem;
    }

    .nav-menu li:last-child {
        margin-bottom: 20px;
    }

    .nav-menu li:last-child::after {
        content: '';
        display: block;
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        margin: 20px auto 0;
    }

    .nav-appointment-btn {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-section {
        min-height: auto;
        height: auto;
        padding: 80px 0 40px;
    }

    .hero-background-patterns {
        display: none;
    }

    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .hero-content-side {
        padding: 20px;
    }

    .hero-image-side {
        display: none;
    }

    .hero-badge-tag {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        padding: 12px 18px;
    }

    .stat-item span {
        font-size: 0.85rem;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .slider-btn.prev {
        left: 20px;
    }

    .slider-btn.next {
        right: 20px;
    }

    .about-content,
    .contact-content,
    .about-detail-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 30px;
        gap: 30px;
    }

    .about-content::after {
        width: 100%;
        height: 45%;
        top: auto;
        bottom: 0;
        background: linear-gradient(180deg, rgba(224, 242, 254, 0) 0%, rgba(224, 242, 254, 0.22) 100%);
    }

    .about-image img {
        min-height: 360px;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .service-detailed,
    .service-detailed.reverse {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon i {
        font-size: 1.1rem;
    }

    .logo-name {
        font-size: 0.95rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .nav-menu {
        top: 75px;
        height: calc(100vh - 75px);
        padding: 20px 0;
    }

    .nav-menu a {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .nav-menu a i {
        font-size: 1.1rem;
    }

    .nav-toggle span {
        width: 24px;
        height: 2.5px;
    }

    .hero-section {
        height: auto;
        min-height: auto;
        padding: 60px 0 30px;
    }

    .hero-split-layout {
        padding: 0 20px;
        gap: 30px;
    }

    .hero-content-side {
        padding: 10px;
    }

    .hero-content-side::before {
        display: none;
    }

    .hero-image-side {
        display: none;
    }

    .hero-badge-tag {
        padding: 8px 16px;
        font-size: 0.75rem;
        margin-bottom: 18px;
        gap: 10px;
    }

    .badge-pulse {
        width: 10px;
        height: 10px;
    }

    .badge-text i {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
        line-height: 1.2;
        letter-spacing: -0.8px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }

    .stat-card {
        padding: 14px;
        gap: 12px;
    }

    .stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about-section {
        padding: 70px 0;
    }

    .about-content {
        padding: 22px;
        border-radius: 18px;
    }

    .about-image img {
        min-height: 280px;
        border-radius: 14px;
    }

    .about-image-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: center;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-highlights {
        gap: 10px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-buttons,
    .quick-contact-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* ================================
   RESPONSIVE HERO SECTION
================================ */
@media (max-width: 1200px) {
    .hero-layout {
        gap: 60px;
    }

    .hero-heading {
        font-size: 3.8rem;
    }

    .floating-info-card.card-top {
        right: -5%;
    }

    .floating-info-card.card-bottom {
        left: -8%;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        right: -5%;
    }

    .exp-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        min-height: auto;
    }

    .hero-content-inner {
        max-width: 100%;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto 28px;
    }

    .hero-heading {
        font-size: 3.2rem;
        text-align: center;
    }

    .heading-line-1,
    .heading-line-2,
    .heading-line-3 {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust-bar {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        margin-top: 40px;
    }

    .floating-info-card.card-top {
        top: 5%;
        right: 5%;
    }

    .floating-info-card.card-bottom {
        bottom: 8%;
        left: 5%;
    }

    .experience-badge {
        right: 10px;
        width: 110px;
        height: 110px;
    }

    .exp-number {
        font-size: 2rem;
    }

    .exp-text {
        font-size: 0.8rem;
    }

    .badge-number {
        font-size: 2rem;
    }

    .badge-years {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
        background: linear-gradient(180deg, #ffffff 0%, #fafcfe 30%, var(--hero-lighter) 70%, #ffffff 100%);
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-layout {
        gap: 40px;
    }

    .hero-content-inner {
        text-align: center;
    }

    .hero-badge {
        padding: 12px 24px;
        font-size: 0.9rem;
        margin: 0 auto 28px;
    }

    .badge-label {
        font-size: 0.85rem;
    }

    .hero-heading {
        font-size: 2.5rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
        text-align: center;
    }

    .heading-line-1,
    .heading-line-2,
    .heading-line-3 {
        display: block;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }

    .hero-stat-item {
        padding: 18px;
        max-width: 100%;
        margin: 0 auto;
    }

    .stat-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 16px 32px;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .trust-divider {
        display: none;
    }

    .hero-visual-wrapper {
        max-width: 100%;
    }

    .floating-info-card {
        padding: 16px 20px;
        gap: 12px;
    }

    .info-card-icon {
        width: 46px;
        height: 46px;
        font-size: 1.4rem;
    }

    .info-card-title {
        font-size: 0.95rem;
    }

    .info-card-subtitle {
        font-size: 0.8rem;
    }

    .floating-info-card.card-top {
        top: -5%;
        right: 0;
    }

    .floating-info-card.card-bottom {
        bottom: -5%;
        left: 0;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        right: 5px;
        bottom: 40%;
        top: auto;
        transform: none;
    }

    .exp-number {
        font-size: 1.8rem;
    }

    .exp-text {
        font-size: 0.75rem;
    }

    .badge-number {
        font-size: 1.8rem;
    }

    .badge-years {
        font-size: 0.75rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        opacity: 0.15;
    }

    .shape {
        opacity: 0.03;
    }

    .grid-pattern {
        opacity: 0.3;
    }
}

/* Medium Mobile Devices */
@media (max-width: 600px) {
    .hero-section {
        background: linear-gradient(180deg, #ffffff 0%, #fafcfe 20%, var(--hero-lighter) 50%, #fafcfe 80%, #ffffff 100%);
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats-grid {
        gap: 14px;
    }

    .hero-stat-item {
        padding: 17px;
    }

    .stat-icon-modern {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .stat-value {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 90px 0 50px;
        background: linear-gradient(180deg, #ffffff 0%, #fafcfe 25%, var(--hero-lighter) 60%, #fafcfe 85%, #ffffff 100%);
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-heading {
        font-size: 2rem;
        letter-spacing: -0.5px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.6;
    }

    .hero-badge {
        padding: 10px 20px;
        gap: 10px;
    }

    .badge-dot {
        width: 8px;
        height: 8px;
    }

    .badge-icon {
        font-size: 0.9rem;
    }

    .badge-label {
        font-size: 0.8rem;
    }

    .hero-stats-grid {
        gap: 12px;
    }

    .hero-stat-item {
        padding: 16px;
        max-width: 100%;
    }

    .stat-icon-modern {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-trust-bar {
        width: 100%;
    }

    .trust-item {
        font-size: 0.85rem;
        justify-content: center;
    }

    .floating-info-card {
        padding: 12px 16px;
        gap: 10px;
    }

    .info-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .info-card-title {
        font-size: 0.85rem;
    }

    .info-card-subtitle {
        font-size: 0.75rem;
    }

    .experience-badge {
        width: 85px;
        height: 85px;
        border-width: 4px;
    }

    .exp-number {
        font-size: 1.5rem;
    }

    .exp-text {
        font-size: 0.7rem;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .badge-years {
        font-size: 0.7rem;
    }

    .scroll-indicator {
        display: none;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        opacity: 0.1;
    }

    .shape {
        opacity: 0.02;
    }

    .grid-pattern {
        opacity: 0.2;
    }
}

/* ================================
   MOBILE BOTTOM NAVIGATION
================================ */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 8px 0 max(8px, env(safe-area-inset-bottom));
        justify-content: space-around;
        align-items: center;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-light);
        text-decoration: none;
        font-size: 0.75rem;
        padding: 8px 12px;
        transition: all 0.3s ease;
        flex: 1;
        max-width: 80px;
    }

    .mobile-nav-item i {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

    .mobile-nav-item span {
        font-size: 0.7rem;
        font-weight: 500;
    }

    .mobile-nav-item.active {
        color: var(--primary-color);
    }

    .mobile-nav-item.active i {
        transform: scale(1.1);
    }

    /* Add padding to body to prevent content from being hidden behind the mobile nav */
    body {
        padding-bottom: 70px;
    }
}

/* ================================
   ABOUT PAGE - CLINIC LOCATIONS (aloc)
================================ */
.aloc-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.aloc-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.09);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aloc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(14,165,233,0.15);
}

.aloc-top {
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.aloc-blue  { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.aloc-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.aloc-green { background: linear-gradient(135deg, #10b981, #059669); }

.aloc-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: 3px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.aloc-card:hover .aloc-icon {
    transform: scale(1.1) rotate(5deg);
}

.aloc-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.aloc-top h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.aloc-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.aloc-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: #475569;
}

.aloc-row i {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    font-size: 0.9rem;
}

.aloc-blue  ~ .aloc-body .aloc-row i,
.aloc-card:nth-child(1) .aloc-row i { color: #0ea5e9; }
.aloc-card:nth-child(2) .aloc-row i { color: #f59e0b; }
.aloc-card:nth-child(3) .aloc-row i { color: #10b981; }

.aloc-row a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
}
.aloc-row a:hover { text-decoration: underline; }

.aloc-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #fff;
    margin-top: auto;
    transition: opacity 0.3s ease, transform 0.2s ease;
}
.aloc-btn:hover { opacity: 0.88; transform: translateY(-2px); }

.aloc-btn-blue  { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.aloc-btn-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.aloc-btn-green { background: linear-gradient(135deg, #10b981, #059669); }

@media (max-width: 992px) {
    .aloc-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
}
