:root {
    --primary: #0b5ed7;
    --primary-dark: #0a4eb8;
    --primary-darker: #073e8f;
    --accent: #ff8a00;
    --accent-hover: #e67a00;
    --dark: #0f1e35;
    --dark-2: #16294a;
    --light: #f4f7fc;
    --gray: #5b6b81;
    --border: #e3e9f2;
}

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: #243246;
    background: #fff;
    margin: 0;
    padding-bottom: 0;
}

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

/* ============ Top bar ============ */
.topbar {
    background: var(--dark);
    color: #c7d3e4;
    font-size: 0.82rem;
    padding: 0.45rem 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-left span { margin-right: 1.25rem; }
.topbar-left i { color: var(--accent); margin-right: 0.35rem; }
.topbar-left a { color: #c7d3e4; }
.topbar-left a:hover { color: #fff; }
.topbar-right a { color: #c7d3e4; margin-left: 1.25rem; }
.topbar-right a:hover { color: #fff; }
.topbar-right .topbar-cta { color: var(--accent); font-weight: 600; }

/* ============ Main nav ============ */
.main-nav {
    background: #fff;
    padding: 0.8rem 0;
    box-shadow: 0 2px 12px rgba(15, 30, 53, 0.07);
    position: sticky;
    top: 0;
    z-index: 1030;
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark) !important;
    letter-spacing: -0.02em;
}
.brand-logo {
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 0.5rem;
    font-size: 1.05rem;
}
.brand-accent { color: var(--accent); }
.nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    padding: 0.6rem 0.9rem !important;
    font-size: 0.95rem;
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.btn-book {
    background: var(--accent);
    border: none;
    font-weight: 700;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(255, 138, 0, 0.35);
}
.btn-book:hover { background: var(--accent-hover); color: #fff; }

/* ============ Buttons ============ */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-accent {
    background: var(--accent);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    box-shadow: 0 4px 14px rgba(255, 138, 0, 0.35);
}
.btn-accent:hover { background: var(--accent-hover); color: #fff; }
.btn-outline-light:hover { color: var(--primary-dark); }

/* ============ Hero ============ */
.hero {
    background: linear-gradient(100deg, var(--primary-darker) 0%, var(--primary) 55%, #1d7df0 100%);
    color: #fff;
    padding: 5.5rem 0 6.5rem;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.hero-badge i { color: var(--accent); }
.hero h1 { font-weight: 800; font-size: 3rem; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.hero p.lead { font-size: 1.1rem; color: #dbe7ff; max-width: 560px; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat .num { font-size: 2rem; font-weight: 800; display: block; }
.hero-stat .lbl { font-size: 0.85rem; color: #c3d4f5; }
.hero-cta { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============ Section helpers ============ */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--light); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-head .kicker {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.6rem;
}
.section-head h2 { font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.section-head p { color: var(--gray); }

/* ============ Service cards ============ */
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15, 30, 53, 0.12); }
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.2rem;
}
.service-card h5 { font-weight: 700; color: var(--dark); }
.service-card p { color: var(--gray); font-size: 0.93rem; flex-grow: 1; }
.card-link { font-weight: 600; font-size: 0.9rem; }
.card-link i { font-size: 0.75rem; transition: transform 0.2s; }
.card-link:hover i { transform: translateX(4px); }

/* ============ Why choose us ============ */
.why-card { text-align: center; padding: 1.5rem; }
.why-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(11, 94, 215, 0.08);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1rem;
}
.why-card h5 { font-weight: 700; color: var(--dark); }
.why-card p { color: var(--gray); font-size: 0.92rem; }

/* ============ Stats band ============ */
.stats-band {
    background: linear-gradient(100deg, var(--primary-darker), var(--primary));
    color: #fff;
    padding: 3.5rem 0;
}
.stat-item { text-align: center; }
.stat-item .num { font-size: 2.6rem; font-weight: 800; }
.stat-item .lbl { color: #c3d4f5; font-size: 0.92rem; }

/* ============ Testimonials ============ */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem;
    height: 100%;
    box-shadow: 0 6px 20px rgba(15, 30, 53, 0.05);
}
.testimonial-card .stars { color: var(--accent); margin-bottom: 0.8rem; }
.testimonial-card p { color: var(--gray); font-style: italic; }
.testimonial-person { display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.testimonial-person strong { display: block; font-size: 0.92rem; color: var(--dark); }
.testimonial-person span { font-size: 0.82rem; color: var(--gray); }

/* ============ Page hero (inner pages) ============ */
.page-hero {
    background: linear-gradient(100deg, var(--primary-darker), var(--primary));
    color: #fff;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.page-hero h1 { font-weight: 800; letter-spacing: -0.02em; }
.page-hero .breadcrumb-text { color: #c3d4f5; font-size: 0.9rem; }
.page-hero .breadcrumb-text a { color: #fff; }

/* ============ Feature list ============ */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { padding: 0.5rem 0; color: #33415c; }
.feature-list i { color: #22c55e; margin-right: 0.6rem; }

/* ============ Comparison table ============ */
.table-service { border-collapse: separate; border-spacing: 0; }
.table-service thead th {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 1rem;
    font-weight: 600;
}
.table-service thead th:first-child { border-radius: 10px 0 0 0; }
.table-service thead th:last-child { border-radius: 0 10px 0 0; }
.table-service tbody td { padding: 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.table-service .popular { background: rgba(11, 94, 215, 0.06); }

/* ============ Booking / form ============ */
.quote-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 30, 53, 0.1);
    padding: 2.2rem;
}
.quote-panel .panel-title { font-weight: 800; color: var(--dark); }
.form-label { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.form-control, .form-select {
    border-radius: 8px;
    border-color: var(--border);
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(11, 94, 215, 0.15);
}
.text-danger { font-size: 0.82rem; }
.step-indicator { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.step-pill {
    background: var(--light);
    color: var(--gray);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 50px;
}
.step-pill.active { background: var(--primary); color: #fff; }

/* ============ Contact ============ */
.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem;
    text-align: center;
    height: 100%;
}
.contact-card i {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: rgba(11, 94, 215, 0.08);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1rem;
}
.contact-card h6 { font-weight: 700; color: var(--dark); }
.contact-card p { color: var(--gray); font-size: 0.92rem; margin-bottom: 0; }

/* ============ About ============ */
.value-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1.6rem; height: 100%; text-align: center; }
.value-card i { font-size: 2rem; color: var(--primary); margin-bottom: 0.8rem; }
.value-card h6 { font-weight: 700; color: var(--dark); }
.value-card p { color: var(--gray); font-size: 0.9rem; }
.timeline { list-style: none; padding: 0; position: relative; }
.timeline::before {
    content: '';
    position: absolute;
    left: 9px; top: 8px; bottom: 8px;
    width: 2px; background: var(--border);
}
.timeline li { position: relative; padding: 0 0 1.6rem 2.2rem; }
.timeline li::before {
    content: '';
    position: absolute; left: 2px; top: 6px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--primary); border: 4px solid #dbe7ff;
}
.timeline h6 { font-weight: 700; color: var(--dark); }
.timeline p { color: var(--gray); font-size: 0.92rem; margin: 0; }

/* ============ CTA band ============ */
.cta-band {
    background: linear-gradient(100deg, var(--accent-hover), var(--accent));
    color: #fff;
    padding: 3.2rem 0;
}
.cta-band h2 { font-weight: 800; }
.cta-band .btn-white { background: #fff; color: var(--accent-hover); font-weight: 700; border-radius: 8px; }
.cta-band .btn-white:hover { background: #f4f4f4; }

/* ============ Footer ============ */
.site-footer { background: var(--dark); color: #aebcd2; font-size: 0.9rem; }
.footer-main { padding: 3.5rem 0 2rem; }
.footer-brand { color: #fff !important; }
.footer-about { margin-top: 1rem; font-size: 0.88rem; line-height: 1.7; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.site-footer h5 { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer ul a { color: #aebcd2; font-size: 0.88rem; }
.site-footer ul a:hover { color: #fff; }
.footer-contact i { color: var(--accent); margin-right: 0.5rem; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 1.2rem 0;
    font-size: 0.83rem;
}
.footer-bottom a { color: #aebcd2; margin-left: 1.2rem; }
.footer-bottom a:hover { color: #fff; }

/* ============ Responsive ============ */
@media (max-width: 991.98px) {
    .hero h1 { font-size: 2.2rem; }
    .topbar-right a { margin-left: 1rem; }
}
@media (max-width: 767.98px) {
    .hero { padding: 3.5rem 0 4.5rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat .num { font-size: 1.6rem; }
    .section { padding: 3rem 0; }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
}
@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.45); }
    70% { box-shadow: 0 0 0 16px rgba(255, 138, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0); }
}
@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes truckRoad {
    0% { transform: translateX(-20px); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(-20px); }
}
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Hero entrance */
.animate-hero { animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.animate-hero-left { animation: fadeInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.animate-hero-right { animation: fadeInRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

/* Floating hero elements */
.float-anim { animation: floatY 4s ease-in-out infinite; }
.truck-anim { animation: truckRoad 3.5s ease-in-out infinite; display: inline-block; }
.pulse-btn { animation: pulseRing 2s infinite; }

/* Animated gradient band */
.animated-gradient {
    background: linear-gradient(100deg, var(--primary-darker), var(--primary), #2d7ff0, #0b5ed7, var(--primary-darker));
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

/* Scroll reveal system */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-zoom {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view, .reveal-zoom.in-view {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.6s; }
.reveal-delay-6 { transition-delay: 0.72s; }

/* Card hover polish */
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-icon { transition: transform 0.3s ease; }
.btn-accent:hover, .btn-primary:hover, .btn-book:hover { transform: translateY(-2px); }
.btn-accent, .btn-primary, .btn-book { transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.btn-accent:hover { box-shadow: 0 8px 20px rgba(255, 138, 0, 0.45); }

/* Shimmer skeleton line */
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    background-size: 400px 100%;
    animation: shimmer 2.2s infinite;
}

/* Spinner for tracking */
.spinner-anim { animation: spinSlow 1.2s linear infinite; display: inline-block; }

/* Scroll down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.4rem;
    animation: bounceDown 1.8s infinite;
    z-index: 2;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-zoom,
    .animate-hero, .animate-hero-left, .animate-hero-right {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
    .float-anim, .truck-anim, .scroll-indicator, .pulse-btn { animation: none !important; }
}
