/* =========================================================
   ROOT
========================================================= */

:root {

    --primary: #111827;
    --dark: #0b0f17;
    --red: #e11d2e;
    --red-dark: #b91c2b;
    --orange: #f97316;

    --light: #f7f8fa;
    --white: #ffffff;

    --text: #4b5563;
    --border: #e5e7eb;

    --shadow:
        0 20px 60px rgba(15, 23, 42, 0.10);

    --radius: 18px;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 100px 0;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background: var(--dark);

    color: #d1d5db;

    padding: 9px 0;

    font-size: 12px;

    font-weight: 600;

}

.top-bar i {

    color: #f87171;

    margin-right: 5px;

}


/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {

    background: var(--white);

    padding: 17px 0;

    border-bottom: 1px solid #eee;

    position: sticky;

    top: 0;

    z-index: 1000;

}


.navbar-brand {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 20px;

    font-weight: 900;

    color: var(--primary);

}


.navbar-brand small {

    display: block;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #6b7280;

}


.brand-icon {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--red);

    color: white;

    border-radius: 10px;

    font-size: 19px;

}


.nav-link {

    color: #374151 !important;

    font-weight: 600;

    font-size: 14px;

    padding: 10px 15px !important;

}


.nav-link:hover {

    color: var(--red) !important;

}


.btn-call {

    background: var(--red);

    color: white;

    border-radius: 8px;

    padding: 11px 20px;

    font-weight: 700;

    font-size: 14px;

}


.btn-call:hover {

    background: var(--red-dark);

    color: white;

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    min-height: 720px;

    display: flex;

    align-items: center;

    position: relative;

    background-image:

        url("towingimg.png");

    background-size: cover;

    background-position: center;

    overflow: hidden;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(5, 10, 18, .94) 0%,
            rgba(5, 10, 18, .78) 48%,
            rgba(5, 10, 18, .30) 100%
        );

}


.hero-content {

    position: relative;

    color: white;

}


.emergency-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: rgba(225, 29, 46, .16);

    border: 1px solid rgba(248, 113, 113, .35);

    color: #fecaca;

    padding: 8px 14px;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}


.pulse-dot {

    width: 8px;

    height: 8px;

    background: #ef4444;

    border-radius: 50%;

    box-shadow: 0 0 0 5px rgba(239, 68, 68, .15);

}


.hero-content h1 {

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.04;

    font-weight: 900;

    letter-spacing: -2.5px;

    margin: 25px 0;

    max-width: 760px;

}


.hero-content h1 span {

    color: #f87171;

}


.hero-content p {

    color: #d1d5db;

    font-size: 17px;

    max-width: 650px;

}


.hero-buttons {

    display: flex;

    gap: 13px;

    flex-wrap: wrap;

    margin-top: 30px;

}


.btn-primary-custom {

    background: var(--red);

    color: white;

    padding: 14px 25px;

    border-radius: 8px;

    font-weight: 800;

}


.btn-primary-custom:hover {

    background: #b91c2b;

    color: white;

    transform: translateY(-2px);

}


.btn-outline-light-custom {

    color: white;

    border: 1px solid rgba(255,255,255,.35);

    padding: 14px 25px;

    border-radius: 8px;

    font-weight: 700;

}


.btn-outline-light-custom:hover {

    background: white;

    color: var(--dark);

}


.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 22px;

    margin-top: 30px;

    font-size: 12px;

    font-weight: 600;

    color: #d1d5db;

}


.hero-trust i {

    color: #f87171;

    margin-right: 5px;

}


/* =========================================================
   EMERGENCY CARD
========================================================= */

.emergency-card {

    background: rgba(255,255,255,.97);

    border-radius: 22px;

    padding: 35px;

    box-shadow: 0 30px 80px rgba(0,0,0,.25);

    position: relative;

}


.card-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fee2e2;

    color: var(--red);

    border-radius: 15px;

    font-size: 25px;

    margin-bottom: 20px;

}


.emergency-card h3 {

    color: var(--dark);

    font-size: 27px;

    font-weight: 900;

}


.emergency-card p {

    font-size: 14px;

}


.emergency-number {

    background: #f8fafc;

    padding: 17px;

    border-radius: 12px;

    margin: 20px 0;

}


.emergency-number span {

    display: block;

    font-size: 11px;

    text-transform: uppercase;

    font-weight: 800;

    color: #6b7280;

}


.emergency-number a {

    font-size: 25px;

    color: var(--red);

    font-weight: 900;

}


.emergency-btn {

    width: 100%;

    background: var(--red);

    color: white;

    padding: 13px;

    font-weight: 800;

    border-radius: 8px;

}


.emergency-btn:hover {

    background: var(--red-dark);

    color: white;

}


/* =========================================================
   QUICK INFO
========================================================= */

.quick-info {

    background: white;

    position: relative;

    z-index: 5;

}


.quick-box {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px;

    border-right: 1px solid var(--border);

}


.quick-box > i {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fef2f2;

    color: var(--red);

    border-radius: 10px;

}


.quick-box strong {

    display: block;

    color: var(--dark);

    font-size: 14px;

}


.quick-box span {

    display: block;

    font-size: 12px;

    color: #6b7280;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading span {

    color: var(--red);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

}


.section-heading h2 {

    color: var(--dark);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 900;

    letter-spacing: -1.5px;

    margin: 10px 0 15px;

}


.section-heading p {

    max-width: 600px;

    margin: auto;

    color: #6b7280;

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background: var(--light);

}


.service-card {

    background: white;

    border: 1px solid var(--border);

    padding: 30px;

    border-radius: var(--radius);

    height: 100%;

    transition: .3s;

}


.service-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: transparent;

}


.service-icon {

    width: 58px;

    height: 58px;

    background: #fff1f2;

    color: var(--red);

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;

    margin-bottom: 22px;

}


.service-card h3 {

    font-size: 19px;

    font-weight: 800;

    color: var(--dark);

}


.service-card p {

    font-size: 14px;

    color: #6b7280;

}


.service-card a {

    display: inline-block;

    color: var(--red);

    font-size: 13px;

    font-weight: 800;

    margin-top: 10px;

}


.service-card a i {

    margin-left: 5px;

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background: white;

}


.about-image {

    position: relative;

}


.about-image img {

    width: 100%;

    height: 550px;

    object-fit: cover;

    border-radius: 22px;

}


.experience-box {

    position: absolute;

    bottom: 25px;

    left: 25px;

    background: var(--red);

    color: white;

    padding: 20px 25px;

    border-radius: 13px;

    display: flex;

    align-items: center;

    gap: 12px;

    box-shadow: 0 15px 40px rgba(225,29,46,.3);

}


.experience-box strong {

    font-size: 30px;

    line-height: 1;

}


.experience-box span {

    font-size: 11px;

    text-transform: uppercase;

    font-weight: 800;

}


.about-text {

    font-size: 15px;

}


.about-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px;

    margin: 25px 0;

}


.about-points div {

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;

}


.about-points i {

    color: var(--red);

    margin-right: 5px;

}


.btn-dark-custom {

    background: var(--dark);

    color: white;

    padding: 13px 22px;

    font-weight: 800;

    border-radius: 8px;

}


.btn-dark-custom:hover {

    background: var(--red);

    color: white;

}


/* =========================================================
   WHY US
========================================================= */

.why-section {

    background: var(--light);

}


.why-card {

    background: white;

    padding: 30px;

    border-radius: 18px;

    position: relative;

    overflow: hidden;

    height: 100%;

    border: 1px solid var(--border);

}


.why-number {

    position: absolute;

    top: 15px;

    right: 20px;

    font-size: 45px;

    font-weight: 900;

    color: #f3f4f6;

}


.why-card > i {

    color: var(--red);

    font-size: 25px;

    margin-bottom: 20px;

}


.why-card h3 {

    font-size: 18px;

    font-weight: 800;

    color: var(--dark);

}


.why-card p {

    font-size: 13px;

    margin: 0;

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 70px 0;

    background: white;

}


.cta-box {

    background:

        linear-gradient(
            110deg,
            #111827,
            #1f2937
        );

    padding: 45px;

    border-radius: 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    color: white;

}


.cta-box span {

    color: #fca5a5;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

}


.cta-box h2 {

    font-size: clamp(28px, 4vw, 42px);

    font-weight: 900;

    margin: 8px 0;

}


.cta-box p {

    margin: 0;

    color: #9ca3af;

}


.cta-button {

    background: var(--red);

    color: white;

    white-space: nowrap;

    padding: 15px 25px;

    font-weight: 800;

    border-radius: 8px;

}


.cta-button:hover {

    background: white;

    color: var(--dark);

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: var(--light);

}


.contact-details {

    margin-top: 30px;

}


.contact-item {

    display: flex;

    gap: 15px;

    margin-bottom: 25px;

}


.contact-icon {

    flex-shrink: 0;

    width: 48px;

    height: 48px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: white;

    color: var(--red);

    border-radius: 10px;

}


.contact-item small {

    display: block;

    font-size: 10px;

    font-weight: 900;

    color: #9ca3af;

    letter-spacing: 1px;

}


.contact-item a {

    color: var(--dark);

    font-weight: 800;

    font-size: 16px;

}


.contact-item p {

    margin: 2px 0 0;

    font-size: 13px;

}


.contact-form-box {

    background: white;

    padding: 35px;

    border-radius: 20px;

    box-shadow: var(--shadow);

}


.form-header {

    margin-bottom: 25px;

}


.form-header h3 {

    color: var(--dark);

    font-size: 25px;

    font-weight: 900;

}


.form-header p {

    font-size: 13px;

    margin: 0;

}


.form-control,
.form-select {

    min-height: 50px;

    border: 1px solid var(--border);

    border-radius: 8px;

    font-size: 13px;

}


textarea.form-control {

    min-height: 120px;

}


.form-control:focus,
.form-select:focus {

    border-color: var(--red);

    box-shadow: 0 0 0 3px rgba(225,29,46,.08);

}


label {

    display: block;

    font-size: 12px;

    font-weight: 800;

    color: var(--dark);

    margin-bottom: 6px;

}


.form-submit {

    width: 100%;

    background: #16a34a;

    color: white;

    padding: 14px;

    border-radius: 8px;

    font-weight: 800;

    border: none;

}


.form-submit:hover {

    background: #15803d;

    color: white;

}


/* =========================================================
   MAP
========================================================= */

.map-section iframe {

    width: 100%;

    height: 400px;

    border: 0;

    display: block;

}


/* =========================================================
   SEO SECTION
========================================================= */

.seo-section {

    padding: 75px 0;

    background: #f8fafc;

    border-top: 1px solid var(--border);

}


.seo-content {

    max-width: 1000px;

    margin: 35px auto 0;

    text-align: center;

}


.seo-content p {

    font-size: 14px;

    line-height: 1.9;

    color: #64748b;

}


.keyword-list {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 25px;

}


.keyword-list span {

    background: white;

    border: 1px solid #e2e8f0;

    padding: 8px 13px;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 600;

    color: #475569;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: var(--dark);

    color: #9ca3af;

    padding: 70px 0 20px;

}


.footer-brand {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: white;

    font-size: 19px;

    font-weight: 900;

    margin-bottom: 20px;

}


.footer-brand .brand-icon {

    width: 40px;

    height: 40px;

}


.footer p {

    font-size: 13px;

    max-width: 450px;

}


.footer h4 {

    color: white;

    font-size: 15px;

    margin-bottom: 20px;

    font-weight: 800;

}


.footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer li {

    margin-bottom: 9px;

}


.footer li a {

    color: #9ca3af;

    font-size: 13px;

}


.footer li a:hover {

    color: white;

}


.footer-social {

    display: flex;

    gap: 8px;

    margin-top: 20px;

}


.footer-social a {

    width: 36px;

    height: 36px;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 1px solid #374151;

    color: #d1d5db;

    border-radius: 8px;

}


.footer-social a:hover {

    background: var(--red);

    border-color: var(--red);

    color: white;

}


.footer-contact p {

    display: flex;

    gap: 10px;

}


.footer-contact i {

    color: #f87171;

    margin-top: 5px;

}


.footer-contact a {

    color: #d1d5db;

}


.footer hr {

    border-color: #374151;

    margin: 40px 0 20px;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    margin: 0;

    font-size: 11px;

}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-buttons {

    position: fixed;

    right: 18px;

    bottom: 20px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.floating-buttons a {

    width: 53px;

    height: 53px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    border-radius: 50%;

    font-size: 22px;

    box-shadow: 0 8px 25px rgba(0,0,0,.2);

    transition: .25s;

}


.floating-buttons a:hover {

    transform: scale(1.08);

}


.float-call {

    background: var(--red);

}


.float-whatsapp {

    background: #16a34a;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .main-navbar {

        padding: 12px 0;

    }


    .navbar-collapse {

        padding-top: 15px;

    }


    .hero-section {

        min-height: auto;

        padding: 100px 0;

    }


    .emergency-card {

        max-width: 500px;

    }


    .quick-box {

        border-bottom: 1px solid var(--border);

    }


    .cta-box {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 767px) {

    .section-padding {

        padding: 70px 0;

    }


    .hero-section {

        padding: 80px 0;

    }


    .hero-content h1 {

        letter-spacing: -1.5px;

    }


    .hero-content p {

        font-size: 15px;

    }


    .hero-trust {

        flex-direction: column;

        gap: 8px;

    }


    .about-image img {

        height: 400px;

    }


    .about-points {

        grid-template-columns: 1fr;

    }


    .contact-form-box {

        padding: 25px 20px;

    }


    .cta-box {

        padding: 30px 25px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 5px;

    }

}


@media (max-width: 480px) {

    .hero-content h1 {

        font-size: 40px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons a {

        width: 100%;

        text-align: center;

    }


    .emergency-card {

        padding: 25px;

    }


    .quick-box {

        padding: 18px;

    }

}