* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e2a3e;
    scroll-behavior: smooth;
}


/* ========== NAVBAR (light, clean) ========== */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid #ffecb3;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: #f97316 !important;
    display: flex;
    align-items: center;
}

.brand-mark {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-right: 8px;
    place-items: center;
    color: var(--night);
    background: var(--accent);
    border-radius: 8px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #2c3e4e !important;
    margin: 0 0.6rem;
    padding: 0.5rem 0;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f97316 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2.5px;
    background: #f97316;
    border-radius: 4px;
    transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    background: #fff3e0;
}


/* Floating buttons */

.float-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-float {
    width: 56px;
    height: 56px;
    border-radius: 30px;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.2s;
    text-decoration: none;
}

.btn-float-call {
    background: #f97316;
}

.btn-float:hover {
    transform: scale(1.07);
    background: #128C7E;
}

.btn-float-call:hover {
    background: #ea580c;
}


/* Hero section with tow truck background image (like fasttow.org) */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url("assets/i_1.jpg") no-repeat center center/cover;
    background-attachment: fixed;
    margin-top: 72px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(95deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(249, 115, 22, 0.9);
    color: white;
    border-radius: 60px;
    padding: 0.3rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

.btn-primary-custom {
    background: #f97316;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    transition: 0.2s;
    color: white;
}

.btn-primary-custom:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
}

.btn-outline-custom {
    border: 1.5px solid #f97316;
    background: transparent;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    color: #f97316;
}

.btn-outline-custom:hover {
    background: #fef3e8;
}

.section-title {
    font-weight: 800;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f97316;
    border-radius: 4px;
}

.service-card {
    background: white;
    border-radius: 32px;
    padding: 2rem 1.5rem;
    transition: 0.25s;
    border: 1px solid #fff0e0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #fed7aa;
    box-shadow: 0 20px 30px -12px rgba(249, 115, 22, 0.12);
}

.service-icon {
    background: #fff4e8;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #f97316;
    margin-bottom: 1.2rem;
}

.img-tow-unsplash {
    border-radius: 28px;
    object-fit: cover;
    width: 100%;
    height: 240px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.contact-card {
    background: white;
    border-radius: 32px;
    border: 1px solid #ffefdb;
    transition: 0.2s;
}

.icon-bg {
    background: #fef3e8;
    width: 44px;
    height: 44px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

footer {
    background: #1f2e3a;
    color: #e9ecef;
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-size: 1.7rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 1rem;
}

footer h6 {
    color: #f97316;
    font-weight: 700;
    margin-bottom: 1rem;
}

footer a {
    color: #cddbe9;
    text-decoration: none;
    transition: 0.2s;
}

footer a:hover {
    color: #f97316;
}

.social-icon {
    background: rgba(255, 255, 255, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.social-icon:hover {
    background: #f97316;
    color: white;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 68px;
        min-height: 70vh;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .navbar {
        padding: 0.7rem 1rem;
    }
    .float-buttons {
        bottom: 18px;
        right: 18px;
    }
}