* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6200EE;
    --secondary-color: #03DAC6;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #666;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* General paragraph styles */
p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-weight: 400;
    font-size: 2rem;
    /* margin-bottom: 1rem; */
}

h3 {
    font-weight: 500;
    font-size: 1.5rem;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

/* Button Common Styles */
button, .login-btn, .schedule-btn, .submit-btn, .book-now-btn, .visit-btn, .subscribe-btn {
    font-family: 'Montserrat', sans-serif;
    /* Default font-weight that can be overridden by specific button classes */
    font-weight: 500;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: white;
    position: relative;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin: 0 1rem;
    font-weight: 500;
}
#calling-btn{
    color: white;
}
.nav-links a.active {
    color: var(--primary-color);
}

.login-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.mobile-login-btn {
    display: none;
}

.desktop-login-btn {
    display: block;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 0.5rem;
    z-index: 100;
}

.menu-toggle i {
    font-size: 1.8rem;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.2rem;
    padding: 20px 40px;
    background: #fff;
    min-height: 80vh;
    position: relative;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../assets/hero-section-image.png') no-repeat center center;
    background-size: cover;
    border-radius: 16px;
    padding: 3rem 3rem 3rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    text-align: left;
    padding-bottom: 3rem;
}



.hero-content h1, .hero-content p {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 0;
}

.hero-content h1 span {
    color: #fff;
    display: inline-block;
    font-style: italic;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    margin-top: 0;
    font-weight: 400;
    line-height: 1.5;
}

.schedule-btn {
    background: white;
    color: black;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-top: 0.8rem;
    z-index: 1;
    position: relative;
    align-self: flex-start;
    margin-bottom: 0;
}

.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(98, 0, 238, 0.3);
}

.booking-form {
    background: white;
    padding: 85px 0px 10px 0px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    height: 100%;
    min-height: 680px;
}

.booking-form h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.booking-form p {
    color: var(--dark-gray);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
}

.booking-form form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group .required {
    color: #ff0000;
    margin-left: 2px;
}

.booking-form input,
.booking-form textarea {
    padding: 0.75rem 0.9rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    width: 100%;
    background: #f8f9fa;
    margin-top: 0.2rem;
}

.booking-form input:hover,
.booking-form textarea:hover {
    border-color: #d0d0d0;
    background: #fff;
}

.booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-btn {
    background: #000;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.8rem;
    width: 100%;
}

.submit-btn:hover {
    background: #222;
}

/* Services Section */
.services-section {
    padding: 4rem 5%;
    text-align: left;
}

.services-section p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    max-width: 1440px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
    /* padding: 0.5rem; */
}

.service-card {
    position: relative;
    border-radius: 10px;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    transition: all 0.4s ease;
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-content {
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.service-card .price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 1.5rem;
    color: white;
    /* margin-bottom: 0.75rem; */
}

.service-card .service-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    color: white;
}

.service-card .book-now-btn {
    background: #f5f1ff;
    color: black;
    border: none;
    padding: 0.4rem 0;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
}

.service-card .book-now-btn:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    transition: all 0.4s ease;
}

/* Clientele Section */
.clientele-section {
    padding: 4rem 5%;
    background: white;
    text-align: left;
}

.clientele-section p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    max-width: 1440px;
}

.client-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 0 45px 0 0;
}

.client-logos img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.client-logos img:hover {
    filter: grayscale(0);
}

/* Locations Section */
.locations-section {
    padding: 4rem 5%;
    text-align: left;
}

.locations-section p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    max-width: 1440px;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.location-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.location-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.location-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.location-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin: 0 0 0 0;
    color: white;
}

.location-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 0.8rem 0;
    color: white;
    opacity: 0.9;
}

.location-card p.store-header {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}


.visit-btn {
    display: block;
    background: #f5f1ff;
    color: black;
    text-decoration: none;
    padding: 0.4rem 0;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Who We Are Section */
.who-we-are {
    padding: 4rem 5% 0;
    background: var(--light-gray);
    text-align: left;
    margin-bottom: 0;
}

.who-we-are p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    max-width: 1440px;
}

.who-we-are img {
    width: 100%;
    max-width: 1440px;
    max-height: 10%;
    height: auto;
    object-fit: cover;
    margin-top: 2rem;
    margin-bottom: 0;
    display: block;
    border-radius: 10px 10px 0 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 5%;
    text-align: center;
    background: var(--primary-color);
    color: white;
    margin-top: 0;
}

.book-now-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    margin-top: 1rem;
    cursor: pointer;
    font-weight: 600;
}

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    background: #333;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0.5rem 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
}

.subscribe-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    z-index: 1001;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .popup-form {
    transform: translateY(0);
}

.popup-form h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.popup-form p {
    color: var(--dark-gray);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
}

.popup-form form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.popup-form input,
.popup-form textarea {
    padding: 1rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 100%;
    background: #f8f9fa;
    margin-top: 0.2rem;
}

.popup-form input:hover,
.popup-form textarea:hover {
    border-color: #d0d0d0;
    background: #fff;
}

.popup-form textarea {
    resize: vertical;
    min-height: 100px;
}

.popup-form input:focus,
.popup-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 5%;
    }
    
    .booking-form {
        max-width: 100%;
    }
    
    .hero-content {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .schedule-btn {
        align-self: center;
    }

    /* Mobile Navigation Styles */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
        padding: 2rem 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.2rem;
    }
    
    .mobile-login-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 0.8rem 1.8rem;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        margin-top: 2rem;
        display: block;
    }
    
    .desktop-login-btn {
        display: none;
    }

    .client-logos {
        gap: 1.5rem;
    }

    .client-logos img {
        height: 40px;
    }
}