/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f5;
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0e6e1;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 90px;
}

.nav-logo .logo {
    height: 90px;
    width: auto;
    margin-top: 15px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 20px;
}

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

.nav-right {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1E1E1E;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4a574;
}

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

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

.social-link {
    background: #1E1E1E;
    color: white !important;
    padding: 8px 12px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d4a574;
    transform: translateY(-2px);
}

.portal-btn {
    background: linear-gradient(135deg, #1E1E1E, #2A2A2A);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(30, 30, 30, 0.3);
    transition: all 0.3s ease;
}

.portal-btn:hover {
    background: linear-gradient(135deg, #d4a574, #c19660);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #1E1E1E;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-background-final.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.8), rgba(30, 30, 30, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-logo-img {
    height: 420px;
    width: auto;
    margin: 40px auto 40px auto;
    display: block;
}

.hero-tagline {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease-in-out 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #d4a574, #c19660);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Services Section */
.services {
    background: white;
}

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

.service-category {
    background: #faf8f5;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 30, 30, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 30, 30, 0.15);
}

.category-title {
    color: #1E1E1E;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #d4a574;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0e6e1;
}

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

.service-name {
    color: #1E1E1E;
    font-weight: 500;
}

.service-price {
    color: #d4a574;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Treatment Showcase Section */
.treatments {
    background: linear-gradient(135deg, #f9f6f3, #f5f1ec);
    padding: 100px 0;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.treatment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30, 30, 30, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

.treatment-image img[src*="microdermabrasion"] {
    object-position: center 80%;
    transform: scale(1.3);
}

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

.treatment-content {
    padding: 30px;
    text-align: center;
}

.treatment-title {
    color: #1E1E1E;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.treatment-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #d4a574;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.treatment-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 15px;
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, #f9f6f3, #f5f1ec);
}

.booking-widget {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(30, 30, 30, 0.1);
}

/* Gallery Section */
.gallery {
    background: white;
}

.gallery-scroll {
    overflow-x: auto;
    padding: 20px 0;
}

.gallery-container {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 0 20px;
}

.gallery-item {
    min-width: 300px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 30, 30, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

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

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

/* Location Section */
.location {
    background: linear-gradient(135deg, #f9f6f3, #f5f1ec);
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.location-map {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.address {
    font-size: 1.2rem;
    color: #1E1E1E;
    margin-bottom: 30px;
    line-height: 1.8;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a574, #c19660);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.directions-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-label {
    font-size: 1.5rem;
    color: #1E1E1E;
    margin-bottom: 30px;
    font-weight: 600;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #1E1E1E, #2A2A2A);
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 30, 30, 0.3);
    margin-bottom: 20px;
}

.phone-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 30, 30, 0.4);
}

.contact-note {
    color: #d4a574;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Scroll Animations */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #f9f6f3, #f5f1ec);
    padding: 140px 0 80px;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #d4a574;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0;
}

.about-content {
    background: white;
    padding: 80px 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: left;
}

.about-cta {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(135deg, #d4a574, #c19660);
    color: white !important;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.contact-link {
    background: transparent;
    color: #1E1E1E !important;
    padding: 15px 30px;
    border: 2px solid #d4a574;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #d4a574;
    color: white !important;
    transform: translateY(-3px);
}

.nav-link.active {
    color: #d4a574 !important;
    font-weight: 600;
}

/* Founder Section */
.founder-section {
    background: linear-gradient(135deg, #f9f6f3, #f5f1ec);
    padding: 80px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.founder-img {
    width: 100%;
    max-width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(30, 30, 30, 0.1);
}

.founder-text {
    text-align: left;
}

.founder-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 15px;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 8px;
}

.founder-credentials {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.founder-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.about-cta-section {
    background: white;
    padding: 60px 0;
}

/* Pre-Visit Checklist Section */
.pre-visit-checklist {
    background: linear-gradient(135deg, #f9f6f3, #f5f1ec);
    padding: 80px 0;
    text-align: center;
}

.checklist-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.checklist-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.checklist-btn {
    background: linear-gradient(135deg, #d4a574, #c19660);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.checklist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #c19660, #d4a574);
}

.checklist-btn i {
    font-size: 1.2rem;
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #f0f0f0;
    color: #333;
}

.popup-header {
    background: linear-gradient(135deg, #d4a574, #c19660);
    color: white;
    padding: 30px 40px 25px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.popup-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.popup-contact {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.popup-body {
    padding: 40px;
}

.checklist-section {
    margin-bottom: 35px;
}

.checklist-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.checklist-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.checklist-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border: 2px solid #d4a574;
    border-radius: 3px;
}

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

.staff-grid {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.staff-member {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #f9f6f3, #f5f1ec);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 30, 30, 0.1);
}

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

.staff-img {
    width: 100%;
    max-width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(30, 30, 30, 0.15);
}

.staff-text {
    text-align: left;
}

.staff-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 8px;
}

.staff-title {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 25px;
}

.staff-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Footer Styles */
.footer {
    background: #1E1E1E;
    color: white;
    padding: 40px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-img {
    height: 110px;
    width: auto;
    margin-top: 20px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-contact {
    text-align: right;
}

.footer-address {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #d4a574;
    font-weight: 500;
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.footer-phone a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: #d4a574;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4a574, #c19660);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.footer-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #c19660, #d4a574);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
    margin-bottom: 20px;
}

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

.footer-copyright p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    color: #cccccc;
}

/* Mobile Book Button - Hidden on Desktop */
.mobile-book-btn {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }

    .mobile-book-btn {
        display: inline-block;
        background: linear-gradient(135deg, #1E1E1E, #2A2A2A);
        color: white !important;
        padding: 12px 25px;
        border-radius: 25px;
        font-weight: 600;
        text-decoration: none;
        font-size: 1rem;
        box-shadow: 0 4px 15px rgba(30, 30, 30, 0.3);
        transition: all 0.3s ease;
        margin-top: 30px;
    }

    .mobile-book-btn:hover {
        background: linear-gradient(135deg, #d4a574, #c19660);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(30, 30, 30, 0.1);
        padding: 30px 0;
        margin-left: 0;
    }

    .nav-left,
    .nav-right {
        flex-direction: column;
        gap: 20px;
    }

    .nav-right {
        margin-top: 20px;
    }

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

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        height: calc(100vh - 70px);
    }

    .hero-tagline {
        font-size: 2.5rem;
        margin-top: -15px;
    }

    .tagline-line1,
    .tagline-line2 {
        display: block;
    }

    .hero-logo-img {
        height: 300px;
        margin: 40px auto 40px auto;
        display: block;
    }

    .hero-background {
        background-attachment: scroll;
        background-size: cover;
        background-position: 35% center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .treatment-card {
        margin-bottom: 20px;
    }

    .treatment-image {
        height: 200px;
    }

    .treatment-content {
        padding: 25px 20px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .phone-link {
        font-size: 1.5rem;
        padding: 15px 30px;
    }

    .gallery-item {
        min-width: 250px;
        height: 200px;
    }

    .booking-widget {
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-logo-img {
        height: 85px;
        margin-top: 15px;
    }

    .about-hero {
        padding: 120px 0 60px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-paragraph {
        font-size: 1rem;
        text-align: center;
    }

    .about-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-button,
    .contact-link {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-img {
        max-width: 250px;
        height: 320px;
    }

    .founder-title {
        font-size: 1.8rem;
    }

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

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

    .founder-bio {
        text-align: left;
        margin-bottom: 15px;
    }

    .about-cta-section {
        padding: 40px 0;
    }

    .staff-section {
        padding: 60px 0;
    }

    .staff-member {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
    }

    .staff-img {
        max-width: 220px;
        height: 280px;
    }

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

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

    .staff-bio {
        text-align: left;
        font-size: 0.95rem;
    }

    .pre-visit-checklist {
        padding: 60px 0;
    }

    .checklist-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .checklist-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }

    .popup-content {
        margin: 10px;
        max-height: 85vh;
    }

    .popup-header {
        padding: 25px 30px 20px;
    }

    .popup-header h3 {
        font-size: 1.5rem;
    }

    .popup-contact {
        font-size: 1rem;
    }

    .popup-body {
        padding: 30px 25px;
    }

    .checklist-section h4 {
        font-size: 1.2rem;
    }

    .checklist-list li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
}

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

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

    .section-title {
        font-size: 1.8rem;
    }

    .service-category {
        padding: 20px;
    }

    .gallery-item {
        min-width: 200px;
        height: 180px;
    }
}
