:root {
    --primary-color: #6B46C1;
    --secondary-color: #333333;
    --light-purple: #9F7AEA;
    --white: #ffffff;
    --gray: #4A5568;
    --black: #1A1A1A;
    --stripe-background-color: #f8f8f8;
}

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

html,
body {
    overflow-x: hidden !important;
    width: 100vw;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    margin: 0;
    padding-top: 0 !important;
}

body.home-page {
    padding-top: 70px;
}

.main-header,
.main-nav {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    position: fixed;
    background-color: transparent;
    z-index: 2000;
    top: 0;
    height: 70px;
    transition: background-color 0.3s ease;
}

.main-header.scrolled {
    background-color: var(--secondary-color);
}

.main-nav {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0;
}

.logo img {
    max-height: 50px !important;
    width: auto;
    padding: 0 !important;
    transition: all 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2.5rem;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    /* Specific transition for color only */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    /* Specific transition for width only */
}

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

.nav-links a.active {
    color: var(--white);
}

.header-social-links {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.header-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-social-links a:hover::before {
    left: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0;
    padding-top: 70px;
    /* Ensure this padding is applied */
    z-index: 1;
}

/* Add styles for the background overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust opacity as needed */
    z-index: 2;
}

/* Update hero content z-index */
.hero-content {
    position: relative;
    z-index: 3;
    /* Above the overlay */
    color: var(--white);
}

.hero-content .tagline {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 3.5rem;
    /* Reduced from 4.5rem */
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    /* Reduced from 1.5rem */
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 6px !important;
    overflow: hidden;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    /* Transition only for the button */
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Services Section */
.services {
    padding: 8rem 5%;
    background-color: var(--white);
    border-radius: 2rem;
    overflow: hidden;
}

.services h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1rem;
}

.services h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: var(--secondary-color);
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 70, 193, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Add Mobile Menu Styles */
.mobile-menu-btn {
    position: absolute;
    top: 18px;
    right: 24px;
    z-index: 2100;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .header-social-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--white);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 100px 0 2rem 0;
        transition: left 0.3s cubic-bezier(.77, 0, .18, 1);
        z-index: 1500;
        align-items: center;
        display: flex;
        row-gap: 1.5rem;
        box-sizing: border-box;
    }

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

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        color: var(--white);
        text-decoration: none;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        display: none;
        padding: 0;
    }

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

    .dropdown-content a {
        padding: 1rem 2rem;
        text-align: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    .logo {
        position: absolute;
        top: 18px;
        left: 24px;
        z-index: 2100;
    }
}

@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        transform: none;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border-radius: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        padding: 0;
    }

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

    .dropdown-content a {
        padding: 10px 20px 10px 40px;
        text-align: left;
    }
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section.brand {
    max-width: 300px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info p,
.info-details p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    word-wrap: break-word;
    /* Ensures long numbers wrap properly */
}

.contact-info i,
.info-icon {
    margin-right: 12px;
    /* Slightly more space for icons */
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-links a:hover::before {
    left: 100%;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section.brand {
        max-width: 100%;
    }

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

    .footer-section h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Common Page Styles */
.page-header {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: -80px;
    /* Negative margin to counteract the body padding */
    padding-top: 80px;
    /* Add padding to maintain the same visual spacing */
    border-radius: 0;
}

.page-header h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 35vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    /* Higher than overlay */
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-hero-content p {
    font-size: 1.1rem;
    margin: 0;
}

/* Remove these conflicting styles if they exist */
.about-header,
.about-header-content {
    display: none;
}

/* Services Page Styles */
.services-detail {
    padding: 5rem 0;
    border-radius: 2rem;
    overflow: hidden;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-image img {
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 35vh;
    /* Reduced from 40vh */
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0;
    /* Remove any margin */
    padding-top: 70px;
    /* Add padding equal to navbar height */
}

.contact-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    /* Reduced from 3.5rem */
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-hero-content p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content Section */
.contact-content-new {
    position: relative;
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 2rem;
    margin-top: -7rem;
    position: relative;
    z-index: 10;
}

/* Contact Form Card */
.contact-card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    box-shadow: 0 20px 50px rgba(107, 70, 193, 0.2);
    transform: translateY(-5px);
}

.contact-card-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 1rem 1rem 0 0;
}

.contact-card-header h2 {
    font-size: 2rem;
    /* Reduced from 2.5rem */
    margin-bottom: 0.5rem;
}

.contact-card-header p {
    opacity: 0.9;
}

.contact-form-new {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-color), #9F7AEA);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px !important;
    /* Slightly rounded corners */
    overflow: hidden;
    /* Ensure the border-radius is applied properly */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.4);
    background: linear-gradient(45deg, #9F7AEA, var(--primary-color));
}

/* Contact Info Card */
.contact-info-card {
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.contact-info-header {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem 1rem 0 0;
}

.contact-info-header h2 {
    font-size: 2rem;
    /* Reduced from 2.5rem */
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    opacity: 0.9;
}

.contact-info-content {
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.info-details p {
    line-height: 1.5;
    opacity: 0.9;
}

.info-details a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: var(--primary-color);
}

/* Business Hours Card */
.business-hours-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.business-hours-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 500;
}

.hours-list .time {
    opacity: 0.9;
}

/* Contact Social */
.contact-social h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon i {
    position: relative;
    z-index: 2;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    cursor: pointer;
    padding: 20px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.toggle-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.toggle-icon i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: #f9f9f9;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px !important;
    /* Much larger value to accommodate any content */
    padding: 20px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.faq-item.active .toggle-icon {
    background-color: var(--secondary-color);
}

.faq-item.active .toggle-icon i {
    transform: rotate(180deg) !important;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.faq-item.active {
    border-color: var(--primary-color) !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-card-header h2,
    .contact-info-header h2,
    .section-header h2 {
        font-size: 1.8rem;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-card-header h2,
    .contact-info-header h2,
    .contact-form-new,
    .contact-info-content {
        padding: 1.5rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

/* Services Overview Page Styles */
.services-hero {
    position: relative;
    height: 35vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0;
    padding-top: 70px;
    /* Add padding equal to navbar height */
}

.services-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: var(--white);
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.services-hero-content h1 {
    font-size: 2.5rem;
    /* Reduced from 3.5rem */
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.services-hero-content p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Overview Page */
.services-overview-page {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.service-overview-card {
    background-color: var(--white);
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    height: 300px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-service-details {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-service-details:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* About Our Services Section */
.about-services {
    padding: 5rem 0;
    background-color: #f5f5f5;
    text-align: center;
}

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

.about-services-content h2 {
    font-size: 2rem;
    /* Reduced from 2.5rem */
    margin-bottom: 2rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1.5rem;
    text-align: center;
    display: inline-block;
}

.about-services-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.about-services-content>p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature p {
    font-size: 0.95rem;
    color: #666;
}

.services-cta {
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .service-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-hero-content p {
        font-size: 1.1rem;
    }

    .about-services-content h2 {
        font-size: 2rem;
    }

    .service-card-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

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

    .service-features {
        gap: 1.5rem;
    }

    .feature i {
        font-size: 1.3rem;
    }
}

/* New FAQ Page Styles */
.faq-hero {
    position: relative;
    height: 35vh;
    /* Reduced from 40vh */
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0;
    /* Remove any margin */
    padding-top: 70px;
    /* Add padding equal to navbar height */
}

.faq-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.faq-hero-content h1 {
    font-size: 2.5rem;
    /* Reduced from 3.5rem */
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.faq-hero-content p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.faq-intro a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.faq-intro a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.faq-intro a:hover::after {
    transform: translateX(0);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 70, 193, 0.05), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.faq-item:hover::before {
    left: 100%;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--secondary-color);
}

.toggle-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
    background-color: var(--secondary-color);
}

/* Enhanced Contact Page Styles */
.contact-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 70, 193, 0.05), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-info-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.contact-info-card:hover::before {
    left: 100%;
}

.info-icon {
    position: relative;
    overflow: hidden;
}

.info-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.info-icon:hover::before {
    left: 100%;
}

.social-icon {
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.social-icon:hover::before {
    left: 100%;
}

.submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

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

/* FAQ Link Section on Contact Page */
.faq-link-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
    text-align: center;
}

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

.faq-link-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.faq-link-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.btn-faq {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px !important;
    /* Override the 2rem (32px) value they had before */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-faq:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

/* Ensure no underlines on contact page social icons */
.contact-social .social-icons a,
.contact-social .social-icons a:hover,
.contact-social .social-icons a:focus,
.contact-social .social-icons a:active {
    text-decoration: none;
    border-bottom: none;
}

/* Ensure no underlines on header social icons */
.header-social-links a,
.header-social-links a:hover,
.header-social-links a:focus,
.header-social-links a:active {
    text-decoration: none;
    border-bottom: none;
}

/* Update the nav styles to be more specific */
.main-nav {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Fix dropdown styling */
.nav-links .dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 5px);
    /* Add 5px gap between navbar and dropdown */
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-top: 5px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-content a {
    display: block;
    color: var(--white);
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

/* Remove line hover effect for dropdown items */
.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        transform: none;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border-radius: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        padding: 0;
    }

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

    .dropdown-content a {
        padding: 10px 20px 10px 40px;
        text-align: left;
    }
}

/* Service page specific styles */
.service-header {
    height: 50vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.service-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.service-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.service-header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Service page specific styles */
.service-hero {
    position: relative;
    height: 35vh;
    /* Reduced from 40vh */
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0;
    /* Remove any margin */
    padding-top: 70px;
    /* Add padding equal to navbar height */
}

.service-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-intro,
.service-pricing,
.before-after-section,
.additional-content,
.service-cta {
    padding: 4rem 0;
}

.service-intro {
    /* background-color: var(--white); */
    padding-top: 7rem;
    background-color: var(--secondary-color);
    color: var(--white);
}

.service-pricing {
    background-color: #f8f8f8;
}

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

.pricing-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-header {
    padding: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-card-content {
    padding: 2rem;
}

.pricing-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.pricing-card-content ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-card-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.before-after-section {
    background-color: var(--white);
}

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

.before-after-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

/* Improved Before-After Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-image {
    clip-path: polygon(0 0, var(--slider-position, 50%) 0, var(--slider-position, 50%) 100%, 0 100%);
    z-index: 1;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--slider-position, 50%);
    width: 4px;
    background-color: var(--white);
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle::after {
    content: '←→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 12px;
}

.slider-handle-label {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 3;
}

.slider-handle-label span {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.service-cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-service-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.disclaimer {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.disclaimer strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* New Car Section */
.new-car-section {
    padding: 5rem 0;
    background-color: var(--white);
    /* White background */
}

.new-car-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.new-car-content {
    max-width: 600px;
}

.new-car-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.new-car-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.new-car-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.new-car-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.new-car-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.new-car-image:hover img {
    transform: scale(1.05);
}

/* Home About Section */
.home-about {
    padding: 5rem 0;
    background-color: #f8f8f8;
    /* Light gray for contrast */
}

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

.home-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
    color: var(--secondary-color);
}

.home-about-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.home-about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

/* Home Services Section */
.home-services {
    padding: 5rem 0;
    background-color: var(--white);
    /* White background */
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    color: var(--secondary-color);
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-content p {
    font-size: 1rem;
    color: #666;
}

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

.btn-all-services {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px !important;
    /* Override the 2rem (32px) value they had before */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-all-services:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Featured Service Section */
.featured-service {
    padding: 5rem 0;
    background-color: #f8f8f8;
    /* Light gray for contrast */
}

.featured-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-thumbnail {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-thumbnail img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(107, 70, 193, 0.8);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
    z-index: 1;
}

.play-button:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.featured-content h2 {
    font-size: 2rem;
    /* Reduced from 2.5rem */
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.featured-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.btn-featured {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-featured:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* YouTube Section */
.youtube-section {
    padding: 5rem 0;
    background-color: var(--stripe-background-color);
    /* Use the consistent stripe background color */
    text-align: center;
    /* Center align text */
}

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

.youtube-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    color: var(--secondary-color);
    display: inline-block;
}

.youtube-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.youtube-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.btn-youtube {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #FF0000;
    color: var(--white);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-youtube:hover {
    background-color: #CC0000;
    transform: translateY(-3px);
}

.subscriber-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.subscriber-count i {
    font-size: 3rem;
    color: #FF0000;
    margin-bottom: 0.5rem;
}

.subscriber-count span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.subscriber-count p {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background-color: var(--white);
    /* White background */
}

.partners-section .section-header h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner {
    text-align: center;
}

.partner img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner p {
    font-size: 0.9rem;
    color: #666;
}

/* Fix social link styling in footer and header */
.social-links a,
.header-social-links a,
.social-icons a,
.contact-social .social-icons a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    border-bottom: none !important;
    color: var(--white) !important;
    position: relative;
    overflow: hidden;
}

/* Override any text-decoration that might be applied by browser defaults */
.social-links a:hover,
.header-social-links a:hover,
.social-icons a:hover,
.contact-social .social-icons a:hover,
.social-links a:focus,
.header-social-links a:focus,
.social-icons a:focus,
.contact-social .social-icons a:focus,
.social-links a:active,
.header-social-links a:active,
.social-icons a:active,
.contact-social .social-icons a:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Ensure icons are properly centered */
.social-links a i,
.header-social-links a i,
.social-icons a i {
    line-height: 1;
    position: relative;
    z-index: 1;
}

/* Add this to ensure no underlines on any social icons */
.footer-section .social-links a,
.contact-social .social-icons a,
.header-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Standard button styling with consistent border-radius */
.cta-button,
.btn-service-details,
.btn-all-services,
.btn-featured,
.btn-youtube,
.btn-service-cta,
.btn-pricing,
.submit-btn,
.btn-faq,
.new-car-content a,
.products-content a,
.featured-content a,
.services-footer a,
.service-card-footer a,
.btn-services,
.youtube-link,
.hero-content .cta-button,
.about-services .btn-service-cta {
    border-radius: 6px !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

/* Ensure no hover underlines on any buttons */
.cta-button:hover,
.btn-service-details:hover,
.btn-all-services:hover,
.btn-featured:hover,
.btn-youtube:hover,
.btn-service-cta:hover,
.btn-pricing:hover,
.submit-btn:hover,
.btn-faq:hover,
.new-car-content a:hover,
.products-content a:hover,
.featured-content a:hover,
.services-footer a:hover,
.service-card-footer a:hover,
.btn-services:hover,
.youtube-link:hover,
.hero-content .cta-button:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Standardized Social Button Styling - Apply to ALL social icons */
.social-links a,
.header-social-links a,
.footer-section .social-links a,
.contact-social .social-icons a,
.social-icons a,
.info-social a,
footer .social-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease !important;
    margin: 0 5px !important;
    padding: 0 !important;
    /* Ensure no padding affects icon centering */
}

/* Unified hover effects for ALL social buttons */
.social-links a:hover,
.header-social-links a:hover,
.footer-section .social-links a:hover,
.contact-social .social-icons a:hover,
.social-icons a:hover,
.info-social a:hover,
footer .social-links a:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-3px) !important;
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    color: var(--white) !important;
}

/* Ensure icon centers and sizes properly in ALL social buttons */
.social-links a i,
.header-social-links a i,
.social-icons a i,
.info-social a i,
footer .social-links a i {
    line-height: 1 !important;
    position: relative;
    z-index: 1;
    font-size: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Totally remove any animations, effects, or pseudo-elements */
.social-links a::before,
.header-social-links a::before,
.social-icons a::before,
.info-social a::before,
footer .social-links a::before,
.social-links a::after,
.header-social-links a::after,
.social-icons a::after,
.info-social a::after,
footer .social-links a::after {
    display: none !important;
}

/* Fixed styles for the contact page social icons specifically */
.contact-social .social-icons {
    display: flex !important;
    gap: 10px !important;
    justify-content: flex-start !important;
}

/* Override any margin/spacing in footer social links container */
footer .social-links {
    display: flex !important;
    gap: 10px !important;
    margin-top: 20px !important;
}

/* Ensure proper spacing in mobile view for footer social icons */
@media (max-width: 768px) {
    footer .social-links {
        justify-content: center !important;
    }
}

/* Fix any remaining underlines or decorations */
.social-links a:hover,
.header-social-links a:hover,
.social-icons a:hover,
.contact-social .social-icons a:hover,
.social-links a:focus,
.header-social-links a:focus,
.social-icons a:focus,
.contact-social .social-icons a:focus,
.social-links a:active,
.header-social-links a:active,
.social-icons a:active,
.contact-social .social-icons a:active,
.info-social a:hover,
.info-social a:focus,
.info-social a:active,
footer .social-links a:hover,
footer .social-links a:focus,
footer .social-links a:active {
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Fix direction buttons styling */
.btn-directions,
.btn-view-map {
    display: inline-block !important;
    padding: 0.8rem 1.5rem !important;
    background-color: var(--primary-color) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    margin: 10px 5px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.btn-directions:hover,
.btn-view-map:hover {
    background-color: var(--secondary-color) !important;
    transform: translateY(-3px) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-directions i,
.btn-view-map i {
    margin-right: 8px !important;
}

.map-buttons {
    text-align: center !important;
    margin-top: 20px !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

/* EMERGENCY FIX FOR FOOTER SOCIAL ICONS - FORCE WHITE COLOR */
footer .social-links a i,
.footer-section .social-links a i,
footer .footer-section .social-links a i,
body footer .social-links a i {
    color: white !important;
}

/* Force the container color to be correct as well */
footer .social-links a,
.footer-section .social-links a,
footer .footer-section .social-links a,
body footer .social-links a {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Ensure proper hover color too */
footer .social-links a:hover,
.footer-section .social-links a:hover,
footer .footer-section .social-links a:hover,
body footer .social-links a:hover {
    background-color: var(--primary-color) !important;
}

/* Remove any pseudo-elements or animations */
footer .social-links a::before,
footer .social-links a::after {
    display: none !important;
}

/* Footer contact info styling */
.footer-section.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-section.contact-info p i {
    width: 20px;
    margin-right: 12px;
    color: var(--primary-color);
}

.footer-section.contact-info p a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section.contact-info p a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer social links fix */
.footer-section .social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-section .social-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.footer-section .social-links a i {
    color: white !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

.footer-section .social-links a:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-3px) !important;
}

/* Remove any unwanted effects */
.footer-section .social-links a::before,
.footer-section .social-links a::after {
    display: none !important;
}

/* Mobile responsiveness for footer contact info */
@media (max-width: 768px) {
    .footer-section.contact-info p {
        justify-content: center;
    }

    .footer-section .social-links {
        justify-content: center;
    }
}

/* Form validation and response styling */
.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: rgba(220, 53, 69, 0.1);
}

.error-message.show {
    display: block;
}

.form-response {
    display: block;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 1rem 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.3s, color 0.3s, border 0.3s;
    border: 1.5px solid transparent;
    letter-spacing: 0.02em;
}

.form-response.success {
    background: linear-gradient(90deg, #e6f9ec 0%, #d4edda 100%);
    color: #217a3a;
    border-color: #b7e4c7;
}

.form-response.error {
    background: linear-gradient(90deg, #fbeaea 0%, #f8d7da 100%);
    color: #a94442;
    border-color: #f5c6cb;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

/* Loading state for submit button */
.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 700px;
    }
}

/* Update FAQ and Contact headers to match other pages */
.faq-hero,
.contact-hero {
    position: relative;
    height: 35vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0;
    padding-top: 70px;
    z-index: 1;
}

.faq-hero .overlay,
.contact-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.faq-hero-content,
.contact-hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.faq-hero-content h1,
.contact-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.faq-hero-content p,
.contact-hero-content p {
    font-size: 1.1rem;
    margin: 0;
}

/* Remove any conflicting styles */
.faq-header,
.contact-header,
.faq-header-content,
.contact-header-content {
    display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .featured-service-grid,
    .new-car-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu-btn {
        display: block;
    }

    .services {
        padding: 6rem 5%;
    }

    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

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

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

    .cta-button {
        padding: 1rem 2rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form-new,
    .contact-info-card {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 50vh;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-card-header h2 {
        font-size: 1.5rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .submit-btn {
        width: 100%;
    }
}

/* Landscape mode for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
    }

    .hero-content {
        padding: 2rem 0;
    }

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

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

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo img {
        transform: scale(1.1);
    }

    .service-card i {
        transform: scale(1.1);
    }
}

/* Print styles */
@media print {

    .main-header,
    .footer,
    .cta-button,
    .social-links {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .container {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        position: absolute;
        top: 18px;
        right: 24px;
        z-index: 2100;
        display: flex;
    }

    .logo {
        position: absolute;
        top: 18px;
        left: 24px;
        z-index: 2100;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 250px;
        padding-top: 60px;
    }

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

    .hero-content .tagline {
        font-size: 1rem;
    }

    .contact-hero-content h1,
    .services-hero-content h1,
    .faq-hero-content h1 {
        font-size: 1.3rem;
    }

    .contact-card-header h2,
    .contact-info-header h2 {
        font-size: 1.2rem;
    }

    .contact-content-new,
    .services-overview-page,
    .faq-content {
        padding: 2rem 0;
    }

    .map-container {
        height: 250px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        margin-top: 0;
        gap: 1rem;
    }

    .service-card {
        padding: 1rem;
    }
}

@media (max-width: 992px) {
    .main-header {
        left: 0 !important;
        position: fixed;
        background-color: var(--secondary-color);
        z-index: 2000;
        width: 100%;
    }

    .main-nav {
        left: 0 !important;
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .mobile-menu-btn {
        position: absolute;
        top: 18px;
        right: 24px;
        z-index: 2100;
        display: flex;
    }

    .logo {
        position: absolute;
        top: 18px;
        left: 24px;
        z-index: 2100;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 100px 0 2rem 0;
        transition: left 0.3s cubic-bezier(.77, 0, .18, 1);
        z-index: 1500;
        align-items: center;
        display: flex;
        row-gap: 1.5rem;
        box-sizing: border-box;
    }

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

@media (max-width: 992px) {
    .logo img {
        max-height: 32px !important;
        width: auto;
    }
}

@media (max-width: 992px) {
    .mobile-social-links {
        display: block !important;
        width: 100%;
        text-align: center;
        margin-top: 2rem;
    }

    .mobile-social-links .header-social-links {
        display: flex !important;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 0.5rem;
    }

    .mobile-social-links .header-social-links a {
        font-size: 1.6rem;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .nav-right>.header-social-links {
        display: none !important;
    }
}

@media (min-width: 993px) {
    .mobile-social-links {
        display: none !important;
    }
}

.service-overview-card, .pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-content, .pricing-card-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.btn-pricing {
    margin-top: auto;
    align-self: flex-start; /* Change to center if you want centered buttons */
}

/* Custom YouTube Section Design (Inspired by vermijlcardetail.be) */
.custom-youtube-section {
    background: #f8f8f8;
    padding: 4rem 0 3rem 0;
    text-align: center;
}

.youtube-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.youtube-video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.youtube-video-responsive {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.youtube-video-responsive iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .youtube-video-responsive {
        max-width: 100%;
        border-radius: 10px;
    }
}

@media (max-width: 600px) {
    .custom-youtube-section {
        padding: 2rem 0 1.5rem 0;
    }
    .youtube-header h2 {
        font-size: 1.3rem;
    }
    .youtube-video-responsive {
        border-radius: 6px;
    }
}
