        :root {
            --primary: #1a73e8;
            --primary-dark: #0d47a1;
            --secondary: #f8f9fa;
            --accent: #ffc107;
            --text: #333333;
            --light-text: #666666;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --border: #e0e0e0;
        }

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

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

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
        }

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

        ul {
            list-style: none;
        }

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

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-whatsapp {
            background-color: #25D366;
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 50px;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .nav-menu {
            display: flex;
        }

        .nav-item {
            margin-left: 30px;
        }

        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

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

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

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

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {

            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 180px 0 100px;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 2px;
            line-height: 1.2;
            background-color: #66666675;
        }

        .hero-tagline {
            background-color: #66666675;
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .hero-highlights {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .highlight-item {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 15px 20px;
            border-radius: 5px;
            margin: 0 10px 15px;
            font-weight: 500;
            backdrop-filter: blur(5px);
        }

        /* About Section */
        .about {
            background-color: var(--secondary);
        }

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

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .director {
            background-color: var(--secondary);
        }

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

        .director-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .director-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .director-image:hover img {
            transform: scale(1.05);
        }

        .director-info {
            flex: 1;
        }

        .director-name {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .director-title {
            font-size: 1.2rem;
            color: var(--light-text);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .director-message {
            margin-bottom: 30px;
        }

        .director-message p {
            margin-bottom: 15px;
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }

        .director-message p:before {
            content: '"';
            position: absolute;
            left: 0;
            top: -5px;
            font-size: 2rem;
            color: var(--primary);
            font-family: serif;
        }

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

        .director-qualifications ul {
            list-style: none;
        }

        .director-qualifications li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            padding: 8px 0;
        }

        .director-qualifications i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .director-content {
                flex-direction: column;
            }

            .director-name {
                font-size: 1.5rem;
            }
        }

        /* Doctors Section */
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .doctor-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        .doctor-image {
            height: 250px;
            overflow: hidden;
        }

        .doctor-image img {
            width: 100%;
            height: 100%;
            /* object-fit: ce; */
            transition: transform 0.5s ease;
        }

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

        .doctor-info {
            padding: 20px;
        }

        .doctor-name {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .doctor-qualification {
            font-weight: 500;
            color: var(--light-text);
            margin-bottom: 5px;
        }

        .doctor-specialization {
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Departments Section */
        .departments {
            background-color: var(--secondary);
        }

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

        .department-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .department-card:hover {
            transform: translateY(-5px);
        }

        .department-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .department-services {
            margin-top: 15px;
        }

        .department-service {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

        .department-service i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 0.8rem;
        }

        /* Facilities Section */
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .facility-card {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .facility-card:hover {
            transform: translateY(-5px);
        }

        .facility-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* Appointment Section */
        .appointment {
            background-color: var(--secondary);
        }

        .appointment-form {
            max-width: 700px;
            margin: 0 auto;
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

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

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        /* Contact Section */
        .contact-content {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-icon {
            font-size: 1.2rem;
            color: var(--primary);
            margin-right: 15px;
            margin-top: 5px;
        }

        .contact-form {
            flex: 1;
        }

        .map-container {
            margin-top: 40px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 300px;
            border: none;
        }

        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--white);
        }

        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-links h3:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: var(--primary);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {

            .about-content,
            .contact-content {
                flex-direction: column;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-tagline {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: left 0.3s ease;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
            }

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

            .nav-item {
                margin: 0 0 25px 0;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .hero {
                padding: 150px 0 80px;
            }
        }

        @media (max-width: 576px) {
            .section {
                padding: 60px 0;
            }

            .appointment-form {
                padding: 30px 20px;
            }

            .footer-column {
                min-width: 100%;
            }
        }

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

        .section-subtitle {
            text-align: center;
            color: var(--light-text);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 10px 20px;
            background-color: var(--secondary);
            border: none;
            border-radius: 30px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
        }

        .gallery-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

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

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

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(26, 115, 232, 0.8));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .gallery-text h4 {
            color: var(--white);
            margin-bottom: 5px;
        }

        .gallery-text p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .gallery-view-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background-color: var(--white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-view-btn:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }

            .gallery-filter {
                gap: 10px;
            }

            .filter-btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }

        .pharmacy {
            background-color: var(--secondary);
        }

        .pharmacy-content {
            display: flex;
            gap: 50px;
            margin-bottom: 50px;
        }

        .pharmacy-info {
            flex: 1;
        }

        .pharmacy-image {
            flex: 1;
            position: relative;
        }

        .pharmacy-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .pharmacy-timing {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: var(--white);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .pharmacy-timing h4 {
            color: var(--primary);
            margin-bottom: 15px;
            text-align: center;
        }

        .timing-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
        }

        .timing-item:last-child {
            border-bottom: none;
        }

        .timing-item.emergency {
            font-weight: 600;
            color: var(--primary);
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .feature-icon i {
            font-size: 1.5rem;
        }

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

        .pharmacy-services {
            margin-top: 40px;
        }

        .pharmacy-services h3 {
            margin-bottom: 20px;
            color: var(--primary);
        }

        .pharmacy-services ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px;
        }

        .pharmacy-services li {
            display: flex;
            align-items: center;
            padding: 8px 0;
        }

        .pharmacy-services i {
            color: var(--primary);
            margin-right: 10px;
        }

        .medicine-search {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .medicine-search h3 {
            margin-bottom: 20px;
            color: var(--primary);
        }

        .search-box {
            display: flex;
            max-width: 500px;
            margin: 0 auto 15px;
        }

        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 5px 0 0 5px;
            font-family: 'Poppins', sans-serif;
        }

        .search-box button {
            border-radius: 0 5px 5px 0;
        }

        .search-note {
            color: var(--light-text);
            font-size: 0.9rem;
        }

       @media (max-width: 768px) {
    .pharmacy-content {
        flex-direction: column;
        gap: 30px;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box input {
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .search-box button {
        border-radius: 5px;
        width: 100%;
    }

    .pharmacy-services ul {
        grid-template-columns: 1fr;
    }

    /* Fix for timing overlay on mobile */
    .pharmacy-image {
        position: relative;
    }

    .pharmacy-timing {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
    }

    .pharmacy-image img {
        margin-bottom: 0;
    }

    /* Adjust feature items for mobile */
    .feature-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }

    /* Adjust pharmacy timing layout */
    .timing-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .timing-item span {
        display: block;
    }
}
.footer-credit {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================= ENHANCEMENTS ================= */

/* Hero background slider */
.hero { position: relative; background-image: none !important; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.6s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,71,161,.55) 0%, rgba(13,71,161,.75) 100%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }

/* Stats strip */
.stats-strip {
    background: var(--primary-dark);
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-box .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}
.stat-box .stat-label {
    color: #eaf1fd;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Gallery masonry-ish enhancement */
.gallery-grid {
    grid-auto-flow: dense;
}
.gallery-item.tall .gallery-image { height: 100%; }
.gallery-image { cursor: zoom-in; }
.gallery-empty {
    text-align: center;
    padding: 40px;
    color: var(--light-text);
}

/* Lightbox */
.lightbox-overlay {
    position: fixed; inset: 0; background: rgba(10,15,25,0.92);
    display: none; align-items: center; justify-content: center;
    z-index: 3000; padding: 30px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-box { max-width: 900px; width: 100%; text-align: center; }
.lightbox-box img {
    max-width: 100%; max-height: 75vh; border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption { color: #fff; margin-top: 16px; }
.lightbox-caption h4 { color: var(--accent); margin-bottom: 4px; }
.lightbox-caption p { color: #dce3ef; margin-bottom: 0; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; background: rgba(255,255,255,0.12); color: #fff;
    border: none; width: 46px; height: 46px; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
    .lightbox-prev, .lightbox-next { width: 38px; height: 38px; font-size: 1rem; }
}

/* Dynamic pages (page.php) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff; padding: 70px 0 50px; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero .breadcrumb { color: #dce8fb; font-size: 0.95rem; }
.page-hero .breadcrumb a { color: var(--accent); }
.page-body { padding: 60px 0; }
.page-body-content { max-width: 850px; margin: 0 auto; }
.page-body-content img { max-width: 100%; border-radius: 12px; margin: 10px 0; }
.page-body-content h2, .page-body-content h3 { color: var(--primary-dark); }
.page-cover { width: 100%; max-height: 420px; object-fit: cover; border-radius: 14px; margin-bottom: 30px; }
.related-pages {
    background: var(--light-gray); padding: 50px 0; margin-top: 40px;
}
.related-pages-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.related-page-card {
    background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.25s;
}
.related-page-card:hover { transform: translateY(-5px); }
.related-page-card img { width: 100%; height: 150px; object-fit: cover; }
.related-page-card .rpc-body { padding: 16px; }
.related-page-card h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--primary-dark); }

/* 404 */
.notfound-box { text-align: center; padding: 100px 20px; }
.notfound-box h1 { font-size: 5rem; color: var(--primary); }

/* Testimonials */
.testimonials { background: var(--secondary); padding: 80px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.testimonial-rating { color: #f39c12; font-size: 1.1rem; margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem; min-height: 80px; }
.testimonial-author { display: flex; align-items: center; gap: 15px; padding-top: 15px; border-top: 1px solid var(--border); }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-avatar.placeholder {
    background: var(--primary); color: var(--white); display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; width: 50px; height: 50px; border-radius: 50%;
}
.testimonial-info h4 { margin: 0; font-size: 1rem; color: var(--primary-dark); }
.testimonial-info span { display: block; font-size: 0.85rem; color: var(--light-text); }
.testimonial-treatment {
    display: inline-block; background: var(--secondary); padding: 2px 10px; border-radius: 12px;
    font-size: 0.75rem; color: var(--primary); margin-top: 3px;
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-text { min-height: 60px; }
}
