@font-face {
    font-family: 'clarityCity';
    src: url('./fonts/clarityCity-Regular.woff2') format('woff2'),
        url('./fonts/clarityCity-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #FF3434 !important;
    --dark-bg: #2c3e50;
    --card-bg: #2c2c2c;
    --light-bg: #f8f9fa;
    --text-light: #6c757d;
    --text-dark: #2c3e50;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'clarityCity';
    line-height: 1.6;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
    background-attachment: fixed;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-red);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar i {
    margin-right: 8px;
}

/* Navigation */
.navbar {
    background-color: #252525 !important;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

.navbar-brand i {
    margin-right: 10px;
    color: var(--primary-red);
}

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
}

.btn-login {
    background-color: var(--primary-red);
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    width: 180px !important;
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 56px;
    font-size: 16px;
}

.btn-login:hover {
    background-color: #c0392b;
}

.btn-search,
.btn-cart {
    width: 50px !important;
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 50px;
    font-size: 14px;
    min-width: unset;
}

.collapse {
    justify-content: space-around;
}

.collapse {
    /* justify-content: space-around; */
    display: flex;
    justify-content: space-between;
}

.navbar-nav {
    margin: auto;
}

.flex-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   AUTHENTICATION MODAL
   ========================================================================== */
.auth-body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    position: relative;
    animation: scaleUp 0.8s ease-in-out;
}

.auth-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
}

.auth-close-btn:hover {
    color: #000;
}

.auth-title {
    text-align: center;
    margin-bottom: 8px;
    font-size: 28px;
    font-weight: 400;
    color: #333;
    animation: fadeIn 0.8s ease-in-out 0.2s;
    animation-fill-mode: backwards;
}

.auth-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 14px;
    animation: fadeIn 0.8s ease-in-out 0.2s;
    animation-fill-mode: backwards;
}

.auth-form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    animation: slideRight 0.8s ease-in-out;
    animation-fill-mode: backwards;
}

.auth-form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.auth-form-control:nth-child(1) {
    animation-delay: 0.3s;
}

.auth-form-control:nth-child(2) {
    animation-delay: 0.4s;
}

.auth-forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.auth-forgot-password a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
}

.auth-forgot-password a:hover {
    text-decoration: underline;
}

.auth-btn-login {
    background-color: #ff4757;
    border-color: #ff4757;
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    animation: bounce 1.5s infinite;
}

.auth-btn-login:hover {
    background-color: #ff3742;
    border-color: #ff3742;
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    color: #6c757d;
    font-size: 14px;
}

.auth-btn-social {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 12px;
    border: 1px solid #ced4da;
    background: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: bounce 1.5s infinite;
}

.auth-btn-social:hover {
    background-color: #f8f9fa;
    color: #333;
}

.auth-google-icon {
    width: 18px;
    height: 18px;
}

.auth-facebook-icon {
    color: #1877f2;
    font-size: 18px;
}

/* Modal Login Styles */
.f-g-modals {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.facebbok-modals,
.facebook-modals {
    width: 437px;
    height: 50px;
    border: 2px solid black;
}

.f-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: none;
}

.modals-btn-login {
    width: 437px;
    height: 50px;
    background-color: var(--primary-red);
    margin: auto;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

/* Tablet screens (768px and below) */
@media (max-width: 768px) {
    .auth-container {
        padding: 20px;
        max-width: 90%;
    }

    .auth-btn-login,
    .auth-btn-social,
    .modals-btn-login,
    .facebbok-modals,
    .facebook-modals {
        width: 100% !important;
        height: 48px !important;
    }
}

/* Small mobile screens (425px and below) */
@media (max-width: 425px) {
    .auth-container {
        padding: 15px;
    }

    .auth-title {
        font-size: 24px;
    }

    .auth-subtitle {
        font-size: 12px;
    }
}

/* Banner-section */
.hero-section {
    background-image: url(../Assets/banner.jpg);
    background-size: cover;
    background-position: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content p {
    color: #ddd;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-schedule {
    width: 288px;
    height: 56px;
    background-color: var(--primary-red);
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-schedule:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* BOOKING FORM */
.booking-form {
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(13px);
}

.booking-form h4 {
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    margin-bottom: 15px;
    background-color: white;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

.btn-book {
    background-color: var(--primary-red);
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
    height: 56px;
}

.btn-book:hover {
    background-color: #c0392b;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.service-card {
    border: none;
    box-shadow: 0 2px 10px var(--shadow);
    transition: transform 0.3s ease;
    height: 100%;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 85px;
    height: 85px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon i {
    color: white;
    font-size: 24px;
}

.see-more-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.see-more-link:hover {
    color: #b02a37;
}

.service-icon>img {
    width: 60px;
    height: 60px;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-section {
    padding: 60px 0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

.mechanic-image {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    object-fit: cover;
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.product-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px var(--shadow);
}

.product-image {
    width: 290px;
    height: 190px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    padding: 16px;
}

.star-rating {
    color: #ffc107;
    font-size: 0.8rem;
}

.small-star {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   STEPS SECTION
   ========================================================================== */
.steps-section {
    padding: 80px 0;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 60px;
}

.step-container {
    position: relative;
    margin-bottom: 40px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.step-1 .step-number {
    background-color: var(--primary-red);
}

.step-2 .step-number {
    border: 2px solid red;
    color: black;
}

.step-3 .step-number {
    border: 2px solid red;
    color: black;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0px;
}

.step-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    margin-top: 20px;
}

.dotted-connector {
    position: absolute;
    top: 25px;
    left: 60px;
    right: -10px;
    height: 2px;
    background-image: repeating-linear-gradient(to right,
            rgb(164, 159, 159) 0px,
            rgb(164, 159, 159) 5px,
            transparent 8px,
            transparent 16px);
    z-index: 1;
}

.step-container:last-child .dotted-connector {
    display: none;
}

/* Alternative dotted line for mobile */
.dotted-line {
    border-top: 2px dotted #ccc;
    margin-top: 2rem;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.card-body {
    flex: 1 1 auto;
    /* padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x); */
    color: var(--bs-card-color);
    padding: 39px;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-card {
    border: 2px solid var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.popular-badge {
    background: var(--primary-red);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.price {
    font-size: 35px;
    font-weight: 700;
}

.custom-box {
    max-width: 437px;
    height: 515px;
}

.plan-header {
    width: 248px;
    height: 84px;
    margin: 0 auto;
}

.card-body2 {
    display: flex;
    flex-direction: column;

}

/* ==========================================================================
   TRACK RECORD & TESTIMONIALS
   ========================================================================== */
.exe {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 6px;
}

.track-record {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
    padding: 80px 0;
}

.track-record .card {
    border: none;
    /* border-radius: 15px; */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    /* width: 437px !important; */
    height: 217px !important;
    box-sizing: border-box;
    overflow: hidden;
}

.track-record .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card {
    /* background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%); */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #ffc107;
}

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */
.newsletter-section {
    color: black;
    padding: 80px 0;
}

.newsletter-img {
    border-radius: 15px;
    width: 100%;
    height: 464px;
    object-fit: cover;
}

.newsletter-form .form-control {
    background-color: transparent;
    border: 1px solid #555;
    color: #ffffff;
    border-radius: 4px;
    padding: 12px 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    width: 450px !important;
    height: 56px !important;
    box-sizing: border-box;
}

.newsletter-form .form-control:focus {
    background-color: transparent;
    border-color: var(--primary-red);
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 68, 68, 0.25);
}

.newsletter-form .form-control::placeholder {
    color: #aaa;
}

.btn-subscribe {
    background-color: var(--primary-red);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    width: 450px !important;
    height: 56px !important;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-subscribe:hover {
    background-color: #cc3333;
    color: white;
}

.form-control2 {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    margin-bottom: 15px;
    background-color: white;
    transition: all 0.3s ease;
    width: 100%;
    width: 450px;
    height: 56px;
    box-sizing: border-box;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-section {
    background-color: var(--card-bg);
    color: #ffffff;
    padding: 40px 0;
}

.footer {
    background: var(--dark-bg);
    color: white;
    /* padding: 60px 0 30px; */
}

.footer h5,
.section-title {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-red);
}

.brand-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.brand-logo .text-danger {
    color: var(--primary-red) !important;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.social-links a {
    align-items: center;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    display: flex;
}

.social-links a:hover {
    color: var(--primary-red);
}

.social-links i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 16px;
    background-color: var(--primary-red);
    color: white;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #c02b37;
    transform: translateY(-2px);
}

.footer-bottom {
    /* background-color: #1a1a1a; */
    color: #888;
    /* padding: 20px 0; */
    /* border-top: 1px solid #333; */
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-red);
}

.address-info p {
    margin-bottom: 5px;
    color: #cccccc;
}

/* ==========================================================================
   COMMON BUTTONS
   ========================================================================== */
.btn-primary-custom {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #b02a37;
    border-color: #b02a37;
}

.btn-outline-custom {
    border-color: black;
    color: black;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--text-light);
    border-color: var(--text-light);
    color: white;
}

.btn-red {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 290px;
    height: 40px;
    text-align: center;
    padding: 0;
}

.btn-red:hover {
    background-color: #c02b37;
    border-color: #bd2130;
    color: white;
    transform: translateY(-2px);
}

.custom-red-btn {
    width: 290px;
    height: 40px;
    padding: 0;
}

.star {
    display: flex;
    justify-content: space-between;
}

.footer {
    min-height: 426px;
    /* margin-top: 75px; */
    color: #ffffff;
}

.footer-logo img {
    max-width: 201px;
    width: 100%;
    object-fit: contain;
}

.footer-content-p1 {
    max-width: 365px;
    font-size: 16px;
    line-height: 100%;
}

.footer-content-p2 {
    font-size: 18px;
}

#footer-email {
    width: 450px;
    height: 56px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: transparent;
    color: white !important;
}

#footer-email::placeholder {
    color: white;
}

.footer-side1-btn {
    width: 450px;
    height: 56px;
    background-color: #ff3434;
    border: none;
    border-radius: 4px;
    text-align: center;
}

.footer-side1-btn:hover {
    background-color: #4b2004;
    transform: translateY(-10px);
}

.footer-side1-btn a {
    color: #ffffff;
    text-decoration: none;
}

.footer2div h3,
.footer3div h3,
.footer4div h3 {
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.footer2div a,
.footer4div-logo-content a {
    color: #ffffff;
    text-decoration: none;
}

.footer2div a:hover,
.footer4div-logo-content a:hover {
    color: #f13636;
    transform: scale(1.1);
    display: inline-block;
}

.footer4div-logo-content img {
    width: 24px;
    height: 24px;
}

.footer4div-logo-content:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.footer-line {
    max-width: 1360px;
    height: 1px;
    background-color: #ffffff;
}

.footer-bottom p,
.footer-bottom-links a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #f13636;
}

@media screen and (max-width: 992px) {

    .footer2div h3,
    .footer3div h3,
    .footer4div h3 {
        font-size: 16px;
    }

    .footer2div a,
    .footer3div p,
    .footer4div-logo-content a {
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .footer {
        margin-top: 40px;
    }
}


/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .navbar-nav {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .main-heading {
        font-size: 36px;
    }

    .dotted-connector {
        display: none;
    }

    .step-container {
        margin-bottom: 50px;
    }

    .track-record .card {
        width: 100% !important;
        max-width: 437px;
        height: auto;
        min-height: 217px;
    }

    .newsletter-form .form-control,
    .btn-subscribe {
        width: 100% !important;
        max-width: 450px;
        height: 56px !important;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .booking-form {
        padding: 20px;
        margin-top: 30px;
    }

    .dotted-line {
        display: none;
    }

    .main-heading {
        font-size: 28px;
    }

    .btn-login {
        width: 100% !important;
        max-width: 180px;
        height: 56px !important;
    }

    .btn-search,
    .btn-cart {
        width: 40px !important;
        height: 40px !important;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .steps-section {
        padding: 60px 0;
    }

    .newsletter-form .form-control,
    .btn-subscribe {
        width: 100% !important;
        max-width: 100%;
        height: 56px !important;
    }
}

@media (max-width: 425px) {
    .btn-book {
        width: 100%;
    }

    .btn-outline-custom {
        margin-top: 10px;
        width: 100%;
    }

    .track-record .card {
        width: 100% !important;
        max-width: 100%;
        height: auto;
        min-height: 217px;
    }
}


.contact-section {
    padding: 60px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header small {
    color: #dc3545;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
    margin-top: 10px;
}

.contact-form {
    /* background: white; */
    padding: 40px;
    border-radius: 10px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    margin-bottom: 30px;
    width: 946px;
    height: 612px;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
}

.contact-form form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .form-content {
    flex: 1;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    height: 50px;
}

.form-control#message {
    height: 120px;
    resize: vertical;
}

.form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.btn-submit {
    background-color: #dc3545;
    border: none;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    height: 60px;
    margin-top: auto;
}

.btn-submit:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.contact-info {
    /* background: white; */
    padding: 40px;
    border-radius: 10px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    width: 600px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 20px;
}

.contact-info p {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-details h5 {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 5px;
}

.contact-details p {
    color: #6c757d;
    margin-bottom: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #1a2238, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="70" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .contact-form {
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .map-placeholder {
        height: 250px;
    }
}

@media (max-width: 425px) {
    .top-bar {
        font-size: 11px;
    }

    .navbar-brand {
        font-size: 16px;
    }

    .btn-login {
        max-width: 120px;
        height: 40px !important;
        font-size: 14px;
    }

    .btn-search,
    .btn-cart {
        width: 35px !important;
        height: 35px !important;
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-schedule {
        max-width: 180px;
        height: 40px;
        font-size: 13px;
    }

    .booking-form {
        padding: 15px;
    }

    .form-control {
        padding: 8px;
        font-size: 14px;
    }

    .btn-book {
        height: 45px;
        font-size: 14px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 20px;
    }

    .step-image {
        height: 160px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .location-card {
        max-width: 100%;
        height: 150px;
    }

    .location-overlay {
        font-size: 1rem;
        padding: 15px;
    }

    .testimonial-img {
        width: 60px;
        height: 60px;
    }

    .newsletter-img {
        height: 250px;
    }

    #footer-email,
    .footer-side1-btn {
        max-width: 100%;
        height: 45px !important;
    }

    .footer-logo img {
        max-width: 120px;
    }
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

/* Large screens (Desktops, 1200px and below) */
@media (max-width: 1200px) {
    .contact-form {
        width: 80%;
        height: auto;
        padding: 30px;
    }

    .contact-info {
        width: 80%;
        height: auto;
        padding: 30px;
    }

    .navbar-nav .nav-link {
        margin: 0 10px;
        font-size: 14px;
    }

    .btn-login {
        width: 150px !important;
        height: 45px !important;
        font-size: 15px;
    }

    .btn-schedule {
        width: 250px;
        height: 50px;
    }

    .newsletter-form .form-control,
    .btn-subscribe,
    #footer-email,
    .footer-side1-btn {
        width: 100% !important;
        max-width: 400px;
        height: 50px !important;
    }

    .product-image {
        width: 100%;
        max-width: 260px;
        height: 170px;
    }

    .mechanic-image {
        height: 500px;
    }
}

/* Medium screens (Tablets, 992px and below) */
@media (max-width: 992px) {
    .contact-form {
        width: 100%;
        padding: 25px;
    }

    .contact-info {
        width: 100%;
        padding: 25px;
    }

    .navbar-nav {
        font-size: 14px;
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .collapse {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .booking-form {
        padding: 30px;
    }

    .service-card,
    .pricing-card,
    .testimonial-card,
    .track-record .card {
        margin-bottom: 20px;
    }

    .mechanic-image {
        height: 400px;
    }

    .newsletter-img {
        height: 350px;
    }

    .footer-logo img {
        max-width: 180px;
    }

    .footer-content-p1 {
        max-width: 300px;
    }
}

/* Small screens (Large phones, 768px and below) */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
        width: 100%;
        height: auto;
    }

    .contact-info {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .form-control {
        font-size: 14px;
        height: 45px;
    }

    .form-control#message {
        height: 100px;
    }

    .btn-submit {
        height: 50px;
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-schedule {
        width: 200px;
        height: 45px;
        font-size: 14px;
    }

    .booking-form {
        padding: 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .mechanic-image {
        height: 300px;
    }

    .product-image {
        width: 100%;
        max-width: 220px;
        height: 150px;
    }

    .step-image {
        height: 200px;
    }

    .main-heading {
        font-size: 28px;
    }

    .newsletter-img {
        height: 300px;
    }

    .newsletter-form .form-control,
    .btn-subscribe,
    #footer-email,
    .footer-side1-btn {
        width: 100% !important;
        max-width: 100%;
        height: 45px !important;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-content-p1 {
        max-width: 100%;
    }

    .footer2div h3,
    .footer3div h3,
    .footer4div h3 {
        font-size: 16px;
    }

    .footer2div a,
    .footer3div p,
    .footer4div-logo-content a {
        font-size: 14px;
    }
}

/* Extra small screens (Small phones, 576px and below) */
@media (max-width: 576px) {
    .contact-form {
        padding: 15px;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-header small {
        font-size: 12px;
    }

    .form-control {
        font-size: 13px;
        height: 40px;
    }

    .form-control#message {
        height: 90px;
    }

    .btn-submit {
        height: 45px;
        font-size: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon i {
        font-size: 16px;
    }

    .contact-details h5 {
        font-size: 14px;
    }

    .contact-details p {
        font-size: 13px;
    }

    .map-placeholder {
        height: 200px;
    }

    .top-bar {
        font-size: 10px;
        padding: 6px 0;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .btn-login {
        max-width: 120px;
        height: 40px !important;
        font-size: 13px;
    }

    .btn-search,
    .btn-cart {
        width: 35px !important;
        height: 35px !important;
        font-size: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 13px;
    }

    .btn-schedule {
        width: 180px;
        height: 40px;
        font-size: 12px;
    }

    .booking-form h4 {
        font-size: 18px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 18px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
    }

    .feature-icon i {
        font-size: 16px;
    }

    .mechanic-image {
        height: 250px;
    }

    .product-image {
        width: 100%;
        max-width: 180px;
        height: 120px;
    }

    .step-image {
        height: 150px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }

    .main-heading {
        font-size: 24px;
    }

    .section-label {
        font-size: 12px;
    }

    .pricing-card {
        padding: 15px;
    }

    .price {
        font-size: 28px;
    }

    .testimonial-img {
        width: 50px;
        height: 50px;
    }

    .newsletter-img {
        height: 200px;
    }

    .newsletter-form .form-control,
    .btn-subscribe,
    #footer-email,
    .footer-side1-btn {
        width: 100% !important;
        max-width: 100%;
        height: 40px !important;
        font-size: 13px;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-content-p1,
    .footer-content-p2 {
        font-size: 14px;
    }

    .footer2div h3,
    .footer3div h3,
    .footer4div h3 {
        font-size: 14px;
    }

    .footer2div a,
    .footer3div p,
    .footer4div-logo-content a {
        font-size: 12px;
    }

    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 12px;
    }
}

/* Extra extra small screens (Very small phones, 425px and below) */
@media (max-width: 425px) {
    .contact-form {
        padding: 10px;
    }

    .contact-info {
        padding: 10px;
    }

    .contact-header h2 {
        font-size: 1.5rem;
    }

    .contact-header small {
        font-size: 10px;
    }

    .form-control {
        font-size: 12px;
        height: 38px;
    }

    .form-control#message {
        height: 80px;
    }

    .btn-submit {
        height: 40px;
        font-size: 13px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }

    .contact-icon i {
        font-size: 14px;
    }

    .contact-details h5 {
        font-size: 13px;
    }

    .contact-details p {
        font-size: 12px;
    }

    .map-placeholder {
        height: 180px;
    }

    .top-bar {
        font-size: 9px;
    }

    .navbar-brand {
        font-size: 16px;
    }

    .btn-login {
        max-width: 100px;
        height: 35px !important;
        font-size: 12px;
    }

    .btn-search,
    .btn-cart {
        width: 30px !important;
        height: 30px !important;
        font-size: 9px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 12px;
    }

    .btn-schedule {
        width: 160px;
        height: 35px;
        font-size: 11px;
    }

    .booking-form {
        padding: 10px;
    }

    .booking-form h4 {
        font-size: 16px;
    }

    .form-control {
        padding: 6px;
        font-size: 12px;
    }

    .btn-book {
        height: 40px;
        font-size: 13px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 16px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
    }

    .feature-icon i {
        font-size: 14px;
    }

    .mechanic-image {
        height: 200px;
    }

    .product-image {
        width: 100%;
        max-width: 160px;
        height: 100px;
    }

    .step-image {
        height: 120px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 13px;
    }

    .main-heading {
        font-size: 20px;
    }

    .section-label {
        font-size: 10px;
    }

    .price {
        font-size: 24px;
    }

    .testimonial-img {
        width: 40px;
        height: 40px;
    }

    .newsletter-img {
        height: 180px;
    }

    .newsletter-form .form-control,
    .btn-subscribe,
    #footer-email,
    .footer-side1-btn {
        width: 100% !important;
        max-width: 100%;
        height: 38px !important;
        font-size: 12px;
    }

    .footer-logo img {
        max-width: 100px;
    }

    .footer-content-p1,
    .footer-content-p2 {
        font-size: 13px;
    }

    .footer2div h3,
    .footer3div h3,
    .footer4div h3 {
        font-size: 13px;
    }

    .footer2div a,
    .footer3div p,
    .footer4div-logo-content a {
        font-size: 11px;
    }

    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 11px;
    }
}


/* fancy box */

.fancy-map-container {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fancy-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.fancy-map-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

.map-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.map-header h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.map-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.map-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 2;
}

.map-image-wrapper:hover {
    transform: scale(1.02);
}

.map-image-wrapper img {
    width: 668px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 52, 52, 0.8), rgba(255, 52, 52, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.map-overlay:hover {
    opacity: 1;
}

.map-overlay-content {
    text-align: center;
    color: white;
}

.map-overlay-content i {
    font-size: 48px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.map-overlay-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-overlay-content p {
    font-size: 16px;
    margin: 0;
}

.location-details {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: white;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-item i {
    font-size: 20px;
    margin-right: 15px;
    color: #FFD700;
    width: 30px;
    text-align: center;
}

.location-item span {
    font-size: 16px;
    font-weight: 500;
}

.get-directions-btn {
    background: linear-gradient(45deg, #FF3434, #FF6B6B);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 52, 52, 0.3);
    position: relative;
    z-index: 2;
    margin-top: 20px;
    width: 100%;
}

.get-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 52, 52, 0.4);
    background: linear-gradient(45deg, #FF6B6B, #FF3434);
}

.get-directions-btn i {
    margin-right: 10px;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
    }
}

@media screen and (max-width: 425px) {
    .flex-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

@media (max-width: 576px) {
    .flex-3 {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .flex-3 {
        flex-direction: column;
        align-items: center;
    }
}

@media(max-width: 1024px) {
    #footer-email {
        width: 100%;
        max-width: 450px;
        height: 56px !important;
    }

    .footer-side1-btn {
        width: 100%;
        max-width: 450px;
        height: 56px !important;
    }
}

.span1 {
    white-space: nowrap;
}