body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* HERO */
.hero {
    background: url("images/company-car.jpg") center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.logo {
    font-size: 50px;
    font-weight: bold;
    color: #e69138;
    letter-spacing: 5px;
}

/* NAV */
nav {
    background: #0b5394;
    padding: 12px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 20px;
}

nav a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

/* SECTIONS */
section {
    background: white;
    margin: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 1;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery img:hover {
    transform: scale(1.08);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.lightbox.hidden {
    display: none;
}

.lightbox img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 15px;
}

.close, .arrow {
    position: absolute;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.close { top: 20px; right: 30px; }
.arrow.left { left: 30px; }
.arrow.right { right: 30px; }

/* CALL BUTTON */
.call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e69138;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
}
/* ================= PREMIUM HERO ================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, #0b5394, #072f57);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: #e69138;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #e69138;
    color: white;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn.secondary {
    border: 2px solid white;
    color: white;
}

.btn.secondary:hover {
    background: white;
    color: #0b5394;
}

.hero-trust {
    color: #dcdcdc;
    font-size: 0.95rem;
}

/* HERO IMAGE */
.hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: translateY(10px);
}

/* MOBILE */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }
}
/* ================= SERVICES ================= */
.services {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.2);
}

.service-card .icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #0b5394;
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 600px) {
    .service-card {
        padding: 25px 15px;
    }
}
/* ================= TRUST SECTION ================= */
.trust {
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.trust-card h3 {
    color: #0b5394;
    margin-bottom: 12px;
}

.trust-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}
/* TRUST BADGES */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 10px;
    flex-wrap: wrap;
}

.trust-badges img {
    max-height: 90px;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.trust-badges img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
.main-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

/* GET A QUOTE FLOAT */
.quote-box {
    position: fixed;
    top: 35%;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    z-index: 3000;
    text-align: center;
}

.quote-box h4 {
    margin-bottom: 10px;
    color: #0b5394;
}

.quote-box a {
    display: block;
    margin: 8px 0;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    background: #25D366;
}

.quote-box a:last-child {
    background: #0b5394;
}

/* MAP */
.map-container {
    margin-top: 25px;
    border-radius: 14px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .quote-box {
        display: none;
    }
}
.accreditations {
    text-align: center;
    padding: 60px 20px;
}

.accreditation-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.accreditation-logos img {
    max-height: 90px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.accreditation-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.accreditation-text {
    max-width: 700px;
    margin: auto;
    color: #555;
}
.why-us {
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    font-weight: bold;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
}
