/* style.css */
:root {
    --primary: #2962ff;
    --primary-light: rgba(41, 98, 255, 0.08);
    --secondary: #00bfa5;
    --secondary-light: rgba(0, 191, 165, 0.08);
    --text-dark: #0f172a;
    --text-muted: #475569;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* International Premium Transitions & Shadows */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.section { padding: 100px 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 16px rgba(41, 98, 255, 0.25);
}

.btn-primary:hover {
    background: #1e4bd8;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(41, 98, 255, 0.35);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
}

.btn-round { border-radius: 50px; }
.shadow-lg { box-shadow: 0 10px 20px -5px rgba(0,0,0,0.15); }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo img {
    height: 35px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Tapit Dropdown Styles */
.city-switcher-group, .contact-group {
    position: relative;
}

.city-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    border: 1px solid #e2e8f0;
    padding: 6px 12px 6px 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.city-btn:hover {
    background: #e2e8f0;
}

.city-btn i.bx-chevron-down {
    color: var(--text-muted);
}

.city-dropdown, .contact-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.contact-dropdown {
    right: 0;
    left: auto;
    width: 250px;
}

.city-switcher-group:hover .city-dropdown,
.contact-group:hover .contact-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-inner {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14.5px;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 180px;
    transition: var(--transition-fast);
}

.dropdown-item:hover, .dropdown-item.active {
    background: var(--bg-light);
    color: var(--text-dark);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.contact-btn:hover {
    color: var(--text-dark);
}

.icon-circle {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
}

.dropdown-body {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.contact-item:hover {
    background: var(--bg-light);
}

.contact-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bg-purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.bg-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.bg-green { background: rgba(34, 197, 94, 0.1); color: #22c55e; }

.contact-text .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.2;
}

.contact-text .value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    overflow: hidden;
    background: var(--bg-light);
}

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite alternate cubic-bezier(0.5, 0, 0.5, 1);
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.shape-1 {
    top: -15%; left: -10%;
    width: 600px; height: 600px;
    background: var(--primary);
}

.shape-2 {
    bottom: -10%; right: -5%;
    width: 500px; height: 500px;
    background: var(--secondary);
    animation-delay: -10s;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    color: var(--primary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid rgba(255,255,255,0.5);
}

.stat-item i {
    color: var(--secondary);
    font-size: 22px;
}

/* Booking Card with Premium Glassmorphism */
.hero-form-wrapper {
    flex: 0 0 460px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.08);
}

.booking-card h3 {
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.booking-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.booking-form .input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-fast);
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
    line-height: 1.5;
}

.input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
    background: #fff;
}

/* Trust Stats */
.stats-section {
    padding: 100px 0;
    background: #fff;
}

.stats-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.stats-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--bg-light);
    padding: 40px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: #fff;
}

.stat-number {
    font-size: 3.5rem;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 14.5px;
    color: var(--text-muted);
}

.stats-text {
    flex: 0 0 400px;
}

.stats-text h2 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 25px;
}

.stats-decoration {
    animation: spin 20s linear infinite;
    display: inline-block;
}

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

/* Services */
.services-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

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

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

.service-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

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

.service-card .icon-wrapper {
    width: 65px; height: 65px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 32px;
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Doctors Section */
.doctors-section {
    padding: 120px 0;
    background: #fff;
}

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

.doctor-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.doctor-card:nth-child(-n+3) {
    grid-column: span 4;
}

.doctor-card:nth-child(n+4) {
    grid-column: span 3;
}

.doctor-card:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.doctor-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 10px 20px rgba(41, 98, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.doctor-info p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 25px;
    font-weight: 500;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.btn-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.doctor-card:hover .btn-link i {
    transform: translateY(-3px) translateX(3px);
}

.btn-link:hover {
    color: var(--secondary);
}

/* CTA */
.cta-section {
    background: #0f172a;
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.cta-container {
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 750px;
}

.cta-content h2 {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.cta-content p {
    color: #94a3b8;
    font-size: 1.25rem;
    margin-bottom: 45px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-actions .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(255,255,255,0.15);
}

.cta-actions .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.25);
}

/* Footer */
.footer {
    background: #020617;
    color: #94a3b8;
    padding: 100px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 1.8fr;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 30px;
}

.footer-brand p {
    margin-bottom: 30px;
    max-width: 450px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer h4 {
    color: #f8fafc;
    font-size: 1.3rem;
    margin-bottom: 30px;
    letter-spacing: 0;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.footer ul li i {
    color: var(--secondary);
    font-size: 20px;
}

.footer ul a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Delay modifiers */
.stat-card:nth-child(2) { transition-delay: 0.1s; }
.stat-card:nth-child(3) { transition-delay: 0.2s; }

.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }

.doctor-card:nth-child(2) { transition-delay: 0.1s; }
.doctor-card:nth-child(3) { transition-delay: 0.2s; }
.doctor-card:nth-child(4) { transition-delay: 0.3s; }

/* How It Works Timeline */
.timeline-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    gap: 20px;
    position: relative;
}

.timeline-step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.timeline-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.timeline-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-connector {
    flex: 0 0 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-light), #e2e8f0, var(--bg-light));
    margin-top: 40px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.patient-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.patient-info span {
    font-size: 0.85rem;
    color: var(--primary);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* WhatsApp Floating Button */
.wa-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 1000;
    transition: var(--transition-fast);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.wa-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128C7E;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero { padding-top: 130px; padding-bottom: 80px; }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 { font-size: 3.2rem; }
    
    .hero-form-wrapper { width: 100%; max-width: 550px; flex: auto; }
    
    .services-grid, .doctors-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .doctor-card:nth-child(n) { grid-column: span 1; }
    
    .stats-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    
    .stats-text { flex: auto; }
    
    .footer-container { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 40px; 
    }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-md);
        gap: 25px;
    }
    
    .nav-links.active { display: flex; }
    
    .nav-actions .btn, .contact-group { display: none; }
    .mobile-toggle { display: block; }
    
    .services-grid, .doctors-grid, .stats-cards, .reviews-grid { grid-template-columns: 1fr; }
    
    .timeline-grid { flex-direction: column; gap: 40px; }
    .timeline-connector { display: none; }
    
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; justify-content: center; text-align: center; gap: 10px; }
    
    .cta-actions { flex-direction: column; }
    
    .hero h1 { font-size: 2.5rem; }
    
    .stat-number { font-size: 3rem; }
    .stats-text h2 { font-size: 2.5rem; }
}
