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

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

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #666;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f6f8f9 0%, #e5ebee 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Optional: adds a subtle shadow for better readability */
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}

.hero-content .cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-right: 1rem;
}

.hero-content .cta-button:first-of-type {
    background-color: white;
    color: black;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-shadow: none;
}

.hero-content .cta-button:first-of-type i {
    margin-left: 0.5rem;
    color: black;
}

.hero-content .cta-button:first-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(0,0,0,0.05), 
        transparent
    );
    transition: all 0.6s ease;
}

.hero-content .cta-button:first-of-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-content .cta-button:first-of-type:hover::before {
    left: 100%;
}

.hero-content .cta-button:first-of-type i {
    margin-left: 0.5rem;
    color: black;
}

.hero-content .cta-button:last-of-type {
    background-color: #000000;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-content .cta-button:last-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent
    );
    transition: all 0.6s ease;
}

.hero-content .cta-button:last-of-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero-content .cta-button:last-of-type:hover::before {
    left: 100%;
}

.hero-content .cta-button i {
    margin-left: 0.3rem;
}

/* Services Section */
.services {
    position: relative;
    text-align: center;
    background-color: white;
    width: 100%;
    padding-bottom: 4rem; /* Add padding to prevent overlap */
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
    position: relative;
}

.service-content-container {
    position: relative;
    z-index: 1;
    background-color: white;
}

.service-content {
    display: none;
    position: relative;
    z-index: 1;
    background-color: white;
}

.service-content.active {
    display: block;
}

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

@media (max-width: 768px) {
    .service-content-container {
        margin-top: 2rem;
        padding: 0 5%;
    }

    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.service-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.services h2 i {
    font-size: 2.5rem;
    color: #303030;
}

/* About Section */
.about {
    background-color: #f4f4f4;
    padding: 5rem 5%;
    text-align: center;
}

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

.about h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #333;
}

.about p {
    margin-bottom: 1rem;
    color: #666;
}

/* Contact Section Redesign */
.contact {
    background-color: #f9f9f9;
    padding: 4rem 5%;
}

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

.contact h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #333;
    font-size: 2rem;
}

.contact-header {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    text-align: left;
    background-color: white;
    border-left: 4px solid #000;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #e9ecef;
    border-radius: 50%;
    margin-right: 20px;
}

.contact-info-icon i {
    font-size: 28px;
    color: #000;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.contact-info-detail {
    font-size: 16px;
    color: #212529;
    margin-bottom: 3px;
}

.contact-info-subtext {
    font-size: 13px;
    color: #6c757d;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.hours-of-operation {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.contact-form {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    background: transparent;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #888;
    pointer-events: none;
    transition: 0.3s ease all;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: #000;
}

.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:not(:placeholder-shown) + label,
.contact-form input:focus + label,
.contact-form textarea:focus + label {
    top: -20px;
    font-size: 12px;
    color: #000;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background-color: #000000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent
    );
    transition: all 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn i {
    margin-right: 8px;
}

@media (max-width: 600px) {
    .contact-form {
        padding: 20px;
    }
}

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

    .hours-of-operation {
        width: 100%;
        margin-bottom: 20px;
    }

    #hours-table {
        width: 100%;
        border-collapse: collapse;
    }

    #hours-table td {
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

    .contact-form {
        width: 100%;
        padding: 20px;
        box-shadow: none;
    }

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

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 12px 10px;
    }

    .contact-form label {
        top: 12px;
        font-size: 14px;
    }

    .contact-form input:not(:placeholder-shown) + label,
    .contact-form textarea:not(:placeholder-shown) + label,
    .contact-form input:focus + label,
    .contact-form textarea:focus + label {
        top: -15px;
        font-size: 12px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 15px;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-details {
    padding: 2.5rem;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details h3 {
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details h3 i {
    color: #0066cc;
    font-size: 1.5rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #666;
}

.contact-details p i {
    color: #0066cc;
    font-size: 1.2rem;
}

.hours-of-operation {
    margin-top: 1.5rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hours-of-operation h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #333;
}

.hours-of-operation h4 i {
    color: #0066cc;
    font-size: 1.3rem;
}

.hours-of-operation table {
    width: 100%;
}

.hours-of-operation table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.contact-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0,102,204,0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background-color: #000000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.contact-form button:hover {
    background-color: #212121;
    transform: translateY(-3px);
}

.contact-header {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #f0f4f8;
    border-radius: 50%;
    margin-right: 20px;
}

.contact-icon i {
    font-size: 36px;
    color: #007bff;
}

.contact-details {
    flex-grow: 1;
}

.contact-details h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.contact-details p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.contact-details p:first-of-type {
    font-weight: 500;
}

@media (max-width: 992px) {
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-card {
        width: 90%;
        max-width: 500px;
    }
}

/* Pricing Section */
.pricing {
    background-color: #f4f4f4;
    padding: 5rem 5%;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

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

/* Modern Minimalist Service Cards */
.service-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
    justify-content: center;
}

.service-content-grid:has(.pricing-card:only-child) {
    grid-template-columns: minmax(300px, 600px);
}

.pricing-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #000000, #999999);
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.pricing-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.pricing-card .savings {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 0 8px 0 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card ul li {
    padding: 0.1rem 0;
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    position: relative;
}

.pricing-card ul li::before {
    content: '•';
    color: #0066cc;
    margin-right: 10px;
    font-size: 1.2rem;
}

.pricing-card .book-now {
    display: block;
    text-align: center;
    padding: 12px;
    background-color: #121212;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-card .book-now:hover {
    background-color: #1f1f1f;
    transform: translateY(-3px);
}

.pricing-card.featured {
    border: 2px solid #0066cc;
    box-shadow: 0 10px 25px rgba(0,98,204,0.15);
}

.pricing-card.featured .book-now {
    background-color: #0066cc;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 5%;
    min-width: 100%;
}

.service-tabs .tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    font-size: 0.9rem;
    flex-grow: 1;
}

.service-tabs .tab i {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #333;
}

.service-tabs .tab.active {
    background-color: #333;
    color: white;
}

.service-tabs .tab.active i {
    color: white;
}

.service-tabs .tab:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .service-tabs {
        display: inline-flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        gap: 0.25rem;
        width: 100%;
    }

    .service-tabs .tab {
        flex-shrink: 0;
        min-width: 90px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .service-tabs .tab i {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }
}

/* Team Section */
.team {
    background-color: #f4f4f4;
    padding: 6rem 0;
}

.team h2 {
    text-align: center;
    color: #333;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    line-height: 1.2;
    position: relative;
}

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

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
}

.team-member-content {
    padding: 1.5rem;
    text-align: center;
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    line-height: 1.2;
    color: #333;
}

.team-member p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    color: #333;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #000;
}

@media (max-width: 768px) {
    .team {
        padding: 4rem 0;
    }

    .team h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .team-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .team-member {
        max-width: 350px;
        margin: 0 auto;
    }

    .team-member h3 {
        font-size: 1.3rem;
    }

    .team-member p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .team-member img {
        aspect-ratio: 1;
    }

    .team-member-content {
        padding: 1.25rem;
    }
}

/* Location Section */
.location {
    background-color: #f4f4f4;
    padding: 4rem 0;
}

.location h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
}

.location h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #007bff;
}

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

.map-container iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

/* Booking Section */
.booking {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#fresha-booking-widget {
    width: 100%;
    min-height: 600px;
}

/* Hours of Operation Styling */
.hours-of-operation {
    margin-top: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hours-of-operation h4 {
    color: #333;
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 1.1rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.hours-of-operation table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.hours-of-operation tr {
    transition: background-color 0.3s ease;
}

.hours-of-operation tr:hover {
    background-color: #f0f0f0;
}

.hours-of-operation td {
    padding: 0.5rem;
    text-align: left;
}

.hours-of-operation tr.current-day {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.hours-of-operation tr.current-day td {
    color: #000;
    font-weight: bold;
}

/* Parallax Background */
.parallax-bg {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the last value (0.5) to control darkness */
    z-index: 1;
}

/* Directions Section Google-Inspired Design */
.directions {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('./images/banner-productos.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    transition: background-position 0.1s linear;
    color: white;
}

.directions .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
    position: relative;
    z-index: 1;
}

.directions-content {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(2px);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.directions-text h2 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.directions-text h2 i {
    color: white;
    font-size: 2.5rem;
}

.directions-text p {
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.directions-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #1a1a1a;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.directions-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

.directions-button i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 2rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: white;
    margin-left: 1rem;
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

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

    .nav-menu li {
        margin: 2.5rem 0;
    }

    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

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

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

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

    .parallax-bg {
        background-attachment: scroll; /* Disable fixed background on mobile for better performance */
    }

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

/* Smooth Scrolling and Tab Transitions */
html {
    scroll-behavior: smooth;
}
