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

:root {
    --primary-color: #1a1a1a;
    --dark-color: #2a2a2a;
    --light-color: #f5f5f5;
    --accent-color: #d0d0d0;
    --earthy-warm: #C85A3A;
    --earthy-gold: #D4A373;
    --earthy-green: #7A9B4A;
    --text-color: #333;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(200, 90, 58, 0.2);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: block;
}
@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 5px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 5px;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
    box-shadow: none;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: static;
    background: none;
    flex-direction: row;
    width: auto;
    text-align: left;
    padding: 0;
    max-height: none;
    overflow: visible;
    transition: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--earthy-warm);
}

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

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

/* Hero Section */
.hero {
    background:
        radial-gradient(circle at 20% 16%, rgba(212, 163, 115, 0.15) 0%, rgba(212, 163, 115, 0) 36%),
        linear-gradient(135deg, #161616 0%, #242424 52%, #312722 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    width: 320px;
    height: 320px;
    top: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.14) 0%, rgba(212, 163, 115, 0) 72%);
}

.hero::after {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(200, 90, 58, 0.16) 0%, rgba(200, 90, 58, 0) 74%);
}

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

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

.coming-soon-badge {
    display: inline-block;
    background: var(--earthy-warm);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(200, 90, 58, 0.3);
}

.opening-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem !important;
    color: rgba(255, 255, 255, 0.95);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--earthy-gold);
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title-image {
    display: block;
    width: min(860px, 100%);
    height: auto;
    margin: 0 auto 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--earthy-warm);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(200, 90, 58, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 90, 58, 0.5);
    background: #b84a2d;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0ede8 100%);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--earthy-gold);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.2);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--earthy-warm);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.about-card p {
    font-size: 0.95rem;
    color: #666;
    text-align: left;
}

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

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    text-align: center;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--earthy-warm);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(200, 90, 58, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--earthy-warm);
    margin-bottom: 1rem;
}

.service-card h3,
.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-category {
    margin-bottom: 3rem;
}

.service-category h3 {
    font-size: 1.8rem;
    color: var(--earthy-warm);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--earthy-gold);
}

/* Clinic Preview Section */
.clinic-preview {
    padding: 80px 0;
    background: white;
}

.clinic-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.section-subtitle a {
    color: var(--earthy-warm);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.section-subtitle a:hover {
    border-bottom-color: var(--earthy-warm);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.preview-card {
    background: linear-gradient(135deg, var(--light-color) 0%, #f0ede8 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.preview-card:hover {
    transform: translateY(-5px);
    border-color: var(--earthy-warm);
    box-shadow: 0 6px 20px rgba(200, 90, 58, 0.15);
}

.preview-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--earthy-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.preview-image i {
    font-size: 1.8rem;
    color: white;
}

.preview-card h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.preview-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Coverage Area Section */
.coverage-area {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0ede8 100%);
}

.coverage-area h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-column h4 {
    font-size: 1.2rem;
    color: var(--earthy-warm);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--earthy-gold);
    padding-bottom: 0.5rem;
}

.coverage-column ul {
    list-style: none;
    padding: 0;
}

.coverage-column li {
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.coverage-column li:before {
    content: "▸ ";
    position: absolute;
    left: 0;
    color: var(--earthy-warm);
    font-weight: bold;
}

/* Hero CTA Buttons */
.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--earthy-gold);
    color: var(--earthy-gold);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0ede8 100%);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: 0 4px 15px rgba(200, 90, 58, 0.15);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--earthy-warm);
    min-width: 50px;
}

.contact-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover {
    color: #1a1a1a;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--earthy-warm);
    color: white !important;
    border-radius: 5px;
    transition: var(--transition);
}

.social-link i {
    color: #1877f2;
}

.social-link:hover {
    background: #b84a2d;
    transform: translateX(5px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--earthy-warm);
    box-shadow: 0 0 10px rgba(200, 90, 58, 0.2);
}

.submit-btn {
    background: var(--earthy-warm);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: #b84a2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 90, 58, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 3px solid var(--earthy-warm);
}

.footer p {
    margin: 0.5rem 0;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-credit-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-credit-link:hover,
.footer-credit-link:focus-visible {
    text-decoration: underline;
    color: #eaffea;
    text-shadow:
        0 0 12px rgba(0, 255, 0, 0.6),
        0 0 24px rgba(0, 255, 0, 0.3);
}

.footer-credit-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    transition: filter 0.25s ease;
}

.footer-credit-link:hover .footer-credit-logo,
.footer-credit-link:focus-visible .footer-credit-logo {
    filter:
        brightness(1.4)
        drop-shadow(0 0 15px rgba(0, 255, 0, 0.6))
        drop-shadow(0 0 30px rgba(0, 255, 0, 0.3));
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    position: relative;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    width: 70px;
    height: 70px;
    background-color: var(--earthy-green);
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: bold;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-color);
    font-size: 1.1rem;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--earthy-warm);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

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

    .hero-title-image {
        width: min(640px, 100%);
    }

    .hero p {
        font-size: 1rem;
    }

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

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

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

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

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero-title-image {
        width: 100%;
    }

    .cta-button {
        padding: 12px 30px;
    }

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

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* History Section */
.history {
    padding: 80px 0;
    background: var(--light-color);
}

.history h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.history-content p {
    margin-bottom: 1.5rem;
    color: #555;
    text-align: justify;
}

/* Staff Section */
.staff {
    padding: 80px 0;
    background: white;
}

.staff h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.staff-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.staff-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid var(--light-color);
}

.staff-card.featured-staff {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(200, 90, 58, 0.2);
    border-color: var(--earthy-warm);
}

.staff-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--earthy-warm) 0%, var(--earthy-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.staff-headshot {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(200, 90, 58, 0.2);
}

.staff-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.staff-title {
    color: var(--earthy-warm);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.staff-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0ede8 100%);
}

.values h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.values-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(200, 90, 58, 0.15);
}

.value-card i {
    font-size: 3rem;
    color: var(--earthy-warm);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        list-style: none;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        width: 100%;
        text-align: center;
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        list-style: none;
        z-index: 200;
    }
    .nav-links.active {
        padding: 2rem 0;
        max-height: 400px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

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

    .history-content p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile compact spacing/timing overrides */
@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .navbar {
        padding: 0.65rem 0;
    }

    .logo-image {
        height: 42px;
    }

    .nav-links.active {
        padding: 1rem 0;
        max-height: 320px;
    }

    .hero {
        padding: 86px 0;
    }

    .coming-soon-badge {
        padding: 0.4rem 1rem;
        font-size: 0.78rem;
        margin-bottom: 1rem;
    }

    .opening-text {
        font-size: 1.1rem;
        margin-bottom: 1.2rem !important;
    }

    .hero p {
        margin-bottom: 1.2rem;
    }

    .hero-ctas {
        margin-top: 1rem;
        gap: 0.65rem;
    }

    .about,
    .services,
    .clinic-preview,
    .coverage-area,
    .contact,
    .history,
    .staff,
    .values,
    .cta-section,
    .page-header {
        padding: 56px 0;
    }

    .about h2,
    .services h2,
    .clinic-preview h2,
    .coverage-area h2,
    .contact h2,
    .history h2,
    .staff h2,
    .values h2,
    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .section-subtitle,
    .staff-intro {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .about-grid,
    .services-grid,
    .preview-grid,
    .coverage-list,
    .contact-grid,
    .contact-info,
    .staff-grid,
    .values-grid {
        gap: 1.2rem;
    }

    .about-card,
    .service-card,
    .preview-card,
    .contact-item,
    .value-card,
    .staff-card,
    .bio-card {
        padding: 1.25rem;
    }

    .service-card i,
    .value-card i {
        font-size: 2.3rem;
        margin-bottom: 0.75rem;
    }

    .service-category {
        margin-bottom: 2rem;
    }

    .service-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.6rem;
    }

    .contact h2 {
        margin-bottom: 1.8rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea,
    .submit-btn {
        padding: 0.85rem;
    }

    .footer {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo-image {
        height: 36px;
    }

    .hero {
        padding: 56px 0;
    }

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

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .opening-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 24px;
    }

    .about,
    .services,
    .clinic-preview,
    .coverage-area,
    .contact,
    .history,
    .staff,
    .values,
    .cta-section,
    .page-header {
        padding: 44px 0;
    }

    .about h2,
    .services h2,
    .clinic-preview h2,
    .coverage-area h2,
    .contact h2,
    .history h2,
    .staff h2,
    .values h2,
    .page-header h1 {
        font-size: 1.75rem;
    }

    .about-grid,
    .services-grid,
    .preview-grid,
    .coverage-list,
    .contact-grid,
    .contact-info,
    .staff-grid,
    .values-grid {
        gap: 1rem;
    }
}
