:root {
    --color-primary: #1A3263;
    --color-primary-dark: #0F1F47;
    --color-accent: #7AB829;
    --color-accent-dark: #5E8F1F;
    --color-dark: #0F1F47;
    --color-text: #1E293B;
    --color-muted: #64748B;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F4F6FA;
    --color-border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.15);
    --radius: 12px;
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--color-primary-dark); }

/* === Navbar === */
.navbar {
    position: sticky;
    top: 0;
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--color-dark);
}
.logo-img {
    height: 110px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    color: var(--color-text);
    font-weight: 500;
}
.nav-links a:hover { color: var(--color-primary); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

/* === Hero === */
.hero {
    background:
        linear-gradient(135deg, rgba(10, 21, 48, 0.88) 0%, rgba(15, 31, 71, 0.78) 50%, rgba(26, 50, 99, 0.85) 100%),
        url('../img/hero-banner.jpg') center center / cover no-repeat;
    color: white;
    padding: 7rem 0 8rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 184, 41, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    filter: blur(40px);
    pointer-events: none;
}

.hero-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content-left {
    text-align: left;
}
.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}
.hero-visual {
    position: relative;
}
.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: perspective(1000px) rotateY(-3deg);
    transition: transform 0.4s ease;
}
.hero-image-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}
.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 31, 71, 0.15) 0%, transparent 50%, rgba(122, 184, 41, 0.1) 100%);
    pointer-events: none;
}
.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--color-accent);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(122, 184, 41, 0.4);
    border: 2px solid #A8E063;
}
.hero-badge strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.hero-badge span {
    font-size: 0.75rem;
    opacity: 0.95;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #A8E063;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding: 0.5rem 1.25rem;
    background: rgba(122, 184, 41, 0.08);
    border: 1px solid rgba(168, 224, 99, 0.3);
    border-radius: 999px;
}
.hero-tagline::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 12px var(--color-accent);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 .accent {
    color: #A8E063;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin: 0 auto 2.5rem;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-content-left .hero-stats {
    margin: 0;
}
.hero-content-left .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.hero-stats {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    max-width: 720px;
    margin: 0 auto;
}
.stat {
    text-align: center;
    flex: 1;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:last-child {
    border-right: none;
}
.stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #A8E063 0%, #7AB829 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}
.stat span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
}
.btn-primary {
    background: var(--color-accent);
    color: white;
}
.btn-primary:hover {
    background: var(--color-accent-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    border-color: white;
    color: white;
    background: transparent;
}
.btn-outline:hover {
    background: white;
    color: var(--color-primary-dark);
}
.btn-block {
    display: block;
    width: 100%;
}

/* === Trust strip === */
.trust-strip {
    background: linear-gradient(90deg, #7AB829 0%, #5E8F1F 100%);
    color: white;
    padding: 1.5rem 0;
}
.trust-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-badge {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: 720px;
}
.trust-text strong {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.trust-text span {
    font-size: 0.95rem;
    opacity: 0.95;
}
@media (max-width: 640px) {
    .trust-content { text-align: center; }
    .trust-text { align-items: center; }
}

/* === Sections === */
.section {
    padding: 5rem 0;
}
.section-alt {
    background: var(--color-bg-alt);
}
.section-dark {
    background: var(--color-dark);
    color: white;
}
.section-dark h2 { color: white; }
.section-dark .section-header p { color: #94A3B8; }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}
.section-header p {
    color: var(--color-muted);
    font-size: 1.125rem;
}

/* === Grids === */
.grid {
    display: grid;
    gap: 2rem;
}
.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-4 {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
}
.grid-4::-webkit-scrollbar {
    height: 6px;
}
.grid-4::-webkit-scrollbar-track {
    background: var(--color-border);
    border-radius: 3px;
}
.grid-4::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}
.grid-4 .product-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
}
.grid-4 .product-img-real {
    aspect-ratio: 4 / 3;
    height: auto;
}
.grid-4 .product-body {
    padding: 1.1rem;
}
.grid-4 .product-body h3 {
    font-size: 1.05rem;
}
.grid-4 .product-body > p {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}
.grid-4 .features li {
    font-size: 0.8rem;
    padding: 0.3rem 0;
}

/* === Services tiles === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
}
.service-tile {
    position: relative;
    background: white;
    padding: 2.5rem 2rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    overflow: hidden;
    isolation: isolate;
}
.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--color-primary);
    transition: height 0.35s ease;
}
.service-tile[data-accent="accent"]::before {
    background: var(--color-accent);
}
.service-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 31, 71, 0.15);
    border-color: transparent;
}
.service-tile:hover::before {
    height: 8px;
}
.service-number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.08;
    line-height: 1;
    z-index: -1;
    letter-spacing: -2px;
}
.service-tile[data-accent="accent"] .service-number {
    color: var(--color-accent);
}
.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2D4A82 100%);
    border-radius: 18px;
    color: white;
    margin-bottom: 1.25rem;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(26, 50, 99, 0.25);
}
.service-icon svg {
    width: 36px;
    height: 36px;
}
.service-tile[data-accent="accent"] .service-icon {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    box-shadow: 0 8px 20px rgba(122, 184, 41, 0.3);
}
.service-tile:hover .service-icon {
    transform: rotate(-6deg) scale(1.08);
}
.service-tile h3 {
    color: var(--color-dark);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}
.service-tile > p {
    color: var(--color-muted);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}
.service-features li {
    padding: 0.4rem 0;
    color: var(--color-text);
    font-size: 0.9rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: start;
}
.service-features li:first-child {
    border-top-color: var(--color-border);
}
.service-features li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    margin-right: 0.6rem;
    flex-shrink: 0;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.25s ease;
}
.service-tile[data-accent="accent"] .service-link {
    color: var(--color-accent-dark);
}
.service-link span {
    transition: transform 0.25s ease;
}
.service-link:hover {
    gap: 0.75rem;
}
.service-link:hover span {
    transform: translateX(4px);
}

/* === Product cards === */
.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.product-img-real {
    height: 240px;
    overflow: hidden;
    background: #F4F6FA;
    position: relative;
}
.product-img-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-real img {
    transform: scale(1.05);
}
.product-body {
    padding: 1.5rem;
}
.product-body h3 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}
.product-body > p {
    color: var(--color-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.features {
    list-style: none;
}
.features li {
    padding: 0.4rem 0;
    color: var(--color-text);
    font-size: 0.9rem;
    border-top: 1px solid var(--color-border);
}
.features li::before {
    content: '✓ ';
    color: var(--color-accent);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* === Fleet === */
.section-fleet {
    background: linear-gradient(135deg, #0F1F47 0%, #1A3263 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.section-fleet::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(122, 184, 41, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.section-fleet .section-header h2 { color: white; }
.section-fleet .section-header p { color: #CBD5E1; }

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}
.fleet-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(122, 184, 41, 0.25);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.fleet-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.fleet-card-img {
    overflow: hidden;
    background: white;
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-card-img img {
    transform: scale(1.03);
}
.fleet-card-body {
    padding: 1.5rem;
}
.fleet-card-tag {
    display: inline-block;
    background: rgba(122, 184, 41, 0.2);
    color: #A8E063;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}
.fleet-card-body h3 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}
.fleet-card-body p {
    color: #CBD5E1;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.fleet-card-features {
    list-style: none;
}
.fleet-card-features li {
    padding: 0.35rem 0;
    color: white;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.fleet-card-features li::before {
    content: '✓ ';
    color: var(--color-accent);
    font-weight: 700;
    margin-right: 0.5rem;
}
.fleet-services-strip {
    display: flex;
    gap: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
    padding-bottom: 0.5rem;
}
.fleet-services-strip::-webkit-scrollbar {
    height: 6px;
}
.fleet-services-strip::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}
.fleet-services-strip::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}
.fleet-service {
    flex: 1 1 0;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(122, 184, 41, 0.35);
    padding: 1.1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
    cursor: pointer;
    scroll-snap-align: start;
    position: relative;
}
.fleet-service::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.fleet-service:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(122, 184, 41, 0.35);
}
.fleet-service:hover::after {
    width: 100%;
}
.fleet-service:hover small,
.fleet-service:hover strong {
    color: white;
}
.fleet-service-text {
    display: flex;
    flex-direction: column;
}
.fleet-service strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.3px;
}
.fleet-service small {
    color: #A8E063;
    font-size: 0.78rem;
}

/* === Coverage === */
.coverage-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.coverage-info h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.coverage-info > p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}
.coverage-list {
    list-style: none;
    margin-bottom: 2rem;
}
.coverage-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}
.coverage-list li::before {
    content: '📍 ';
    margin-right: 0.5rem;
}
.coverage-list strong {
    color: var(--color-primary);
    margin-right: 0.5rem;
}
.coverage-map {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--color-primary);
}
.coverage-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}
.coverage-map-real {
    background: #0F1F47;
    min-height: 460px;
}
.coverage-map-real iframe {
    filter: invert(0.9) hue-rotate(180deg) brightness(0.95) contrast(1.05);
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: 0;
    display: block;
}
.map-pins-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
}
.pin-dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(122, 184, 41, 0.3), 0 0 16px rgba(122, 184, 41, 0.6);
    position: relative;
}
.pin-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    animation: pin-ring 2.5s ease-out infinite;
}
.map-pin-main .pin-dot {
    width: 18px;
    height: 18px;
    background: #A8E063;
    box-shadow: 0 0 0 4px rgba(168, 224, 99, 0.35), 0 0 24px rgba(168, 224, 99, 0.7);
}
.map-pin-main .pin-dot::after {
    border-color: #A8E063;
}
@keyframes pin-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.8); opacity: 0; }
}
.pin-label {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    background: rgba(15, 31, 71, 0.85);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(168, 224, 99, 0.35);
}
.map-pin-main .pin-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #A8E063;
}
.map-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(15, 31, 71, 0.95);
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.map-overlay-icon {
    font-size: 1.5rem;
}
.map-overlay strong {
    display: block;
    font-size: 1rem;
}
.map-overlay small {
    color: #A8E063;
    font-size: 0.85rem;
}

/* === Quote layout === */
.quote-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: start;
}
.quote-wrapper .form {
    margin: 0;
    max-width: none;
}
.quote-info-v2 {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    padding: 0;
    position: sticky;
    top: 100px;
    overflow: hidden;
}
.qi-header {
    padding: 1.75rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0F1F47 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.qi-header::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(122,184,41,0.25) 0%, transparent 60%);
    pointer-events: none;
}
.qi-badge {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
}
.qi-header h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
}
.qi-header p {
    color: #CBD5E1;
    font-size: 0.85rem;
    margin: 0;
    position: relative;
}
.qi-cta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.25s ease;
    position: relative;
}
.qi-cta strong {
    display: block;
    color: var(--color-dark);
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}
.qi-cta span {
    color: var(--color-muted);
    font-size: 0.85rem;
}
.qi-cta > div {
    flex: 1;
}
.qi-arrow {
    color: var(--color-muted);
    font-size: 1.25rem;
    transition: transform 0.25s ease;
}
.qi-cta:hover .qi-arrow {
    transform: translateX(4px);
}
.qi-cta-wa {
    background: rgba(37, 211, 102, 0.05);
}
.qi-cta-wa:hover {
    background: rgba(37, 211, 102, 0.12);
}
.qi-cta-wa .qi-cta-svg {
    width: 32px;
    height: 32px;
    color: white;
    background: #25D366;
    padding: 6px;
    border-radius: 10px;
    flex-shrink: 0;
}
.qi-cta-wa:hover strong { color: #25D366; }
.qi-cta-wa:hover .qi-arrow { color: #25D366; }
.qi-cta-phone:hover {
    background: rgba(26, 50, 99, 0.05);
}
.qi-cta-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2D4A82 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.qi-cta-icon svg {
    width: 18px;
    height: 18px;
}
.qi-cta-phone:hover strong { color: var(--color-primary); }
.qi-cta-phone:hover .qi-arrow { color: var(--color-primary); }
.qi-divider {
    text-align: center;
    padding: 0.75rem 1.5rem 0;
    position: relative;
}
.qi-divider span {
    background: white;
    padding: 0 0.75rem;
    color: var(--color-muted);
    font-size: 0.75rem;
    position: relative;
    z-index: 1;
}
.qi-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: var(--color-border);
    z-index: 0;
}
.qi-mini {
    list-style: none;
    padding: 0.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.qi-mini li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.qi-mini-icon {
    width: 32px;
    height: 32px;
    background: rgba(26, 50, 99, 0.08);
    border-radius: 8px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.qi-mini-icon svg {
    width: 16px;
    height: 16px;
}
.qi-mini li:hover .qi-mini-icon {
    background: var(--color-primary);
    color: white;
}
.qi-mini a {
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 500;
}
.qi-mini a:hover {
    color: var(--color-primary);
}
.qi-foot {
    padding: 1rem 1.5rem 1.5rem;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}
.qi-foot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    font-size: 0.8rem;
}
.qi-foot-row span {
    color: var(--color-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.qi-foot-svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}
.qi-foot-row strong {
    color: var(--color-dark);
    text-align: right;
}

/* === Clients === */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.clients-single {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.clients-single .client-card {
    width: 260px;
    max-width: 100%;
    aspect-ratio: 3 / 2;
}
.client-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 0.85rem;
    transition: all var(--transition);
    padding: 1rem;
}
.client-card:hover {
    background: rgba(122, 184, 41, 0.08);
    border-color: var(--color-accent);
    color: var(--color-accent);
}
.client-card-logo {
    background: white;
    border-style: solid;
    border-color: transparent;
}
.client-card-logo img {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter var(--transition);
}
.client-card-logo:hover {
    background: white;
    border-color: var(--color-accent);
}
.client-card-logo:hover img {
    filter: grayscale(0%);
}
.clients-note {
    text-align: center;
    color: #CBD5E1;
    font-size: 0.95rem;
    margin-top: 1rem;
}
.clients-note a {
    color: var(--color-accent);
    font-weight: 600;
}

/* === Form === */
.form {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition);
    background: white;
    color: var(--color-text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
.form-group textarea {
    resize: vertical;
}
.form > .form-group {
    margin-bottom: 1.5rem;
}
.form .btn-primary {
    background: var(--color-primary);
    color: white;
}
.form .btn-primary:hover {
    background: var(--color-primary-dark);
}
.form-feedback {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    min-height: 1.5em;
}
.form-feedback.success { color: var(--color-accent); }
.form-feedback.error { color: #DC2626; }

/* === Contact === */
.contact-grid {
    text-align: center;
}
.contact-item {
    padding: 2rem 1rem;
}
.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.contact-item h3 {
    color: white;
    margin-bottom: 0.5rem;
}
.contact-item a,
.contact-item p {
    color: #CBD5E1;
}
.contact-item a:hover {
    color: var(--color-primary);
}

/* === Footer === */
.footer {
    background: #020617;
    color: #94A3B8;
    padding: 3rem 0 1.5rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.footer-col h4::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-accent);
    margin-top: 0.5rem;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #94A3B8;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(3px);
}
.footer-tag {
    color: #CBD5E1;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.footer-small {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-bottom: 0.35rem;
}
.footer-small a {
    color: #94A3B8;
}
.footer-small a:hover {
    color: var(--color-accent);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
}
.footer-credit {
    color: #94A3B8;
}
.footer-credit a {
    color: #A8E063;
    font-weight: 600;
}
.footer-credit a:hover {
    color: white;
}
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
@media (max-width: 540px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: transform 0.25s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}
.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    animation: wa-pulse-anim 2s ease-out infinite;
    z-index: 1;
}
@keyframes wa-pulse-anim {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Contact WhatsApp card */
.contact-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.contact-item-wa {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
}
.contact-item-wa:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    transform: translateY(-3px);
}
.contact-icon-wa {
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: inherit;
}
.contact-icon-wa svg {
    width: 28px;
    height: 28px;
}
.contact-item-wa h3 {
    color: white;
}
.contact-item-wa span {
    color: #25D366;
    font-weight: 600;
    font-size: 0.95rem;
}

/* === Responsive === */
@media (max-width: 900px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
    }
    .quote-info {
        position: static;
    }
}

@media (max-width: 960px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content-left {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-content-left .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image-frame {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -1.25rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }
    .nav-toggle {
        display: flex;
    }
    .hero { padding: 3rem 0 4rem; }
    .hero-stats { gap: 1.5rem; }
    .stat strong { font-size: 1.5rem; }
    .section { padding: 3rem 0; }
    .form { padding: 1.5rem; }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .coverage-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .fleet-services-strip {
        scroll-padding: 0 1rem;
    }
    .fleet-service {
        flex: 0 0 auto;
        min-width: 220px;
    }
    .logo-img { height: 80px; }
}
