@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --color-sand: #F5F0E1;
    --color-palm: #2E5A1C;
    --color-palm-light: #4A8032;
    --color-terracotta: #D2691E;
    --color-sky: #87CEEB;
    --color-white: #FFFFFF;
    --color-dark: #1A1A1A;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-sand);
    color: var(--color-palm);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-palm);
}

.text-ink {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.text-ink.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Organic Layout */
.section-blob {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

/* Zen Split Layout */
.overview-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.organic-frame {
    position: relative;
    padding: 30px;
}

.organic-frame img {
    width: 100%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 40px 100px rgba(46, 90, 28, 0.1);
    animation: morph 20s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.organic-shape-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--color-sky) 0%, transparent 70%);
    opacity: 0.2;
    z-index: 1;
    border-radius: 50%;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(46, 90, 28, 0.05);
    margin-bottom: 30px;
}

/* Glassmorphism Components */
.glass-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(46, 90, 28, 0.05);
}

/* Hero & River Path */
#river-path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 160px;
}

/* Car Widget Enhancements */
.car-picker-widget {
    padding: 35px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 50px rgba(46, 90, 28, 0.1);
    transition: var(--transition);
}

.car-picker-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(46, 90, 28, 0.15);
    background: rgba(255, 255, 255, 0.85);
}

.car-picker-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--color-palm), var(--color-terracotta));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.widget-input-group {
    background: var(--color-white);
    padding: 15px;
    border-radius: 18px;
    border: 1px solid rgba(46, 90, 28, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.widget-input-group:hover {
    border-color: var(--color-sky);
    background: #fdfdfd;
}

.widget-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    font-weight: 600;
}

.widget-value {
    font-weight: 700;
    color: var(--color-palm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-pulse {
    position: relative;
    width: 100%;
    padding: 18px;
    margin-top: 20px;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    overflow: hidden;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    animation: pulse-click 3s infinite;
}

@keyframes pulse-click {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

.nav-link {
    color: var(--color-palm);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Fleet Cards */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fleet-card {
    border-radius: 40px 10px 40px 10px;
    overflow: hidden;
    background: var(--color-white);
    transition: var(--transition);
    cursor: pointer;
}

.fleet-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(46, 90, 28, 0.1);
}

/* General Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.btn-primary:hover {
    background: var(--color-palm);
    transform: scale(1.05);
}

/* Floating Whisper Testimonials */
.testimonials-section {
    padding: 120px 0;
    background: radial-gradient(circle at top right, rgba(135, 206, 235, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(46, 90, 28, 0.03), transparent);
}

.whisper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.whisper-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 40px 100px rgba(46, 90, 28, 0.04);
    position: relative;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: float-slow 6s ease-in-out infinite alternate;
}

.whisper-card:nth-child(2) {
    animation-delay: -2s;
}

.whisper-card:nth-child(3) {
    animation-delay: -4s;
}

.whisper-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 60px 120px rgba(46, 90, 28, 0.08);
}

@keyframes float-slow {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-15px);
    }
}

.whisper-quote {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 6rem;
    color: var(--color-palm);
    opacity: 0.03;
    font-family: serif;
    line-height: 1;
}

.whisper-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-palm);
    font-weight: 300;
    margin-bottom: 35px;
}

/* Distance Matrix */
.distance-matrix {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.distance-matrix th,
.distance-matrix td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(46, 90, 28, 0.05);
}

.distance-matrix th {
    background: var(--color-palm);
    color: var(--color-sand);
}

.distance-matrix tr:nth-child(even) {
    background: rgba(46, 90, 28, 0.02);
}

/* Seasonal Driving Calendar */
.season-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.season-card {
    padding: 40px;
    border-radius: 30px;
    transition: var(--transition);
}

.season-card.dry {
    background: linear-gradient(135deg, #fffaf0 0%, #fff 100%);
    border: 1px solid #ffe4b5;
}

.season-card.rainy {
    background: linear-gradient(135deg, #f0f8ff 0%, #fff 100%);
    border: 1px solid #add8e6;
}

/* Road Trip Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--color-palm);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-palm);
    border: 3px solid var(--color-sand);
}

/* 4x4 Secrets */
.secrets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.secret-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 350px;
}

.secret-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.secret-card:hover img {
    transform: scale(1.1);
}

.secret-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

/* Eco Block */
.eco-zen-block {
    background: var(--color-palm);
    color: var(--color-sand);
    padding: 80px;
    border-radius: 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}