:root {
    /* Color Psychology: Trust & Action */
    --trust-blue: #0A2540;
    /* Stripe-like deep navy for ultimate trust/security */
    --trust-blue-light: #1A3A5A;
    --action-green: #00D26A;
    /* High-conversion emerald for money/action */
    --action-green-hover: #00B159;
    --action-gold: #F5A623;
    /* Premium/quality cue */
    --action-gold-hover: #E09612;
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --section-padding: 4.5rem 0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-premium: 0 25px 50px -12px rgba(10, 37, 64, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--trust-blue);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.padding-section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-primary {
    background-color: var(--trust-blue);
}

.text-white {
    color: #FFFFFF !important;
}

.text-gray {
    color: #9CA3AF !important;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    max-width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--action-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--action-green-hover);
    color: white;
}

.btn-accent {
    background-color: var(--action-gold);
    color: white;
}

.btn-accent:hover {
    background-color: var(--action-gold-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--trust-blue);
    color: var(--trust-blue);
}

.btn-outline:hover {
    background-color: var(--trust-blue);
    color: white;
}

.btn-light {
    background-color: white;
    color: var(--trust-blue);
}

.btn-light:hover {
    background-color: var(--bg-light);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--trust-blue);
    letter-spacing: -0.5px;
    line-height: 1;
}

.navbar:not(.scrolled) .logo-text,
.navbar:not(.scrolled) .nav-links a {
    color: white;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--action-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--action-green);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.navbar:not(.scrolled) .nav-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
}

.navbar:not(.scrolled) .nav-actions .btn-outline:hover {
    background-color: white;
    color: var(--trust-blue);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--trust-blue);
}

.navbar:not(.scrolled) .mobile-menu-btn {
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--trust-blue);
    background-image: linear-gradient(135deg, var(--trust-blue) 0%, rgba(10, 37, 64, 0.8) 100%), url('https://images.unsplash.com/photo-1541888086425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 5rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-chip {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--action-green);
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight {
    color: var(--action-gold);
}

.highlight-text {
    color: var(--action-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
    min-width: 260px;
}

.contact-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.hauling-card .icon-wrap {
    background-color: rgba(0, 210, 106, 0.2);
    color: var(--action-green);
}

.demo-card .icon-wrap {
    background-color: rgba(245, 166, 35, 0.2);
    color: var(--action-gold);
}

.contact-card .info {
    display: flex;
    flex-direction: column;
}

.contact-card .info span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.contact-card .info .phone {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.pricing-banner {
    display: inline-flex;
    align-items: center;
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    color: var(--trust-blue);
    gap: 1.5rem;
}

.price-wrap {
    display: flex;
    align-items: flex-start;
    color: var(--action-green);
    line-height: 1;
}

.price-wrap .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.price-wrap .amount {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.price-text {
    display: flex;
    flex-direction: column;
}

.price-text strong {
    font-family: var(--font-heading);
    font-size: 1.125rem;
}

.price-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* Stats Section */
.stats-section {
    position: relative;
    margin-top: -3rem;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1rem;
    border-right: 1px solid var(--bg-light);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item i {
    font-size: 2rem;
    color: var(--action-gold);
    margin-bottom: 1rem;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--trust-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding-top: 3.5rem;
    /* Reduces the gap below the floating stats */
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(10, 37, 64, 0.05);
    color: var(--trust-blue);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--trust-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.methods {
    display: flex;
    gap: 1rem;
}

.method-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #E5F6EB;
    color: #059669;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.method-tag.paypal {
    background: #E0F2FE;
    color: #0284C7;
}

.about-image-wrap {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    max-height: 400px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #E5E7EB 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(10, 37, 64, 0.1);
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--trust-blue);
}

.floating-badge i {
    color: var(--action-green);
    font-size: 1.5rem;
}

/* Services */
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 210, 106, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 37, 64, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--action-green);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--action-green);
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--trust-blue);
}

.service-card p {
    color: #4B5563;
    /* Slightly darker grey for better readability */
    font-size: 1rem;
    line-height: 1.6;
}

.contact-action-card {
    background: var(--trust-blue);
    color: white;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-action-card h3 {
    color: white;
}

.contact-action-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Reviews Masonry */
.reviews-masonry {
    column-count: 3;
    column-gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    break-inside: avoid;
    margin-bottom: 2rem;
    border: 1px solid var(--bg-light);
    display: inline-block;
    width: 100%;
    transition: var(--transition-smooth);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.stars {
    color: #F59E0B;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.review-text {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--trust-blue);
    font-family: var(--font-heading);
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--trust-blue);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CTA */
.cta-section {
    padding: 4rem 0 4.5rem;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer {
    background-color: #051320;
    color: white;
}

.footer .logo-text {
    color: white !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
}

.footer h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul a {
    color: #D1D5DB;
    /* Lighter grey for better contrast */
}

.footer ul a:hover {
    color: var(--action-green);
}

.footer ul i {
    color: var(--action-gold);
    margin-right: 0.5rem;
    width: 20px;
}

.payment-methods-footer {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: var(--text-muted);
}

.footer-bottom {
    background-color: #020912;
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--bg-light);
    }

    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-masonry {
        column-count: 1;
    }

    .pricing-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}