/* ===================================
   Canvas of Miles - Adventure Awaits!
   =================================== */

:root {
    /* Illustrated Cartoon Colors - Pastel & Playful */
    --primary-orange: #FF9966;
    --primary-yellow: #FFE08C;
    --primary-blue: #6BB6FF;
    --deep-blue: #5A9FD4;
    --warm-red: #FF7B7B;
    --forest-green: #7DD182;
    --sunset-pink: #FFB3D9;
    --sky-blue: #B3E5FC;
    --pastel-purple: #D4B5F2;
    --peach: #FFCC99;
    
    /* Neutral Colors - Soft & Illustrated */
    --white: #FFFFFF;
    --cream: #FFFEF7;
    --light-blue-bg: #E3F2FD;
    --soft-gray: #F0F0F0;
    --medium-gray: #8B8B8B;
    --cartoon-dark: #4A4A4A;
    --black: #2D2D2D;
    
    /* Hand-drawn Gradients */
    --gradient-sunset: linear-gradient(135deg, #FF9966 0%, #FFE08C 100%);
    --gradient-sky: linear-gradient(180deg, #B3E5FC 0%, #E3F2FD 100%);
    --gradient-adventure: linear-gradient(135deg, #FF9966 0%, #FF7B7B 50%, #FFB3D9 100%);
    --gradient-nature: linear-gradient(135deg, #7DD182 0%, #6BB6FF 100%);
    
    /* Soft Cartoon Shadows */
    --shadow-sm: 0 3px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 6px 20px rgba(255, 153, 102, 0.25);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    /* Playful Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-handwritten: 'Indie Flower', cursive;
    --font-comic: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', cursive;
}

/* ===================================
   Reset & Base Styles
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--cartoon-dark);
    background: var(--gradient-sky);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Illustrated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(179, 229, 252, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);\n    border-bottom: 4px solid var(--primary-blue);\n    z-index: 1000;
    transition: all 0.3s ease;\n    /* Hand-drawn wavy border effect */\n    border-bottom-left-radius: 50% 10px;\n    border-bottom-right-radius: 50% 10px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.nav-brand i {
    font-size: 1.8rem;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
    filter: contrast(1.1);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark-gray);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-sunset);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: var(--gradient-sunset);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    color: var(--white);
    animation: float 6s ease-in-out infinite;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.floating-icon:nth-child(2) {
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 
        4px 4px 0 rgba(0, 0, 0, 0.2),
        -2px -2px 0 rgba(255, 255, 255, 0.1);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--primary-yellow);
    font-family: var(--font-handwritten);
    font-size: 4.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-illustration {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-logo-container {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    border: 4px solid var(--cartoon-dark);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
    transform-origin: center;
}

.hero-logo {
    width: 400px;
    height: auto;
    display: block;
    filter: contrast(1.1);
}

.car-illustration {
    font-size: 12rem;
    color: var(--white);
    animation: drive 3s ease-in-out infinite;
}

@keyframes drive {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

.road-line {
    width: 80%;
    height: 8px;
    background: repeating-linear-gradient(
        to right,
        var(--white) 0,
        var(--white) 30px,
        transparent 30px,
        transparent 60px
    );
    border-radius: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: 3px solid var(--cartoon-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: center;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-orange);
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
    transform: translate(5px, 5px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary:active {
    transform: translate(5px, 5px);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.3);
}

.btn-journey {
    background: var(--gradient-sunset);
    color: var(--white);
    width: 100%;
    justify-content: center;
}

.btn-journey:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.btn-submit {
    background: var(--gradient-adventure);
    color: var(--white);
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Section Styles
   =================================== */

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cartoon-dark);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.08);
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 120px;
    height: 8px;
    background: var(--gradient-sunset);
    margin: 0 auto 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(255, 153, 102, 0.3);
    position: relative;
}\n\n.title-underline::before {\n    content: '';\n    position: absolute;\n    top: -3px;\n    left: -10px;\n    width: 20px;\n    height: 14px;\n    background: var(--primary-yellow);\n    border-radius: 50%;\n    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\n.title-underline::after {\n    content: '';\n    position: absolute;\n    top: -3px;\n    right: -10px;\n    width: 20px;\n    height: 14px;\n    background: var(--primary-yellow);\n    border-radius: 50%;\n    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}"}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */

.about {
    background: var(--white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 4px solid var(--cartoon-dark);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.08);
    position: relative;
}

.about-box:hover {
    transform: translate(-2px, -2px);
    box-shadow: 12px 12px 0 rgba(255, 153, 102, 0.2);
    border-color: var(--primary-orange);
}

.about-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.about-box h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.about-box p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ===================================
   What Happens Section
   =================================== */

.what-happens {
    background: var(--gradient-sky);
    color: var(--white);
}

.what-happens .section-title,
.what-happens .section-subtitle {
    color: var(--white);
}

.adventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.adventure-card {
    background: var(--white);
    color: var(--cartoon-dark);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: visible;
    border: 4px solid var(--cartoon-dark);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.adventure-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    height: 8px;
    background: var(--gradient-sunset);
    border-radius: 25px 25px 0 0;
}

.adventure-card.highlight {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 10px 10px 0 rgba(255, 153, 102, 0.2);
    border-color: var(--primary-orange);
}

.adventure-card.highlight::before {
    height: 10px;
}

.adventure-card:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.05);
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.15);
}

.adventure-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.adventure-card h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.adventure-features {
    text-align: left;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

.feature-item i {
    color: var(--forest-green);
    margin-top: 5px;
    flex-shrink: 0;
}

.adventure-emoji {
    font-size: 3rem;
    margin-top: 1rem;
}

/* ===================================
   Journeys Section
   =================================== */

.journeys {
    background: var(--white);
}

.journeys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.journey-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 4px solid var(--cartoon-dark);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.journey-card:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.02);
    box-shadow: 12px 12px 0 rgba(106, 182, 255, 0.2);
}

.journey-card:nth-child(even) {
    transform: rotate(1deg);
}

.journey-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(0deg) scale(1.02);
}

.journey-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.journey-image.himalayan {
    background: linear-gradient(135deg, #4A90E2 0%, #87CEEB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.journey-image.himalayan::before {
    content: '🏔️';
}

.journey-image.zanskar {
    background: linear-gradient(135deg, #FF6B35 0%, #E63946 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.journey-image.zanskar::before {
    content: '🏕️';
}

.journey-image.lakes {
    background: linear-gradient(135deg, #06A77D 0%, #4A90E2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.journey-image.lakes::before {
    content: '🌊';
}

.journey-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-yellow);
    color: var(--cartoon-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid var(--cartoon-dark);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.journey-badge:hover {
    transform: rotate(0deg) scale(1.1);
}

.journey-content {
    padding: 2rem;
}

.journey-content h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.journey-location {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.journey-description {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.journey-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.highlight-tag {
    background: var(--cream);
    color: var(--cartoon-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 2px solid var(--primary-orange);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.highlight-tag:hover {
    transform: translateY(-2px);
    box-shadow: 3px 3px 0 rgba(255, 153, 102, 0.2);
}

.highlight-tag i {
    color: var(--primary-orange);
}

/* ===================================
   Why Us Section
   =================================== */

.why-us {
    background: var(--cream);
}

.why-us-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 4px dashed var(--primary-orange);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-8px) rotate(2deg);
    border-style: solid;
    box-shadow: 10px 10px 0 rgba(255, 153, 102, 0.2);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--medium-gray);
}

.why-statement {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.statement-box {
    background: var(--gradient-sunset);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.statement-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.statement-box p {
    opacity: 0.95;
}

.warning-box {
    background: var(--primary-yellow);
    padding: 2.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 4px dashed var(--primary-orange);
    box-shadow: 8px 8px 0 rgba(255, 123, 123, 0.2);
    position: relative;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}\n\n.warning-box:hover {\n    transform: rotate(0deg) scale(1.02);\n    box-shadow: 10px 10px 0 rgba(255, 123, 123, 0.3);\n}"}

.warning-icon {
    font-size: 4rem;
}

.warning-content h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.warning-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--primary-orange);
    box-shadow: 6px 6px 0 rgba(255, 153, 102, 0.15);
    position: relative;
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.quote {
    font-family: var(--font-handwritten);
    font-size: 1.3rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.info-details h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

.info-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-sunset);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid var(--cartoon-dark);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px) rotate(10deg) scale(1.1);
    box-shadow: 5px 5px 0 rgba(255, 153, 102, 0.3);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 25px;
    border: 4px solid var(--cartoon-dark);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-orange);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 3px solid var(--cartoon-dark);
    border-radius: 15px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background: var(--cream);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 153, 102, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    opacity: 0.8;
    font-style: italic;
    font-family: var(--font-handwritten);
    font-size: 1.1rem;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-bottom i {
    color: var(--warm-red);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-line.accent {
        font-size: 3.5rem;
    }
    
    .hero-logo {
        width: 300px;
    }
    
    .hero-logo-container {
        padding: 1.5rem;
    }
    
    .car-illustration {
        font-size: 8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line.accent {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .adventures-grid,
    .journeys-grid,
    .why-us-grid,
    .why-statement {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line.accent {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        width: 250px;
    }
    
    .hero-logo-container {
        padding: 1rem;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .car-illustration {
        font-size: 6rem;
    }
}

/* ===================================
   Animations & Utilities
   =================================== */

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}