/* ============================================
   Triplet Landing Page Styles
   Color Palette from App Design:
   - Primary Olive: #5B6914
   - Accent Lime: #8CB82B
   - Light Lime: #A4C639
   - Background Light: #F8F9F5
   - Card Background: #FFFFFF
   - Dark Text: #1a1a1a
   - Muted Text: #5a5a5a
   ============================================ */

:root {
    --color-primary: #5B6914;
    --color-primary-dark: #4a5710;
    --color-primary-light: #6a7a18;
    --color-accent: #8CB82B;
    --color-accent-light: #A4C639;
    --color-accent-bright: #9fd634;
    --color-bg: #F8F9F5;
    --color-bg-alt: #ECEEE6;
    --color-white: #FFFFFF;
    --color-dark: #1a1a1a;
    --color-gray: #5a5a5a;
    --color-gray-light: #999999;
    --color-border: #E0E4D6;
    --shadow-sm: 0 1px 3px rgba(91, 105, 20, 0.08);
    --shadow-md: 0 4px 12px rgba(91, 105, 20, 0.12);
    --shadow-lg: 0 8px 24px rgba(91, 105, 20, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.hero .btn-primary:hover {
    background-color: var(--color-accent-bright);
    border-color: var(--color-accent-bright);
    color: var(--color-primary-dark);
}

.hero .btn-secondary {
    color: var(--color-white);
    border-color: var(--color-white);
}

.hero .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 249, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 800;
    font-size: 44px;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 56px;
    height: 56px;
    color: var(--color-primary);
}

.logo img.logo-icon {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-gray);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

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

.nav-links a.btn {
    color: var(--color-white);
}

.nav-links a.btn:hover {
    color: var(--color-white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 105, 20, 0.85), rgba(91, 105, 20, 0.7));
    z-index: 1;
}

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

.hero-content {
    max-width: 560px;
    color: var(--color-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.highlight {
    color: var(--color-accent-bright);
    position: relative;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 320px;
    height: 680px;
    background: var(--color-dark);
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow-lg), 0 20px 60px rgba(91, 105, 20, 0.2);
    position: relative;
    transform: rotate(-3deg);
    transition: var(--transition);
}

.phone-mockup:hover {
    transform: rotate(0deg) translateY(-10px);
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: var(--color-dark);
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg-alt);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

/* App Mockup UI */
.app-header-mockup {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    padding: 44px 12px 14px;
    color: white;
}

.app-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.header-user {
    flex: 1;
    text-align: left;
}

.header-user span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.95;
}

.header-user strong {
    display: block;
    font-size: 11px;
    color: var(--color-accent-bright);
    margin-top: 2px;
    font-weight: 600;
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.header-logo img {
    width: 32px;
    height: 32px;
}

.header-logo span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.header-cost {
    flex: 1;
    text-align: right;
}

.header-cost span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.95;
}

.header-cost strong {
    display: block;
    font-size: 14px;
    color: var(--color-accent-bright);
    text-align: right;
    margin-top: 2px;
    font-weight: 700;
}

.app-body-mockup {
    padding: 12px;
    background: #F0F0EB;
}

.trips-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.trips-title {
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 700;
    margin: 0;
}

.add-trip-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
}

.trip-card {
    background: white;
    border-radius: 14px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.trip-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.trip-icon img {
    width: 36px;
    height: 36px;
}

.trip-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-primary);
}

.trip-info {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.trip-info strong {
    display: block;
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 700;
}

.trip-info span {
    display: block;
    font-size: 9px;
    color: var(--color-gray);
    margin-top: 1px;
    line-height: 1.3;
}

.trip-date {
    font-size: 8px !important;
    color: var(--color-gray-light) !important;
}

.trip-excursions {
    font-size: 8px !important;
    font-weight: 700;
    color: var(--color-dark) !important;
    margin-top: 2px !important;
}

.trip-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.action-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid #E0E4D6;
    background: white;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.action-btn svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--color-gray);
}

.section-header.light h2,
.section-header.light p {
    color: var(--color-white);
}

/* ============================================
   Features Section
   ============================================ */

.features {
    padding: 100px 0;
}

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

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(140, 184, 43, 0.3);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(140, 184, 43, 0.15), rgba(91, 105, 20, 0.08));
    color: var(--color-primary);
    margin-bottom: 20px;
}

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

.feature-card p {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ============================================
   How It Works
   ============================================ */

.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(140, 184, 43, 0.1);
    border-radius: 50%;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    color: var(--color-white);
    padding: 24px;
}

.step-number {
    font-size: 56px;
    font-weight: 800;
    color: rgba(140, 184, 43, 0.4);
    line-height: 1;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
}

.step p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ============================================
   Trips Showcase
   ============================================ */

.trips-showcase {
    padding: 100px 0;
    background: var(--color-bg);
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.destination-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.destination-header {
    padding: 28px 24px;
    color: white;
    position: relative;
}

.destination-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 105, 20, 0.85), rgba(91, 105, 20, 0.95));
}

.destination-title {
    position: relative;
    z-index: 1;
}

.destination-cost {
    display: block;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-accent-bright);
}

.destination-title h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.destination-title p {
    font-size: 14px;
    opacity: 0.9;
}

.destination-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.destination-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray);
    font-size: 14px;
    font-weight: 500;
}

.destination-detail svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Destination variations with subtle gradients */
.destination-header.hawaii { background: url('https://cdn.pixabay.com/photo/2024/12/20/16/28/ai-generated-9280520_1280.jpg') center/cover; }
.destination-header.costa-rica { background: url('https://images.unsplash.com/photo-1518259102261-b40117eabbc9?w=600&auto=format&fit=crop') center/cover; }
.destination-header.florida { background: url('https://images.unsplash.com/photo-1535498730771-e735b998cd64?w=600&auto=format&fit=crop') center/cover; }
.destination-header.colombia { background: url('colombia-coffee.jpg') center/cover; }

/* ============================================
   Download Section
   ============================================ */

.download {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(140, 184, 43, 0.12), rgba(91, 105, 20, 0.06));
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(140, 184, 43, 0.08);
    border-radius: 50%;
}

.download-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.download-icon {
    display: flex;
   justify-content: center;
}

.download-icon img {
    width: 120px;
    height: 120px;
    color: var(--color-primary);
    
}
.download-icon span{
    color: #5D7700;
    font-size: 73px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.download h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.download p {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
    min-width: 180px;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--color-primary);
}

.store-button svg {
    flex-shrink: 0;
}

.store-button div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-subtitle {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1;
}

.store-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

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

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer .logo {
    color: var(--color-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

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

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .phone-mockup {
        transform: rotate(0deg);
        width: 280px;
        height: 580px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(248, 249, 245, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trips-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .phone-mockup {
        width: 240px;
        height: 500px;
    }
}
