
:root {
    --primary-red: #d90429;
    --dark-red: #b8001f;
    --dark-bg: #111111;
    --light-bg: #f8f9fa;
}
.text-muted {
    --bs-text-opacity: 1;
    color: rgb(0 0 0 / 75%) !important;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.top-header {
    background-color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.brand-logo {
    font-weight: 900;
    font-size: 24px;
    color: #000;
    text-transform: uppercase;
    line-height: 1;
}

#company-logo {
    height: 70px;
}

#company-logo2 {
    height: 90px;
}

.brand-logo span {
    color: var(--primary-red);
}

.brand-sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: #555;
    display: block;
    font-weight: 600;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-info-item i {
    font-size: 20px;
    color: var(--primary-red);
}

.header-info-text strong {
    display: block;
    font-size: 13px;
    line-height: 1.2;
}

.header-info-text span {
    font-size: 12px;
    color: #666;
}
.nav-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-cart-btn:hover {
    color: #dc3545 !important;
}

.cart-count {
    font-size: 10px;
    padding: 3px 6px;
    border: 2px solid #000;
}
.main-navbar {
    background-color: #0d0d0d;
    padding: 0;
}

.main-navbar .nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 15px 18px !important;
    text-transform: uppercase;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    background-color: var(--primary-red);
    color: #fff;
}

.btn-book-top {
    background-color: var(--primary-red);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 8px 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-section {
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(20,20,20,0.8) 50%, rgba(0,0,0,0.4) 100%), url('../img/home1.png') center/cover;
    color: #fff;
    padding: 70px 0;
    position: relative;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 15px;
    color: #ccc;
    margin-top: 15px;
    margin-bottom: 25px;
    max-width: 450px;
}


.btn-red {
    background-color: var(--primary-red);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-red:hover {
    background-color: var(--dark-red);
    color: #fff;
}

.btn-outline-custom {
    border: 1px solid #ffffff44;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    text-transform: uppercase;
}

.btn-outline-custom:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.emergency-bar {
    background-color: #1a1a1a;
    border-radius: 6px;
    padding: 12px 20px;
    /* margin-top: 30px; */
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #333;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

.section-title::before { left: -30px; }
.section-title::after { right: -30px; }

.search-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    height: 100%;
}

.search-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.search-card-header i {
    color: var(--primary-red);
    font-size: 18px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 28px;
}

.feature-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.2;
}

.feature-desc {
    font-size: 14px;
    color: #060606;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.product-card img {
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-brand {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.product-name {
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
}

.product-price {
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

.stars {
    color: var(--primary-red);
    font-size: 10px;
}

.why-card {
    text-align: center;
    padding: 10px;
}

.why-icon {
    font-size: 30px;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.why-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.why-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.2;
}

.review-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.banner-emergency {
    background: linear-gradient(90deg, #b8001f 0%, #d90429 100%);
    border-radius: 10px;
    padding: 25px 30px;
    color: #fff;
}

footer {
    background-color: #0a0a0a;
    color: #888;
    font-size: 12px;
    padding-top: 40px;
    padding-bottom: 20px;
}

footer h6 {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

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

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #888;
    text-decoration: none;
}

footer ul li a:hover {
    color: #fff;
}

.social-icons a {
    width: 30px;
    height: 30px;
    background: #222;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 5px;
    text-decoration: none;
    font-size: 12px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.brand-box {
    border: 1px solid #eee;
    padding: 6px;
    text-align: center;
    border-radius: 4px;
    font-weight: 800;
    font-size: 11px;
    font-style: italic;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    height: 100%;
}

.hero-section .row {
    align-items: flex-end !important;
}

.hero-car-col {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-img-wrapper {
    position: relative;
}

.hero-car-img {
    max-width: 120%;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: inline-block;
    margin-top: 40px;
    transform: translateY(20px);
    animation: driveInRight 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-wheel-img {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 50%;
    max-width: 308px;
    height: auto;
    z-index: 2;
    opacity: 0;
    animation: slideUpWheel 1s cubic-bezier(0.25, 1, 0.5, 1) 0.6s forwards;
}

@keyframes driveInRight {
    0% {
        opacity: 0;
        transform: translate(120px, 20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translate(0, 20px) scale(1);
    }
}

@keyframes slideUpWheel {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .hero-car-img {
        max-width: 100%;
        margin-top: 20px;
        transform: translateY(0);
    }

    .hero-wheel-img {
        width: 50%;
        right: 0;
        bottom: -10px;
    }

    @keyframes driveInRight {
        0% {
            opacity: 0;
            transform: translate(120px, 0) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: translate(0, 0) scale(1);
        }
    }
}
/* -------------Quick Search---------------- */
.quick-search-section {
    position: relative;
    z-index: 10;
    margin-top: -34px;
    padding-bottom: 40px;
}

.quick-search-wrapper {
    background: #ffffff;
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.search-card {
    border: 1px solid #eee;
    border-radius: 8px;
}
/* ------------Quick Search Brands-------------- */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.brand-box {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 6px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.brand-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 991px) {
    .quick-search-section {
        margin-top: 20px;
    }
}
/* ----------Feature Product-------------- */
.featured-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
}

.btn-view-all {
    background-color: #fff0f0;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    background-color: #ffe0e0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.product-item .img-box {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item .img-box img {
    max-height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: 14px;
    line-height: 1.2;
}

.extra-small {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stars {
    font-size: 8px;
}

.price {
    font-size: 11px;
}

@media (max-width: 576px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
/* ---------------Why choose us--------------- */
.why-choose-wrapper {
    background: #fcfcfc;
    border: 1px solid #eeeeee;
}

.why-item {
    position: relative;
}

.why-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #e5e5e5;
}

.why-icon {
    min-width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-title {
    font-size: 14px;
    letter-spacing: 0.3px;
}

.why-desc {
    font-size: 13px;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .why-item:not(:last-child)::after {
        display: none;
    }
    .why-item {
        border-bottom: 1px solid #eeeeee;
    }
    .why-item:last-child {
        border-bottom: none;
    }
}
/* -----------Review Section------------- */
.review-card {
    border-color: #f0f0f0 !important;
    min-height: 110px;
}

.review-avatar {
    object-fit: cover;
}

.google-logo i {
    color: #4285F4;
}

.stars {
    font-size: 10px;
}

.stars i {
    color: #e52521;
}

.review-text {
    font-size: 13px;
    line-height: 1.35;
    color: #555555 !important;
}

.extra-small {
    font-size: 10px;
}

/* Carousel Dots */
.review-pagination .dot {
    width: 7px;
    height: 7px;
    background-color: #d8d8d8;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-pagination .dot.active {
    background-color: #dc3545;
}
/* ---------Footer Section------------- */

.extra-small {
    font-size: 11px;
}
.leading-tight {
    line-height: 1.1;
}

.banner-emergency {
    background: linear-gradient(135deg, #700000 0%, #1a0000 40%, #0d0d0d 100%);
    border: 1px solid #333333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.banner-emergency .tyre-bg-overlay {
    position: absolute;
    left: -20px;
    top: -50%;
    width: 250px;
    height: 200%;
    background-image: url('../img/oil.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

.btn-call {
    background: linear-gradient(180deg, #d32f2f 0%, #9a0007 100%);
    border: 1px solid #ff5252;
}
.btn-call:hover {
    background: linear-gradient(180deg, #f44336 0%, #c62828 100%);
}

.btn-whatsapp-banner {
    background-color: #111111;
    border: 1px solid #333333;
}
.btn-whatsapp-banner:hover {
    background-color: #222222;
}

.bg-dark-footer {
    background-color: #0d0d0d;
}

.footer-title {
    font-size: 12px;
    letter-spacing: 0.5px;
}

@media (min-width: 992px) {
    .footer-col:not(:last-child) {
        border-right: 1px solid #1f1f1f;
    }
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #eadfdf;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #d40318;
}

.footer-contact li {
    color: #9e9e9e;
}

.social-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
}
.social-btn.facebook { background-color: #3b5998; }
.social-btn.instagram { background-color: #e1306c; }
.social-btn.whatsapp { background-color: #25d366; }
.social-btn.youtube { background-color: #ff0000; }

.newsletter-form input {
    font-size: 11px;
    padding: 6px 10px;
}
.newsletter-form input::placeholder {
    color: #888888;
}

.btn-red {
    background-color: #cc0000;
    color: #ffffff;
    font-size: 11px;
    border: none;
    letter-spacing: 0.5px;
}
.btn-red:hover {
    background-color: #e60000;
    color: #ffffff;
}

.emergency-banner-container {
    position: relative;
    z-index: 10;
    margin-bottom: -50px;
}
.bg-dark-footer {
    background-color: #0d0d0d;
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 20px;
}

.extra-small {
    font-size: 14px;
}
.leading-tight {
    line-height: 1.1;
}

/* =============About Page============ */
.extra-small {
    font-size: 11px;
}

.fs-7 {
    font-size: 10px;
}

.title-line {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #dc3545;
    vertical-align: middle;
}

.about-hero {
    background: url('../img/about.png') center/cover no-repeat;
}

.feature-bar-box {
    background-color: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
}

.extra-small {
    font-size: 14px;
    letter-spacing: 0.5px;
}
.small, small {
    font-size: 15px !important;
}
.btn-red {
    background-color: #d32f2f;
    color: #ffffff;
    border: none;
    transition: background 0.2s ease;
}

.btn-red:hover {
    background-color: #b71c1c;
    color: #ffffff;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-white-50 {
    color: white !important;
}
@media (min-width: 992px) {
    .border-start-lg {
        border-left: 1px solid #f16e75;
    }
}
.mission-vision-card {
    background-color: #f4f5f7;
}
.stat-label {
    font-size: 11px !important;
    line-height: 1.2;
    display: block;
    margin-top: 2px;
}
.stat-icon-wrapper {
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.stat-number {
    font-size: 18px;
    line-height: 1.1;
}
.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sub-title-text {
    font-size: 15px;
    letter-spacing: 0.5px;
}

.title-line-dot {
    flex-grow: 1;
    height: 1px;
    background-color: rgb(212, 3, 24);
    position: relative;
}

.title-line-dot::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #dc3545;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid #e0e0e0;
    }
}

.brand-slider {
    width: 100%;
    overflow: hidden;
}

.brand-slider div {
    text-align: center;
    padding: 0 10px;
}

.brand-slider img {
    height: 45px;
    max-width: 100%;
    width: auto;
    display: inline-block !important;
    object-fit: contain;
}
@media (max-width: 576px) {
    .brand-slider img {
        height: 35px;
    }
    .brand-slider div {
        padding: 0 5px;
    }
}
/* ==============Product Page============ */

.small-text {
    font-size: 11px;
}

.filter-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.category-list li {
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.category-list li:hover, .category-list li.active {
    background-color: #f8f9fa;
    color: #dc3545;
}

.product-card {
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.wishlist-btn {
    border: none;
    background: transparent;
    color: #888;
    cursor: pointer;
}

.wishlist-btn:hover {
    color: #dc3545;
}

.product-img-box img {
    max-height: 140px;
    object-fit: contain;
}

.product-title {
    font-size: 13px;
    line-height: 1.2;
}

.product-spec {
    font-size: 11px;
    display: block;
}

.stock-status {
    font-size: 11px;
    font-weight: 600;
}

@media (min-width: 1200px) {
    .col-xl-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}
.page-main-title {
    font-size: 26px;
    letter-spacing: 0.5px;
}

.feature-title {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.feature-sub {
    font-size: 10px;
    display: block;
    line-height: 1.1;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .col-xl-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* List View Styles */
#productContainer.list-view > [class*='col-'] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

#productContainer.list-view .product-card {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
    padding: 1rem 1.5rem !important;
}

#productContainer.list-view .product-img-box {
    width: 100px;
    margin: 0 !important;
    flex-shrink: 0;
}

#productContainer.list-view .brand-logo {
    margin-bottom: 0 !important;
}

#productContainer.list-view .product-card button.btn {
    width: auto !important;
}
/* ==============Product details========= */
.thumb-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}
.thumb-img.active, .thumb-img:hover {
    border-color: #dc3545;
}

.main-product-img {
    max-height: 380px;
    object-fit: contain;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.spec-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #444;
}

.qty-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ced4da;
    background: #f8f9fa;
    cursor: pointer;
}

.feature-bar {
    background-color: #f1f3f5;
    border-radius: 8px;
    padding: 15px 10px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-icon {
    font-size: 24px;
    color: #333;
}

.custom-tabs .nav-link {
    border: none;
    color: #555;
    font-weight: 600;
    padding: 10px 18px;
    text-transform: uppercase;
    font-size: 13px;
}
.custom-tabs .nav-link.active {
    background-color: #cc0000;
    color: white;
    border-radius: 4px 4px 0 0;
}

.related-card img {
    height: 90px;
    object-fit: contain;
}

.rating-bar-bg {
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    width: 120px;
}
.rating-bar-fill {
    height: 100%;
    background-color: #ffc107;
}
.custom-tabs-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.custom-tabs-container::-webkit-scrollbar {
    display: none;
}

.custom-tabs-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.custom-tabs .nav-item {
    flex-shrink: 0;
}

.custom-tabs .nav-link {
    border: none;
    color: #555;
    font-weight: 600;
    padding: 10px 16px;
    text-transform: uppercase;
    font-size: 13px;
    white-space: nowrap;
}

.custom-tabs .nav-link.active {
    background-color: #cc0000;
    color: white;
    border-radius: 4px 4px 0 0;
}
/* ============Service Page============= */
.services-hero-section {
    background: url('../img/service.png') center/cover no-repeat;
    padding: 80px 0 60px 0;
    color: #ffffff;
}

.services-hero-section .subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #d1d5db;
}

.services-hero-section .main-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.services-hero-section .text-red {
    color: #e60000;
}

.services-hero-section .hero-desc {
    max-width: 500px;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.features-badge-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 12px 20px;
    display: inline-flex;
    gap: 20px;
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.badge-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fee2e2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.services-grid-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.section-header .sub-head {
    color: #dc2626;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-header .main-head {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.section-header .main-head::before,
.section-header .main-head::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background-color: #cbd5e1;
}
.section-header .main-head::before { right: 100%; margin-right: 20px; }
.section-header .main-head::after { left: 100%; margin-left: 20px; }

.service-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card-img-wrapper {
    position: relative;
    height: 180px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.service-floating-icon {
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #dc2626;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    z-index: 10 !important;
}

.card-content {
    padding: 35px 20px 20px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 20px;
}

.btn-learn-more {
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 16px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    margin: 0 auto;
}

.btn-red {
    background-color: #cc0000;
    color: #ffffff;
    border: none;
}
.btn-red:hover {
    background-color: #ffffff;
    color: #cc0000;
}

@media (max-width: 768px) {
    .section-header .main-head::before,
    .section-header .main-head::after {
        display: none;
    }
    .services-hero-section .main-title {
        font-size: 30px;
    }
    .features-badge-box {
        flex-direction: column;
        gap: 15px;
    }
}
/* =============Contact Page============= */
.contact-hero {
    background: url('../img/contact.png') center/cover no-repeat;
    padding: 10px 0;
    color: #ffffff;
    position: relative;
}

.contact-hero .hero-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.contact-hero .hero-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
}

.contact-hero .hero-desc {
    color: #d1d5db;
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.contact-hero .breadcrumb-custom {
    font-size: 13px;
    font-weight: 600;
}

.contact-hero .breadcrumb-custom a {
    color: #ffffff;
    text-decoration: none;
}

.contact-hero .breadcrumb-custom span {
    color: var(--primary-red);
}

.contact-main-section {
    padding: 40px 0;
}

.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--card-border);
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.info-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-content .info-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 2px;
}

.info-content .info-value {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.message-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--card-border);
    height: 100%;
}

.form-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 15px;
    position: relative;
}

.form-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
}

.custom-input {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 13px;
    color: #334155;
    margin-bottom: 15px;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: var(--primary-red);
    box-shadow: none;
}

.btn-send {
    background-color: var(--primary-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.btn-send:hover {
    background-color: #a80000;
    color: #ffffff;
}

.assistance-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff00002e;
}

.headphone-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.assistance-title {
    font-size: 16px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 5px;
}

.assistance-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-action-red {
    background-color: var(--primary-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 10px;
}

.btn-action-dark {
    background-color: #18181b;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.map-branch-section {
    margin-top: 25px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    height: 100%;
    min-height: 280px;
}

.branch-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--card-border);
    height: 100%;
}

.branch-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.branch-title i {
    color: var(--primary-red);
}

.branch-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.branch-address {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

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

.feature-list li {
    font-size: 13px;
    color: #334155;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: var(--primary-red);
    font-size: 14px;
}

.branch-img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.feature-strip {
    background-color: #111111;
    border-radius: 8px;
    padding: 20px 10px;
    color: #ffffff;
}

.strip-col {
    position: relative;
    padding: 10px 15px;
}

@media (min-width: 992px) {
    .strip-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: #2a2a2a;
    }
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.strip-icon {
    font-size: 32px;
    color: #e60000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strip-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 3px;
    line-height: 1.2;
}

.strip-desc {
    font-size: 11px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.3;
}
.contact-hero .hero-img-box {
    display: inline-block;
    vertical-align: bottom;
}

.contact-hero img.slide-from-right {
    max-height: 250px;
    width: auto;
    display: block;
    margin-bottom: 0;
    animation: slideInRight 1.2s ease-out forwards;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(120px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* =========Appoinment Modal=========== */
.appointment-modal-content {
    border-radius: 12px;
    border: none;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.appointment-modal-content .modal-title {
    color: #0f172a;
    letter-spacing: 0.5px;
}

.custom-modal-input {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #334155;
}

.custom-modal-input:focus {
    background-color: #ffffff;
    border-color: #cc0000;
    box-shadow: none;
}

.btn-booking-submit {
    background-color: #cc0000;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px;
    border-radius: 8px;
    border: none;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.btn-booking-submit:hover {
    background-color: #a80000;
    color: #ffffff;
}
