/* Enhanced Global Styles with Paradise Green Color Scheme */
:root {
    --primary-color: #10b981;
    --secondary-color: #06b6d4;
    --accent-color: #059669;
    --dark-color: #1e293b;
    --light-color: #f0fdfa;
    --text-color: #334155;
    --gray-color: #64748b;
    --light-gray: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.2);
    --gold-gradient: linear-gradient(135deg, #fbbf24, #f59e0b);
    --primary-gradient: linear-gradient(135deg, #10b981, #059669);
    --secondary-gradient: linear-gradient(135deg, #06b6d4, #0891b2);
    --success-gradient: linear-gradient(135deg, #10b981, #059669);
    --glass-effect: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
        --bg: #ffffff;
        --surface: #f8fafc;
        --surface-alt: #f1f5f9;
        --border-color: #e2e8f0;
        --headline-color: #0f172a;
        --link-color: #0d9488;
        --link-hover: #0f766e;
        --focus-ring: 0 0 0 3px rgba(6,182,212,0.45);
        --radius-sm: 6px;
        --radius-md: 12px;
        --radius-lg: 18px;
        --shadow-sm: 0 2px 4px rgba(0,0,0,.06);
        --shadow-md: 0 6px 16px rgba(0,0,0,.12);
        --shadow-lg: 0 14px 42px rgba(0,0,0,.18);
        --transition: .28s cubic-bezier(.4,0,.2,1);
        --hero-overlay: linear-gradient(180deg,rgba(0,0,0,.35) 0%,rgba(0,0,0,.55) 80%);
        --heading-color-light:#0f172a;
        --heading-color-dark:#ffffff;
}

[data-theme="dark"] {
        --primary-color: #10b981;
        --secondary-color: #0ea5e9;
        --accent-color: #0d9488;
        --dark-color: #f1f5f9;
        --light-color: #0f172a;
        --text-color: #e2e8f0;
        --gray-color: #94a3b8;
        --light-gray: #334155;
        --bg: #0f172a;
        --surface: #1e293b;
        --surface-alt: #24324a;
        --border-color: #1e293b;
        --headline-color: #f8fafc;
        --link-color: #22d3ee;
        --link-hover: #67e8f9;
        --heading-color-light:#0f172a; /* keep for clarity */
        --heading-color-dark:#ffffff;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --primary-color: #10b981;
        --secondary-color: #0ea5e9;
        --accent-color: #0d9488;
        --dark-color: #f1f5f9;
        --light-color: #0f172a;
        --text-color: #e2e8f0;
        --gray-color: #94a3b8;
        --light-gray: #334155;
        --bg-color: #0f172a;
        --bg-alt: #1e293b;
        --border-color: #1e293b;
        --headline-color: #f8fafc;
        --link-color: #22d3ee;
        --link-hover: #67e8f9;
    }
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg);
    scroll-behavior: smooth;
    overflow-x: hidden;
    transition: background-color .4s ease, color .3s ease;
}

body, body * { outline-offset: 2px; }

/* Accessibility focus */
:focus-visible {
    box-shadow: var(--focus-ring);
    outline: 2px solid transparent;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 14px;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    text-decoration: none;
    font-size: 0.9rem;
}
.skip-link:focus { top: 0; }

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Apply subtle animations */
.location-card {
    animation: fadeInUp 0.6s ease-out;
}

.location-card:nth-child(2) {
    animation-delay: 0.2s;
}

.hours-location {
    animation: slideInLeft 0.6s ease-out;
}

.hours-location:nth-child(2) {
    animation: slideInRight 0.6s ease-out;
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.section-header h2 {
    font-size: clamp(1.9rem,2.2rem + .4vw,2.6rem);
    margin-bottom: 10px;
    color: var(--heading-color-light);
    font-weight:800;
}
[data-theme="dark"] .section-header h2 { color: var(--heading-color-dark); text-shadow:0 2px 6px rgba(0,0,0,.45); }

.about-text h3, .qualifications h4, .award-card h3, .service-card h3, .stat-item p, .location-header h4, .hours-card h4, .hours-location h4, .contact-card h3, .faq-item h3 {
    color: var(--heading-color-light);
}
[data-theme="dark"] .qualifications h4,
[data-theme="dark"] .award-card h3,
[data-theme="dark"] .service-card h3,
[data-theme="dark"] .stat-item p,
[data-theme="dark"] .location-header h4,
[data-theme="dark"] .hours-card h4,
[data-theme="dark"] .hours-location h4,
[data-theme="dark"] .contact-card h3,
[data-theme="dark"] .faq-item h3 { color: var(--heading-color-dark); text-shadow:0 1px 3px rgba(0,0,0,.6); }

.underline {
    height: 4px;
    width: 70px;
    background: var(--primary-color);
    margin: 0 auto;
    margin-top: 10px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

.secondary-btn {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    color: white;
    border: 2px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 50%, #155e75 100%);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.4);
    border-color: #06b6d4;
}

/* Header */
header {
    background-color: var(--bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo .site-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo p {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: flex-end;
}

nav {
    display: flex;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--headline-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Navigation special items */
.nav-theme-switcher {
    margin-left: 12px;
}

.nav-theme-switcher .theme-switcher {
    margin: 0;
}

.btn-book {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.btn-book:focus {
    box-shadow: var(--focus-ring);
    outline: none;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--headline-color);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background: var(--surface-alt);
}

.mobile-menu:focus {
    box-shadow: var(--focus-ring);
    outline: none;
}

/* Calendar Widget */
.appointment-booking {
    text-align: center;
    margin-top: 20px;
}

.appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.appointment-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.calendar-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-color);
    font-size: 0.9rem;
    padding: 16px;
    text-align: center;
    justify-content: center;
}

.calendar-fallback {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
}

/* Mobile responsive header */
@media (max-width: 900px) {
    .header-actions {
        gap: 16px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    .btn-book {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    header .container {
        position: relative;
        align-items: center;
    }
    
    .header-actions {
        position: relative;
        justify-content: flex-end;
        width: auto;
        align-items: center;
        margin-left: auto;
    }
    
    .mobile-menu {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1001;
        background: var(--surface-alt);
        border-radius: var(--radius-md);
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
        margin-right: 10px;
    }
    
    .nav-main {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .nav-main.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        background: var(--bg);
        margin: 0 20px;
        border-radius: var(--radius-lg);
        padding: 20px 0;
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        display: block;
        padding: 16px 24px;
        font-size: 1.1rem;
        color: var(--headline-color);
        transition: all 0.3s ease;
    }
    
    .nav-menu li a:hover {
        background: var(--surface-alt);
        color: var(--primary-color);
    }
    
    /* Mobile navigation special items */
    .nav-theme-switcher {
        margin-left: 0;
        padding: 16px 24px;
        display: flex;
        justify-content: center;
        background: var(--surface);
    }
    
    .nav-theme-switcher .theme-switcher {
        width: auto;
    }
}

nav ul li a {
    color: var(--headline-color);
.btn-book { margin-left:18px; padding:10px 20px; font-size:.9rem; }
.btn-book:focus { box-shadow: var(--focus-ring); }
[data-theme="dark"] .btn-book { color:#fff; }

@media (max-width:900px){
    .btn-book { padding:10px 16px; }
}
@media (max-width:768px){
    nav { position:relative; }
    .btn-book { width:100%; margin:12px 0 0 0; order:3; display:block; text-align:center; }
    nav ul.active + .btn-book { display:block; }
}
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(92, 107, 192, 0.8), rgba(92, 107, 192, 0.8)), url('https://images.unsplash.com/photo-1567601169793-0a9674bdb80f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.image-placeholder {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: #e3f2fd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
}

.image-placeholder i {
    font-size: 150px;
    color: var(--primary-color);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.qualifications {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-top: 30px;
}

.qualifications h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.qualifications ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.qualifications ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Services Section */
.services {
    padding: 100px 0;
}

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

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background-color: #e3f2fd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.service-card .icon i {
    font-size: 35px;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
}

/* Awards Section */
.awards {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
    color: white;
}

.awards .section-header h2 {
    color: white;
}

.awards .underline {
    background: #06b6d4;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.award-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: #06b6d4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.award-icon i {
    font-size: 35px;
    color: white;
}

.award-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #06b6d4;
}

.award-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.85)), url('https://images.unsplash.com/photo-1567601169793-0a9674bdb80f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1), rgba(6, 182, 212, 0.1));
    z-index: 1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

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

/* Revised hero heading hierarchy */
/* New hero adaptive heading */
.hero-title { font-size: clamp(2.2rem,4.2vw,3.6rem); line-height:1.05; font-weight:800; letter-spacing:.5px; position:relative; z-index:3; }
.hero-title-light { color:#ffffff; text-shadow:0 3px 18px rgba(0,0,0,.55),0 1px 2px rgba(0,0,0,.6); }
.hero-title-dark { color: #ffffff; text-shadow:0 2px 6px rgba(0,0,0,.15); }
[data-theme="dark"] .hero-title { color:#ffffff; }
.hero-sub { font-size:clamp(1.1rem,1.9vw,1.75rem); font-weight:600; margin-bottom:1rem; color:#e2fdf7; text-shadow:0 2px 10px rgba(0,0,0,.45); }
[data-theme="dark"] .hero-sub { color:#d1fae5; }
.hero-tagline { max-width:640px; font-size:clamp(.95rem,1.05rem + .2vw,1.2rem); line-height:1.55; font-weight:500; color:#f1f5f9; margin-bottom:1.75rem; text-shadow:0 2px 8px rgba(0,0,0,.5); }
[data-theme="dark"] .hero-tagline { color:#e2e8f0; }
.hero-align-left { text-align:left; }
.hero { position:relative; }
.hero::after { content:""; position:absolute; inset:0; background:var(--hero-overlay); z-index:1; }
.hero .hero-content { position:relative; z-index:2; }
.hero-ctas { display:flex; flex-wrap:wrap; gap:16px; }
.cta-main { font-size:1rem; }

/* Button system */
.btn { --btn-bg:var(--primary-gradient); --btn-color:#fff; --btn-shadow:var(--shadow-md); --btn-radius:var(--radius-md); border-radius:var(--btn-radius); box-shadow:var(--btn-shadow); padding:14px 26px; font-weight:600; display:inline-flex; align-items:center; gap:8px; line-height:1; position:relative; overflow:hidden; }
.btn-primary { background:var(--primary-gradient); color:#fff; border:1px solid rgba(255,255,255,.15); }
.btn-primary:hover { filter:brightness(1.05); transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.btn-ghost { background:rgba(255,255,255,.12); backdrop-filter:blur(6px); color:#fff; border:1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background:rgba(255,255,255,.2); }
[data-theme="dark"] .btn-ghost { background:rgba(255,255,255,.12); color:#fff; }
[data-theme="dark"] .btn-ghost:hover { background:rgba(255,255,255,.2); }

/* Theme Switcher */
.theme-switcher { position:relative; font-size:.85rem; }
.theme-switcher__button { display:flex; align-items:center; gap:6px; background:var(--surface-alt); color:var(--headline-color); padding:8px 14px; border-radius:var(--radius-md); border:1px solid var(--border-color); cursor:pointer; font-weight:600; box-shadow:var(--shadow-sm); transition:var(--transition); }
.theme-switcher__button:hover { background:var(--surface); }
[data-theme="dark"] .theme-switcher__button { background:var(--surface); color:#e2e8f0; border-color:#334155; }
.theme-switcher__menu { list-style:none; position:absolute; top:110%; right:0; min-width:170px; background:var(--surface); border:1px solid var(--border-color); border-radius:var(--radius-md); padding:6px; margin:0; box-shadow:var(--shadow-lg); display:none; z-index:300; }
[data-theme="dark"] .theme-switcher__menu { background:var(--surface); border-color:#334155; }
.theme-switcher__menu.open { display:block; }
.theme-switcher__menu li { padding:9px 36px 9px 34px; border-radius:var(--radius-sm); position:relative; cursor:pointer; font-weight:500; color:var(--headline-color); outline:none; }
.theme-switcher__menu li:hover, .theme-switcher__menu li[aria-checked="true"] { background:var(--primary-color); color:#fff; }
.theme-switcher__menu li .check { position:absolute; left:10px; opacity:0; transform:scale(.5); transition:var(--transition); }
.theme-switcher__menu li[aria-checked="true"] .check { opacity:1; transform:scale(1); }
[data-theme="dark"] .theme-switcher__menu li { color:#e2e8f0; }
.theme-switcher__chevron { font-size:.75rem; }

@media (max-width:768px){
    .hero-align-left { text-align:left; }
    .hero-ctas { flex-direction:row; }
}
/* Dark mode adjustments */
[data-theme="dark"] .hero { background: linear-gradient(135deg,#064e3b,#022c22), url('https://images.unsplash.com/photo-1567601169793-0a9674bdb80f?auto=format&fit=crop&w=1600&q=60'); background-size:cover; }
[data-theme="dark"] header { background-color: var(--bg); border-bottom: 1px solid var(--border-color); }
[data-theme="dark"] header.fixed { background-color: var(--bg) !important; }
[data-theme="dark"] nav { background: var(--bg); border-color: var(--border-color); }
[data-theme="dark"] .nav-menu li a { color: var(--text-color); }
[data-theme="dark"] .nav-menu li a:hover { background: var(--surface-alt); }
[data-theme="dark"] .qualifications h4 { color: var(--headline-color) !important; }
[data-theme="dark"] .qualifications ul li { color: var(--text-color) !important; }
[data-theme="dark"] .qualifications { 
    background-color: var(--surface);
    border-color: var(--border-color);
}
[data-theme="dark"] .about {
    background: var(--bg);
    color: var(--text-color);
}

[data-theme="dark"] .about .section-header h2 {
    color: var(--headline-color);
}

/* Clean about-text styles for dark mode */
[data-theme="dark"] .about-text {
    background-color: transparent;
    color: var(--text-color);
}

[data-theme="dark"] .about-text h3 {
    color: #e2e8f0;
}

[data-theme="dark"] .about-text p {
    color: #f1f5f9;
}

/* Dark mode typography improvements */
[data-theme="dark"] .site-title {
    color: #e2e8f0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .logo p {
    color: #94a3b8;
}

[data-theme="dark"] .hero-title-dark {
    color: #f1f5f9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Fix stat-item paragraph visibility in dark mode */
[data-theme="dark"] .stat-item p {
    color: #64748b;
}
[data-theme="dark"] .contact { background: linear-gradient(135deg,#0f172a,#1e293b); }
[data-theme="dark"] .contact-card { background: var(--surface); border-color: var(--border-color); }
[data-theme="dark"] .phone-link { background: linear-gradient(135deg, var(--surface), var(--surface-alt)); color: var(--primary-color); }
[data-theme="dark"] .phone-link:hover { background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); color: white; }
[data-theme="dark"] .clinic-hours .hours-item { color: var(--text-color); }
[data-theme="dark"] .clinic-hours .hours-item strong { color: var(--headline-color); }
[data-theme="dark"] .clinic-hours .time-slot { color: var(--text-color); }
[data-theme="dark"] .clinic-hours .day { color: var(--headline-color); }
[data-theme="dark"] .clinic-hours .time { color: var(--text-color); }
[data-theme="dark"] .hours-card { background: var(--surface); border-color: var(--border-color); }
[data-theme="dark"] .hours-card h4 { color: var(--headline-color); }
[data-theme="dark"] .service-card { background: linear-gradient(135deg,#1e293b,#0f172a); }
[data-theme="dark"] .service-card h3 { color: var(--headline-color); }
[data-theme="dark"] .service-card p { color: var(--gray-color); }
[data-theme="dark"] .location-card, [data-theme="dark"] .hours-location { background: linear-gradient(135deg,#1e293b,#0f172a); }
[data-theme="dark"] .footer-logo h3, [data-theme="dark"] .quick-links h4, [data-theme="dark"] .services-links h4 { color: var(--headline-color); }
[data-theme="dark"] footer { background:#020617; }

/* Mobile navigation dark mode */
[data-theme="dark"] .mobile-menu {
    color: var(--text-color);
}

[data-theme="dark"] .nav-main ul li a {
    color: var(--text-color);
}

[data-theme="dark"] .nav-main ul li a:hover {
    color: var(--headline-color);
}

/* Theme toggle */
.theme-toggle {
        margin-left: 15px;
        background: var(--primary-gradient);
        color:#fff;
        border:none;
        border-radius: 30px;
        padding:8px 16px;
        display:flex;
        align-items:center;
        gap:6px;
        cursor:pointer;
        font-weight:600;
        font-size:0.85rem;
        box-shadow:0 4px 12px rgba(0,0,0,.15);
        transition:background .3s, transform .3s;
}
.theme-toggle:hover { transform:translateY(-2px); }
.theme-toggle:active { transform:scale(.95); }

/* FAQ Section */
.faq { padding:90px 0; background: var(--bg-alt); }
.faq .faq-grid { display:grid; gap:25px; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); }
.faq-item { background:linear-gradient(135deg,#ffffff,#f1f5f9); border:1px solid var(--border-color); padding:25px 25px 20px; border-radius:18px; position:relative; box-shadow:0 8px 24px rgba(0,0,0,.06); transition:.3s; }
.faq-item:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(0,0,0,.12); }
.faq-item h3 { font-size:1.1rem; margin-bottom:12px; color:var(--headline-color); display:flex; align-items:flex-start; gap:8px; }
.faq-answer p { font-size:.95rem; line-height:1.55; color:var(--gray-color); }
[data-theme="dark"] .faq-item { background:linear-gradient(135deg,#1e293b,#0f172a); border-color:#334155; }
[data-theme="dark"] .faq-answer p { color:var(--gray-color); }

@media (max-width:768px){
    .hero-content h1 { font-size:2.3rem; }
    .hero-content .hero-sub { font-size:1.3rem; }
    .theme-toggle { padding:6px 12px; }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    line-height: 1.8;
    font-weight: 500;
}

/* Enhanced Service Cards */
.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.service-card .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.service-card .icon i {
    font-size: 40px;
    color: white;
}

/* Enhanced About Section */
.about {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.image-placeholder {
    background: linear-gradient(135deg, #10b981, #059669);
    border: 5px solid #06b6d4;
}

.image-placeholder i {
    color: white;
}

/* Revamped Contact Section - Modern & Spacious Layout */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-header h2 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact .underline {
    background: var(--primary-color);
    margin-bottom: 60px;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
}

.card-header i {
    font-size: 2rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
    margin: 0;
}

/* Phone Section */
.phone-item {
    margin-bottom: 15px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px solid transparent;
    border-radius: 15px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.phone-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.phone-link i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Clinic Hours Section */
.clinic-hours {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.hours-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateX(5px);
    border-left-width: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.nowshera-hours {
    border-left-color: var(--secondary-color);
}

.hours-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nowshera-hours h4 {
    color: var(--secondary-color);
}

.time-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    margin-bottom: 8px;
}

.time-slot:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.day {
    font-weight: 600;
    color: var(--dark-color);
}

.time {
    color: var(--primary-color);
    font-weight: 700;
}

.call-ahead-notice {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #fff3e0, #ffecb3);
    border-radius: 10px;
    border-left: 4px solid var(--warning-color);
    color: #e65100;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Locations Section */
.locations-section {
    margin-bottom: 80px;
}

.section-subheader {
    text-align: center;
    margin-bottom: 50px;
}

.section-subheader h3 {
    font-size: 2.2rem;
    color: var(--dark-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-subheader i {
    color: var(--primary-color);
    font-size: 2rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.location-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    z-index: 1;
}

.nowshera-card::before {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
}

.location-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    border-color: var(--primary-color);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.location-header h4 {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-badge {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-badge.main {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.location-badge.secondary {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: white;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.location-address i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.location-address span {
    color: var(--gray-color);
    font-weight: 500;
    line-height: 1.6;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    color: #1e293b !important;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 1));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    color: #1e293b !important;
    border-left-width: 5px;
}

.feature i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature span {
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    line-height: 1.4;
}

.map-container {
    margin: 25px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-button {
    text-align: center;
    margin-top: 20px;
}

.map-button .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Appointment Section */
.appointment-section {
    display: flex;
    justify-content: center;
}

.appointment-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.3);
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.appointment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.appointment-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.appointment-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.appointment-btn {
    background: white !important;
    color: var(--primary-color) !important;
    padding: 15px 35px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    position: relative;
    z-index: 2;
}

.appointment-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
}

/* Best in Pakistan Section */
.best-pakistan {
    padding: 100px 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.best-pakistan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    z-index: 1;
}

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

.best-content h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: 1px;
}

.best-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(139, 92, 246, 0.5);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}

.best-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 40px auto;
    max-width: 900px;
    color: #333;
    font-weight: 500;
}

.mega-btn {
    font-size: 1.2rem;
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.testimonials {
    padding: 100px 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin: 10px;
}

.quote {
    position: relative;
    margin-bottom: 20px;
}

.quote i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.3;
}

.quote i.fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.3;
}

.quote p {
    padding: 0 30px;
    font-style: italic;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.patient h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.patient p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.slider-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Enhanced Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-header h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact .underline {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    height: 5px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-color);
}

.info-item i {
    font-size: 35px;
    color: var(--primary-color);
    margin-right: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(92, 107, 192, 0.2);
}

.details h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.details p {
    color: var(--gray-color);
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2, #FFD700);
    z-index: 1;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: #FFD700;
}

.contact-form h3 {
    margin-bottom: 35px;
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(92, 107, 192, 0.2);
}

/* Calendar Appointment Styling */
.calendar-separator {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.calendar-separator p {
    display: inline-block;
    padding: 0 15px;
    background-color: white;
    position: relative;
    z-index: 1;
    color: var(--gray-color);
    font-weight: 500;
}

.calendar-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--light-gray);
    z-index: 0;
}

/* Google Calendar button styling */
.gcal-appointment-button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: none !important;
    margin-bottom: 20px !important;
    background-color: var(--primary-color) !important;
    color: white !important;
}

.gcal-appointment-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--box-shadow) !important;
}

/* Map container styles */
.map-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Google Maps button styling */
.map-button-container .btn {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #1a73e8 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
    border: 2px solid rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
}

.map-button-container .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.map-button-container .btn:hover::before {
    left: 100%;
}

.map-button-container .btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.5);
    background: linear-gradient(135deg, #3367D6 0%, #0F9D58 50%, #1557b0 100%);
    border-color: #4285F4;
}

.map-button-container .btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Phone link styling */
.phone-link {
    color: var(--primary-color) !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    padding: 8px 15px !important;
    border-radius: 25px !important;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5) !important;
    border: 2px solid transparent !important;
    margin: 5px 0 !important;
}

.phone-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(92, 107, 192, 0.3) !important;
    border-color: var(--primary-color) !important;
}

/* Dual Location Styles */
.locations-container {
    flex-direction: column;
}

.locations-container .details {
    width: 100%;
}

.location-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    background-clip: padding-box;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2, #FFD700);
    z-index: 1;
}

.location-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: #FFD700;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.location-header h4 {
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.location-header h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 8px;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(92, 107, 192, 0.2);
}

.location-badge {
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.location-badge:hover {
    transform: scale(1.05);
}

.location-badge.main {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.location-badge.secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.location-card .address {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    font-weight: 500;
    line-height: 1.6;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.location-card .map-container {
    margin: 25px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.location-card .map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: #FFD700;
}

.location-card .map-button-container {
    margin-top: 20px;
}

/* Location Details Styling */
.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(255, 215, 0, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.detail-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 1);
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.detail-item span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Nowshera specific styling */
.nowshera-location {
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.nowshera-location::before {
    background: linear-gradient(135deg, #e91e63, #9c27b0, #3f51b5);
}

.nowshera-btn {
    background: linear-gradient(135deg, #e91e63, #9c27b0) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3) !important;
}

.nowshera-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4) !important;
}

/* Enhanced Hours Grid Styling */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hours-location {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.95));
    padding: 35px;
    border-radius: 18px;
    border: 2px solid transparent;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.hours-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: 1;
}

.hours-location:nth-child(2)::before {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
}

.hours-location:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    border-color: #FFD700;
}

.hours-location h4 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hours-location:nth-child(2) h4 {
    color: #e91e63;
}

.hours-location h4::before {
    content: '🏥';
    font-size: 1.3rem;
    padding: 8px;
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.2);
}

.hours-location:nth-child(2) h4::before {
    background: linear-gradient(135deg, #fce4ec, #f3e5f5);
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.2);
}

.hours-location p {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #333;
    font-weight: 600;
    padding: 8px 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.hours-location:nth-child(2) p {
    background: rgba(233, 30, 99, 0.05);
    border-left-color: #e91e63;
}

.hours-location p:hover {
    transform: translateX(5px);
    background: rgba(102, 126, 234, 0.1);
}

.hours-location:nth-child(2) p:hover {
    background: rgba(233, 30, 99, 0.1);
}

.call-ahead {
    background: linear-gradient(135deg, #fff3e0, #ffecb3) !important;
    border-left-color: #ff9800 !important;
    font-weight: 700 !important;
    color: #e65100 !important;
    font-style: italic;
    box-shadow: 0 3px 12px rgba(255, 152, 0, 0.2);
}

.hours-location p:last-child {
    border-bottom: none;
}

.call-ahead {
    font-style: italic;
    color: #e91e63 !important;
    font-size: 0.95rem !important;
    margin-top: 15px !important;
    padding: 10px 15px !important;
    background: linear-gradient(135deg, #ffebee, #fce4ec) !important;
    border-radius: 8px !important;
    border-left: 4px solid #e91e63 !important;
    font-weight: 600 !important;
}

/* CTA buttons layout enhancement */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.map-container iframe {
    width: 100%;
    transition: all 0.3s ease;
}

.map-container iframe:hover {
    opacity: 0.9;
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.quick-links, 
.services-links {
    flex: 1;
    min-width: 200px;
}

.quick-links h4, 
.services-links h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.quick-links h4::after, 
.services-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.quick-links ul li, 
.services-links ul li {
    margin-bottom: 10px;
}

.quick-links ul li a {
    color: #b0bec5;
    transition: all 0.3s ease;
}

.quick-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.services-links ul li {
    color: #b0bec5;
}

.copyright {
    text-align: center;
    border-top: 1px solid #455a64;
    padding-top: 20px;
    color: #b0bec5;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .hero-content h3 {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 180px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .best-content h2 {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .gcal-appointment-button {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    .map-container iframe {
        height: 150px;
    }
    
    /* New Contact Layout - Mobile Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
    
    .phone-link {
        font-size: 1rem;
        padding: 12px 18px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-card {
        padding: 25px 20px;
    }
    
    .location-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .location-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .location-address {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .location-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .feature {
        padding: 10px 12px;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 1) !important;
        color: var(--dark-color) !important;
        border-left-width: 2px;
    }
    
    .feature span {
        color: var(--dark-color) !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
    }
    
    .map-container {
        margin: 20px 0;
    }
    
    .section-subheader h3 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .appointment-card {
        padding: 35px 25px;
        margin: 0 15px;
    }
    
    .appointment-card h3 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .appointment-btn {
        padding: 12px 25px !important;
        font-size: 0.95rem !important;
    }
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .location-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .location-badge {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    /* Small Mobile - Dual Location */
    .location-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .location-header h4 {
        font-size: 1.1rem;
    }
    
    .location-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .hours-location {
        padding: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .map-container iframe {
        height: 120px;
    }
}