/* ===================================================
   Five Gear Towing - Professional Light Theme
   =================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f9ff;
    color:#1f2937;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

header{
    background:#ffffff;
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:100;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    height:80px;
    width:auto;
    max-width:120px;
}

.company-info h2{
    color:#0f4c81;
    margin:0;
    font-size:24px;
}

.company-info p{
    color:#2563eb;
    margin:0;
    font-size:12px;
}

.call-btn{
    background:#2563eb;
    color:#fff;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    transition:.3s;
}

.call-btn:hover{
    background:#1d4ed8;
}

/* Hero */

.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

#heroImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 1.2s ease-in-out;
}

.overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,.25);
}

.hero h1 {
    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    color: #eef6ff;
    font-size: 22px;
    margin-bottom: 30px;
}

.btn{
    display:inline-block;
    padding:12px 25px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    margin:5px;
    transition:.3s;
}

.btn:hover{
    background:#1d4ed8;
}

.whatsapp{
    background:#22c55e;
}

/* Sections */

.about,
.features,
.contact,
.testimonials{
    padding:70px 0;
    background:#ffffff;
}

.services,
.quote,
.map,
.stats,
.gallery{
    padding:70px 0;
    background:#eef6ff;
}

section h2,
.gallery h2{
    text-align:center;
    font-size:36px;
    color:#0f4c81;
    margin-bottom:40px;
}

/* Cards */

.service-grid,
.testimonial-grid,
.stat-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-track img {
    width: 280px;
    height: 200px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(37,99,235,.18);
}

.card i{
    color:#2563eb;
    font-size:40px;
    margin-bottom:15px;
}

/* Features */

.features ul{
    list-style:none;
    margin-top:20px;
}

.features li{
    background:#fff;
    margin-bottom:12px;
    padding:14px;
    border-left:5px solid #2563eb;
    border-radius:8px;
    box-shadow:0 4px 10px rgba(0,0,0,.05);
}

/* Gallery */

.gallery-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform .6s ease-in-out;
}

    .gallery-track img {
        width: 350px;
        height: 250px;
        flex-shrink: 0;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,.12);
        transition: .3s;
    }

        .gallery-track img:hover {
            transform: scale(1.03);
        }

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
    transition: .3s;
}

    .gallery-btn:hover {
        background: #1d4ed8;
    }

    .gallery-btn.prev {
        left: 10px;
    }

    .gallery-btn.next {
        right: 10px;
    }

/* Testimonials */

.testimonial{
    background:#fff;
    padding:25px;
    border-left:5px solid #2563eb;
    border-radius:10px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

/* Stats */

.stat-grid{
    text-align:center;
}

.stat-grid h2{
    color:#2563eb;
    font-size:42px;
}

.stat-grid p{
    font-size:18px;
}

/* Contact */

.contact-box{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* Quote Form */

.quote form{
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width:700px;
    margin:auto;
}

.quote input,
.quote select,
.quote textarea{
    padding:15px;
    border:1px solid #cbd5e1;
    border-radius:8px;
    font-size:15px;
}

.quote button{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:8px;
    cursor:pointer;
}

.quote button:hover{
    background:#1d4ed8;
}

/* Map */

.map iframe{
    width:100%;
    border:0;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
}

/* Footer */

footer{
    background:#0f4c81;
    color:#fff;
    text-align:center;
    padding:25px;
}

/* Floating WhatsApp */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:32px;
    box-shadow:0 6px 16px rgba(0,0,0,.25);
}

/* Responsive */

@media (max-width:768px) {

    /* Hero Section */
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    /* Hero Image */
    #heroImage {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    /* Overlay */
    .overlay {
        padding: 20px;
        background: rgba(0,0,0,0.15);
    }

    /* Hero Content */
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

        .hero-content h1 {
            font-size: 2.2rem;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .hero-content p {
            font-size: 1.1rem;
            line-height: 1.5;
            margin-bottom: 10px;
        }

    /* Buttons */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 25px;
    }

        .hero-buttons .btn {
            width: 220px;
            padding: 14px 20px;
            font-size: 18px;
        }
}
