/* Reset & Base Styles */
:root {
    /* Brand Guide Colors */
    --primary: #0A3D62;
    /* Blue Digital Deep - Headings, Hero */
    --primary-dark: #082d4a;
    /* Darker shade for hover/active states */
    --secondary: #1E90FF;
    /* Blue Tech Light - Subtitles, Icons */
    --action: #F39C12;
    /* Orange Amber - CTA */
    --action-dark: #d68910;
    /* Darker Orange for hover */
    --text-color: #2C2C2C;
    /* Dark Grey Professional - Main Text */
    --text-light: #666666;
    /* Lighter Grey - Secondary Text */
    --bg-light: #F2F2F2;
    /* Light Grey - Section Backgrounds */
    --bg-white: #FFFFFF;
    /* White - Main Backgrounds */
    --bg-dark: #0A3D62;
    /* Using Primary for Dark Backgrounds now to stay on brand */

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-unit: 1rem;
    --border-radius: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    /* Bold */
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
    /* Deep Blue for Headings */
}

h2 {
    font-weight: 600;
    /* SemiBold */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    /* Poppins for Buttons */
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.btn-primary {
    background-color: var(--action);
    /* Green Tranquility */
    color: white;
}

.btn-primary:hover {
    background-color: var(--action-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary);
    /* Blue Tech Light */
    color: white;
}

.btn-secondary:hover {
    background-color: #1a7cdb;
    /* Slightly darker shade manually for secondary */
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.site-header {
    background-color: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid #eee;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 50px;
    /* Adjust based on header size */
    width: auto;
}

.highlight {
    color: var(--secondary);
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-color);
}

.nav-link:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    /* Lighter blue hint */
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    /* Poppins Bold */
    margin-bottom: 1.5rem;
    color: var(--primary);
    /* Deep Blue */
}

.hero-subtitle {
    font-family: var(--font-body);
    /* Inter */
    font-size: 1.25rem;
    color: var(--text-light);
    /* Grey Text */
    margin-bottom: 2rem;
}

.hero-cta-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.badge i {
    color: var(--secondary);
    /* Blue icons */
    font-size: 1.25rem;
}

.hero-image .image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e6eef5;
    /* Light blue-grey placeholder */
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 2px dashed var(--secondary);
}

/* Hero responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-cta-group {
        align-items: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .main-nav {
        display: none;
        /* Mobile menu implementation usually goes here */
    }
}

/* Quote Page Specifics */
.quote-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.quote-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Soft modern shadow */
    width: 100%;
    max-width: 600px;
    border-top: 6px solid var(--primary);
}

.quote-header h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.quote-header p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-card {
        padding: 2rem;
    }
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.4s ease-out;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: #e6f9ed;
    /* Light green bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon i {
    font-size: 3rem;
    color: var(--secondary);
    /* Green check */
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-header p.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-family: var(--font-body);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-light);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.icon-box.danger {
    color: #e74c3c;
    /* Keep Red for danger/problem, maybe adjust to brand harmony later */
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-summary {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 2rem auto 0;
    font-weight: 500;
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    /* Subtle gradient */
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Right Column: Text & Grid */
.solution-text h2 {
    color: var(--primary);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.solution-text .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.overline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Responsive grid inside text col */
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--secondary);
    font-size: 1.5rem;
}

.benefit-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.benefit-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Left Column: Visual Card */
.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-visual {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft Modern Shadow */
    text-align: center;
    border-top: 6px solid var(--action);
    /* Action color accent */
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.card-icon-header i {
    font-size: 4rem;
    color: var(--action);
    margin-bottom: 1.5rem;
    background: rgba(243, 156, 18, 0.1);
    /* Light orange bg */
    padding: 20px;
    border-radius: 50%;
}

.card-visual h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-divider {
    border: 0;
    height: 1px;
    background-color: #eee;
    margin: 1.5rem 0;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.user-avatar i {
    font-size: 2rem;
    color: var(--primary-dark);
}

/* Differentiators Section */
.differentiators-section {
    padding: 5rem 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diff-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    /* Adding slight shadow for cards on white */
    transition: transform 0.3s;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.diff-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    /* Blue Icons */
    margin-bottom: 1rem;
}

.diff-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.diff-card p {
    color: var(--text-light);
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
    background: transparent;
    /* Changed from bg-light to transparent to see connectivity */
    padding: 0 1rem;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    /* Deep Blue Number */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.step-line {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #d1d9e6;
    /* Lighter line */
    z-index: 1;
}

@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .step-line {
        display: none;
    }
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background-color: var(--primary);
    /* Deep Blue Background */
    color: white;
    position: relative;
    overflow: hidden;
}

.background-shape {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.trust-header h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.trust-cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-card {
    background: white;
    color: var(--text-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    width: 300px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.trust-card h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.trust-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Micro-animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Starts hidden */
}

.delay-100 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-500 {
    animation-delay: 0.5s;
    transition-delay: 0.5s;
}

.delay-700 {
    animation-delay: 0.7s;
    transition-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
    transition-delay: 0.8s;
}

.delay-1000 {
    animation-delay: 1.0s;
    transition-delay: 1.0s;
}

.delay-1200 {
    animation-delay: 1.2s;
    transition-delay: 1.2s;
}

/* New Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Utility Classes for JS Observer */
.animate-on-scroll {
    opacity: 0;
    will-change: opacity, transform;
    /* Transition is optional if we use animations for everything, but kept for legacy/mix */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in.animate-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    transform: translateY(30px);
}

.animate-fade-up.animate-in {
    animation: fadeUp 0.6s ease-out forwards;
}

.animate-slide-left {
    transform: translateX(-30px);
}

.animate-slide-left.animate-in {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    /* Ensure transition applies */
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    transform: translateX(30px);
}

.animate-slide-right.animate-in {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 1;
    transform: translateX(0);
}

.animate-zoom {
    transform: scale(0.9);
}

.animate-zoom.animate-in {
    animation: zoomIn 0.6s ease-out forwards;
}

.emotional-quote {
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.9;
    color: white;
    font-family: var(--font-heading);
    margin-top: 4rem;
    font-weight: 300;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0A3D62 0%, #052033 100%);
    /* Deep Blue Gradient */
    color: white;
}

.final-cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
}

.vehicle-type-group {
    background: #f9f9f9;
    padding: 10px;
    border-radius: var(--border-radius);
    border: 1px solid #e0e0e0;
}

.param-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.radio-options {
    display: flex;
    gap: 1.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-color);
    /* Fix visibility issue */
}

.radio-label input[type="radio"] {
    accent-color: var(--action);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.4;
}

/* Footer */
.site-footer {
    background-color: #052033;
    /* Very Dark Blue */
    color: #a0a0a0;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}