/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Vibrant Color Palette */
    --primary: #FF6B35;
    --secondary: #F7931E;
    --accent: #00D9FF;
    --success: #7FD957;
    --purple: #9B59B6;
    --pink: #FF6BB5;
    --yellow: #FFD93D;
    --blue-sky: #4CC9F0;
    --orange: #FF9F1C;

    /* Neutral Colors */
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --light-gray: #F5F7FA;
    --dark: #2C3E50;
    --text: #34495E;

    /* Fonts */
    --font-primary: 'Fredoka', sans-serif;
    --font-comic: 'Comic Neue', 'Comic Sans MS', 'Chalkboard SE', 'Comic Sans', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #43e97b 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    overflow-x: hidden;
    line-height: 1.6;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 181, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 104, 238, 0.4) 0%, transparent 50%),
        linear-gradient(135deg,
            rgba(255, 154, 158, 0.85) 0%,
            rgba(254, 207, 239, 0.85) 25%,
            rgba(162, 210, 255, 0.85) 50%,
            rgba(187, 143, 206, 0.85) 75%,
            rgba(255, 192, 159, 0.85) 100%),
        url('images/hero-bg.png');
    background-size: auto, auto, auto, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
    box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    animation: float 20s infinite ease-in-out;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.cloud-1 {
    width: 150px;
    height: 50px;
    top: 10%;
    left: 10%;
}

.cloud-1::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-1::after {
    width: 80px;
    height: 80px;
    top: -40px;
    right: 20px;
}

.cloud-2 {
    width: 200px;
    height: 60px;
    top: 30%;
    right: 15%;
    animation-delay: -5s;
}

.cloud-2::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 30px;
}

.cloud-2::after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 30px;
}

@media (max-width: 768px) {
    .cloud-2 {
        display: none;
    }
}

.cloud-3 {
    width: 180px;
    height: 55px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.cloud-3::before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 25px;
}

.cloud-3::after {
    width: 85px;
    height: 85px;
    top: -42px;
    right: 25px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(30px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--cream);
    margin-bottom: 40px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    color: var(--dark);
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-50px);
    }

    60% {
        opacity: 1;
        transform: scale(1.1) translateY(0);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes simple-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-bounce-in {
    animation: bounce-in 1s ease-out;
}

.animate-fade-in {
    animation: fade-in 1s ease-out 0.3s both;
}

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

/* Cloud Scene Illustration */
.mountain-scene {
    position: relative;
    width: 100%;
    height: 400px;
}

.mountain {
    position: absolute;
    bottom: 50px;
    animation: float-cloud 15s infinite ease-in-out;
}

.mountain-back {
    width: 200px;
    height: 80px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 150px;
    left: 10%;
    filter: blur(3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation-delay: -3s;
}

.mountain-back::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    top: -50px;
    left: 30px;
}

.mountain-back::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    top: -60px;
    right: 20px;
}

.mountain-front {
    width: 300px;
    height: 100px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 200px;
    right: 10%;
    left: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation-delay: -7s;
}

.mountain-front::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: -70px;
    left: 40px;
}

.mountain-front::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: -80px;
    right: 40px;
}

@keyframes float-cloud {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(15px);
    }

    50% {
        transform: translateY(-10px) translateX(30px);
    }

    75% {
        transform: translateY(-25px) translateX(15px);
    }
}




/* Comic Section */
.comic-section {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    background:
        linear-gradient(45deg, #FFF8F0 25%, transparent 25%),
        linear-gradient(-45deg, #FFF8F0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #FFF5E1 75%),
        linear-gradient(-45deg, transparent 75%, #FFF5E1 75%),
        linear-gradient(135deg, #FFE4B5 0%, #FFDAB9 50%, #FFE4E1 100%);
    background-size: 60px 60px, 60px 60px, 60px 60px, 60px 60px, 100% 100%;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px, 0 0;
    position: relative;
}

.comic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 200, 124, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 183, 197, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 60px;
    text-shadow: 3px 3px 0 rgba(255, 107, 53, 0.2);
}

.comic-strip {
    display: block;
    text-align: center;
    margin-top: 40px;
}

.comic-panel {
    display: inline-block;
    width: 22%;
    margin: 0 1%;
    vertical-align: top;
    animation: fade-in 0.8s ease-out backwards;
}

@media (max-width: 992px) {
    .comic-panel {
        width: 45%;
        margin: 0 2% 30px;
    }
}

@media (max-width: 600px) {
    .comic-panel {
        display: block;
        width: 100%;
        margin: 0 0 30px;
    }
}

.comic-panel:nth-child(1) {
    animation-delay: 0.1s;
}

.comic-panel:nth-child(2) {
    animation-delay: 0.3s;
}

.comic-panel:nth-child(3) {
    animation-delay: 0.5s;
}

.comic-panel:nth-child(4) {
    animation-delay: 0.7s;
}

.comic-frame {
    background: var(--white);
    border: 5px solid var(--dark);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
    min-height: 350px;
    transition: transform 0.3s ease;
}

.comic-frame:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.comic-frame.success {
    background: linear-gradient(135deg, #E8F8F5 0%, #D5F4E6 100%);
}

.panel-illustration {
    min-height: 180px;
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Comic Characters */
.comic-character {
    position: relative;
}

.character-head {
    width: 50px;
    height: 50px;
    background: #FFD1A4;
    border-radius: 50%;
    border: 3px solid var(--dark);
    position: relative;
    margin: 0 auto 5px;
}

.character-head::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--dark);
    border-radius: 50%;
    top: 15px;
    left: 12px;
}

.character-head::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--dark);
    border-radius: 50%;
    top: 15px;
    right: 12px;
}

.comic-character.worried .character-head::before,
.comic-character.worried .character-head::after {
    background: var(--dark);
}

.comic-character.panic .character-head {
    animation: shake 0.5s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

.character-body {
    width: 40px;
    height: 50px;
    background: var(--accent);
    border: 3px solid var(--dark);
    border-radius: 15px 15px 20px 20px;
    margin: 0 auto;
}

.backpack {
    position: absolute;
    width: 30px;
    height: 35px;
    background: var(--orange);
    border: 3px solid var(--dark);
    border-radius: 8px;
    top: 55px;
    right: -15px;
}

/* Panel 1 - Clouds */
.trees {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-around;
    z-index: 0;
}

.tree {
    width: 0;
    height: 0;
    background: transparent;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 35px solid #27ae60;
    border-radius: 0;
    position: relative;
    box-shadow: none;
}

.tree::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: transparent;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid #2ecc71;
    border-radius: 0;
    top: -15px;
    left: -20px;
    box-shadow: none;
}

.tree::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: transparent;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #2ecc71;
    border-radius: 0;
    top: -30px;
    left: -15px;
    box-shadow: none;
}

/* Panel 2 - Phone */
.phone-screen {
    width: 80px;
    height: 140px;
    background: var(--dark);
    border-radius: 15px;
    border: 4px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
}

.no-signal {
    background: var(--white);
    color: #E74C3C;
    padding: 10px;
    border-radius: 5px;
    font-family: var(--font-comic);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Panel 3 - Tracker Box */
.tracker-box {
    width: 60px;
    height: 70px;
    background: #222;
    border: 4px solid var(--dark);
    border-radius: 10px;
    position: absolute;
    right: 30px;
    top: 50px;
}

.tracker-antenna {
    width: 4px;
    height: 25px;
    background: #666;
    position: absolute;
    top: -25px;
    left: 28px;
}

.tracker-antenna::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: -8px;
    left: -4px;
}

.tracker-light {
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    position: absolute;
    top: 25px;
    left: 20px;
    animation: pulse 1s infinite;
}

/* Panel 4 - Map & Guide */
.guide-character {
    position: absolute;
    left: 20px;
    top: 20px;
}

.guide-character .character-head {
    background: #FFDAB9;
}

.guide-character .character-body {
    background: var(--success);
}

.map-display {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border: 4px solid var(--dark);
    border-radius: 10px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.map-dot {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 30px;
    animation: pulse 1.5s infinite;
}

.map-dot::before {
    content: '';
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: -5px;
    animation: signal-wave 2s infinite;
}

.comic-character.celebrating {
    animation: celebrate 0.6s infinite;
}

@keyframes celebrate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

/* Speech Bubbles */
.speech-bubble {
    background: var(--white);
    border: 3px solid var(--dark);
    border-radius: 20px;
    padding: 15px;
    font-family: var(--font-comic);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    margin-top: 10px;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid var(--dark);
    bottom: -18px;
    left: 30px;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--white);
    bottom: -12px;
    left: 33px;
}

.speech-bubble.right::before {
    left: auto;
    right: 30px;
}

.speech-bubble.right::after {
    left: auto;
    right: 33px;
}

.speech-bubble.celebration {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    margin-top: 80px;
}

.thought-bubble {
    background: var(--white);
    border: 3px solid var(--dark);
    border-radius: 50px;
    padding: 15px 20px;
    font-family: var(--font-comic);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    margin-top: 10px;
}

.thought-bubble::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 3px solid var(--dark);
    border-radius: 50%;
    bottom: -30px;
    left: 40px;
}

.thought-bubble::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--white);
    border: 3px solid var(--dark);
    border-radius: 50%;
    bottom: -45px;
    left: 25px;
}

/* How It Works Section */
.how-it-works {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 15% 30%, rgba(76, 201, 240, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(0, 217, 255, 0.3) 0%, transparent 40%),
        linear-gradient(135deg, #B3E5FC 0%, #81D4FA 50%, #4FC3F7 100%);
    position: relative;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.05);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    will-change: transform;
    opacity: 0;
    animation: simple-fade-in 0.6s ease-out forwards;
}

.step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.3s;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow:
        0 20px 50px rgba(255, 107, 53, 0.4),
        0 10px 20px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.step-icon {
    margin: 20px 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-tracker {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 10px;
    position: relative;
}

.icon-tracker::before {
    content: '⚡';
    position: absolute;
    font-size: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-waves {
    width: 80px;
    height: 80px;
    border: 4px solid var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    position: relative;
}

.icon-waves::before {
    content: '📡';
    position: absolute;
    font-size: 2.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-map {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border: 4px solid var(--success);
    border-radius: 10px;
    position: relative;
}

.icon-map::before {
    content: '🗺️';
    position: absolute;
    font-size: 2.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.step-card p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
}

/* Features Section */
.features {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 152, 0, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #FFF9C4 0%, #FFE082 25%, #FFCC80 50%, #FFAB91 100%);
    position: relative;
}

.features::before {
    content: '📡';
    position: absolute;
    font-size: 15rem;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 2px 5px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    will-change: transform;
    opacity: 0;
    animation: simple-fade-in 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 201, 240, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::after {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.05) rotate(-1deg);
    border-color: var(--accent);
    box-shadow:
        0 15px 45px rgba(76, 201, 240, 0.4),
        0 8px 20px rgba(76, 201, 240, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.feature-emoji {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    animation: bounce-in 1s ease-out;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card:hover .feature-emoji {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.5;
}

/* For Whom Section */
.for-whom {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 25% 40%, rgba(127, 217, 87, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(139, 195, 74, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #DCEDC8 0%, #C5E1A5 33%, #AED581 66%, #9CCC65 100%);
    position: relative;
}

.for-whom::before {
    content: '🏔️';
    position: absolute;
    font-size: 12rem;
    opacity: 0.04;
    bottom: 10%;
    right: 10%;
    pointer-events: none;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.audience-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    will-change: transform;
    opacity: 0;
    animation: simple-fade-in 0.6s ease-out forwards;
}

.audience-card:nth-child(1) {
    animation-delay: 0.1s;
}

.audience-card:nth-child(2) {
    animation-delay: 0.2s;
}

.audience-card:nth-child(3) {
    animation-delay: 0.3s;
}

.audience-card:nth-child(4) {
    animation-delay: 0.4s;
}

.audience-card:nth-child(5) {
    animation-delay: 0.5s;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 217, 87, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.audience-card:hover::before {
    width: 300px;
    height: 300px;
}

.audience-card:hover {
    transform: translateY(-15px) rotate(3deg) scale(1.05);
    box-shadow:
        0 20px 45px rgba(127, 217, 87, 0.4),
        0 10px 20px rgba(127, 217, 87, 0.2);
}

.audience-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--success) 0%, #5CB85C 100%);
    box-shadow:
        0 5px 15px rgba(127, 217, 87, 0.4),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.audience-card:hover .audience-icon {
    box-shadow:
        0 8px 25px rgba(127, 217, 87, 0.6),
        inset 0 2px 5px rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(-5deg);
}

.hiker-icon::before {
    content: '🎒';
}

.camp-icon::before {
    content: '🏕️';
}

.guide-icon::before {
    content: '🧭';
}

.travel-icon::before {
    content: '✈️';
}

.family-icon::before {
    content: '👨‍👩‍👧‍👦';
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

/* Why Us Section */
.why-us {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(206, 147, 216, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(171, 71, 188, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #E1BEE7 0%, #CE93D8 33%, #BA68C8 66%, #AB47BC 100%);
    position: relative;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.05);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.97) 100%);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow:
        0 10px 30px rgba(155, 89, 182, 0.15),
        0 2px 8px rgba(155, 89, 182, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    will-change: transform;
    opacity: 0;
    animation: simple-fade-in 0.6s ease-out forwards;
}

.why-card:nth-child(1) {
    animation-delay: 0.1s;
}

.why-card:nth-child(2) {
    animation-delay: 0.2s;
}

.why-card:nth-child(3) {
    animation-delay: 0.3s;
}

.why-card:nth-child(4) {
    animation-delay: 0.4s;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.08), transparent);
    transition: left 0.6s ease;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--purple);
    box-shadow:
        0 20px 50px rgba(155, 89, 182, 0.4),
        0 10px 25px rgba(155, 89, 182, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.why-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.why-card:hover .why-emoji {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 1.1rem;
    color: var(--text);
}

/* FAQ Section */
.faq {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 107, 53, 0.03) 10px, rgba(255, 107, 53, 0.03) 20px),
        linear-gradient(135deg, #FFF8F0 0%, #FFEFD5 50%, #FFE4E1 100%);
    position: relative;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
}

/* Footer */
.footer {
    background:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(2px 2px at 70% 40%, white, transparent),
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%, 200% 200%, 100% 100%;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 300px 150px, 250px 300px, 150px 200px, 0 0;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer::before {
    content: '⛰️';
    position: absolute;
    font-size: 20rem;
    opacity: 0.05;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.footer-clouds {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
}

.cloud-small-1,
.cloud-small-2 {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    width: 100px;
    height: 35px;
}

.cloud-small-1 {
    top: 20px;
    left: 15%;
}

.cloud-small-2 {
    top: 40px;
    right: 20%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--cream);
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
    color: var(--white);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mountain-scene {
        margin-top: 40px;
    }

    .comic-strip {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    /* Hide only cloud-1 on mobile as it overlaps the title text */
    .cloud-1 {
        display: none;
    }

    .comic-strip {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .features-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    /* Keep only cloud-1 hidden on small mobile */
    .cloud-1 {
        display: none;
    }

    .comic-frame {
        padding: 15px;
        min-height: 320px;
    }

    .speech-bubble,
    .thought-bubble {
        font-size: 0.85rem;
        padding: 12px;
    }

    .mountain-scene {
        height: 300px;
    }
}

/* Additional Animations */
@keyframes float-up {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

/* Enhanced section transitions */
section {
    position: relative;
    transition: all 0.3s ease;
}

/* Add depth to section titles */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 2px;
}

/* Comic frame enhanced effects */
.comic-frame {
    position: relative;
}

.comic-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 15px;
}

/* Step number enhanced glow */
.step-number {
    position: relative;
    animation: glow 3s ease-in-out infinite;
}

/* CTA Button enhanced */
.cta-button {
    position: relative;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--success));
    background-size: 400%;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: shimmer 3s linear infinite;
}

.cta-button:hover::before {
    opacity: 1;
}

/* FAQ item enhanced */
.faq-item {
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover::before {
    left: 100%;
}

/* Footer enhanced */
.footer {
    position: relative;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent) 25%,
            var(--primary) 50%,
            var(--purple) 75%,
            transparent 100%);
}

/* Parallax effect helper */
.parallax {
    transition: transform 0.1s ease-out;
}

/* Loading state */
body.loading {
    overflow: hidden;
}

body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 9999;
    animation: fadeOut 0.5s ease-out 0.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Logo Styles */
.logo-container {
    margin-bottom: 30px;
    animation: float-up 1s ease-out;
    text-align: center;
}

.hero-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: bounce-in 1.2s ease-out;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.35));
}

@media (max-width: 768px) {
    .hero-logo {
        height: 90px;
    }
}