* {
    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: 1.5rem;
}

h3 {
    font-weight: 500;
    font-size: 1.5rem;
}

/* Button Common Styles */
/* Common Button Styles */
button, .login-btn, .schedule-btn, .submit-btn, .book-now-btn, .visit-btn, .subscribe-btn {
    font-family: 'Montserrat', sans-serif;
    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;
}

.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;
}

/* Modal Popup Styles - Easily Customizable */
.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;
}

/* Form Popup Styling - Easily Customizable Properties */
.popup-form {
    /* Dimensions */
    width: 100%;
    max-width: 500px;
    height: 636px;       /* Changed from max-height with scroll */
    
    /* Positioning */
    position: relative;
    z-index: 1001;
    transform: translateY(-20px);
    
    /* Visual Styling */
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    
    /* Spacing */
    padding: 2rem;
    
    /* Animation */
    transition: transform 0.3s ease;
    
    /* Remove scrollbar */
    overflow: visible;
}

.modal-overlay.active .popup-form {
    /* Animation - Active State */
    transform: translateY(0);
}

/* Submit Button Styling - Easily Customizable */
.submit-btn {
    /* Colors */
    background: black;
    color: white;
    
    /* Visual Styling */
    border: none;
    border-radius: 8px;
    
    /* Typography */
    font-weight: 600;
    
    /* Spacing */
    padding: 0.75rem 1.5rem;
    margin-top: 0.5rem;
    
    /* Interactive */
    cursor: pointer;
    
    /* Animation */
    transition: background 0.2s ease;
}

.submit-btn:hover {
    /* Visual Styling - Hover State */
    background: #000000;
}

.popup-form h2 {
    /* Typography */
    font-size: 1.5rem;
    font-weight: 600;
    
    /* Colors */
    color: var(--text-color);
    
    /* Spacing */
    margin-bottom: 0.5rem;
}

.popup-form p {
    /* Typography */
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
    
    /* Colors */
    color: var(--dark-gray);
    
    /* Spacing */
    margin-bottom: 1.2rem;
}

.popup-form form {
    /* Layout */
    display: flex;
    flex-direction: column;
    
    /* Spacing */
    gap: 0.8rem;
}

.form-group {
    /* Layout */
    display: flex;
    flex-direction: column;
    
    /* Spacing */
    gap: 0.3rem;
}

.form-group label {
    /* Typography */
    font-size: 0.9rem;
    font-weight: 500;
    
    /* Colors */
    color: var(--text-color);
}

.form-group .required {
    /* Colors */
    color: #ff0000;
    
    /* Spacing */
    margin-left: 2px;
}

.popup-form input,
.popup-form textarea,
.popup-form select {
    /* Dimensions */
    width: 100%;
    
    /* Spacing */
    padding: 1rem 1rem;
    margin-top: 0.2rem;
    
    /* Typography */
    font-size: 0.95rem;
    
    /* Visual Styling */
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
    
    /* Animation */
    transition: all 0.2s ease;
}

.popup-form input:hover,
.popup-form textarea:hover,
.popup-form select:hover {
    /* Visual Styling - Hover State */
    border-color: #d0d0d0;
    background: #fff;
}

.popup-form textarea {
    /* Dimensions */
    resize: vertical;
    min-height: 80px;
}

.popup-form input:focus,
.popup-form textarea:focus,
.popup-form select:focus {
    /* Visual Styling - Focus State */
    border-color: var(--primary-color);
    outline: none;
}

.close-btn {
    /* Positioning */
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    
    /* Visual Styling */
    background: none;
    border: none;
    
    /* Typography */
    font-size: 1.5rem;
    
    /* Interactive */
    cursor: pointer;
    color: var(--dark-gray);
    
    /* Animation */
    transition: color 0.2s ease;
}

.close-btn:hover {
    /* Visual Styling - Hover State */
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: var(--light-gray);
    padding: 4rem 5%;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Map Section */
.map-section {
    padding: 2rem 5%;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 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: 450px;
    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;
}

.location-card p.contact-info,
.location-card p.hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.location-card p.contact-info i,
.location-card p.hours i {
    font-size: 1.2rem;
}

.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);
    margin-top: 1rem;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Service Area Section */
.service-area-section {
    padding: 4rem 5%;
    background-color: var(--light-gray);
}

.service-area-section h2 {
    margin-bottom: 1rem;
}

.service-area-section p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    max-width: 1440px;
}

.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.area-column h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.area-column ul {
    list-style: none;
}

.area-column ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.area-column ul li::before {
    content: '\2022';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* CTA Section */
.cta-section {
    padding: 4rem 5%;
    text-align: center;
    background: white;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.book-now-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-now-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(98, 0, 238, 0.3);
}

/* Footer Styles */
footer {
    background: #222;
    color: white;
    padding: 3rem 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-links h4,
.footer-newsletter h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 4px 0 0 4px;
}

.subscribe-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* This section was removed as it was a duplicate of the Modal Popup Styles defined earlier in the file */

.submit-btn {
    /* Primary button styling */
    background: black;
    color: white;
    border: none;
    
    /* Size and shape */
    padding: 0.8rem;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    
    /* Typography */
    font-size: 1rem;
    font-weight: 600;
    
    /* Interactive elements */
    cursor: pointer;
    margin-top: 0.8rem;
    
    /* Transitions */
    transition: transform 0.3s ease, 
                box-shadow 0.3s ease, 
                background-color 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(0px);
    background-color: #222;
}

/* Duplicate styles removed - these are already defined earlier in the file */

/* Responsive Styles */
@media (max-width: 992px) {
    .location-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 90;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 1rem 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 100;
    }
    
    .mobile-login-btn {
        display: block;
        margin-top: 1rem;
    }
    
    .desktop-login-btn {
        display: none;
    }
    
    .service-areas {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .location-card {
        height: 400px;
    }
    
    .service-areas {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .book-now-btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .popup-form {
        max-width: 90%;
        padding: 1.2rem;
    }
    
    .popup-form h2 {
        font-size: 1.1rem;
    }
    
    .popup-form p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .popup-form input,
    .popup-form textarea,
    .popup-form select {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}