:root {
    --green-primary: #A3BC0F;
    --green-dark: #163A2D;
    --green-dark-rgb: 22, 58, 45;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    color: #212529;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.navbar-dark-green {
    background-color: var(--green-dark);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1e5240 100%);
    color: white;
    padding: 5rem 0 4rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 560px;
}

.hero .description {
    font-size: 1rem;
    opacity: 0.75;
    max-width: 520px;
}

.hero-accent {
    color: var(--green-primary);
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    cursor: default;
    opacity: 0.85;
}

.btn-store-dark {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-store[href] {
    cursor: pointer;
    opacity: 1;
}

.btn-store[href]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-store .store-label-small {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
    display: block;
    line-height: 1;
}

.btn-store .store-label-main {
    display: block;
    line-height: 1.2;
}

.coming-soon-badge {
    background: var(--green-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features */
.features-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-weight: 700;
    color: var(--green-dark);
    font-size: 1.9rem;
}

.section-divider {
    width: 50px;
    height: 4px;
    background: var(--green-primary);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

.feature-card {
    border: none;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #f8f9fa;
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(var(--green-dark-rgb), 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--green-dark) 0%, #1e5240 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--green-primary);
}

.feature-card h5 {
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Itineraries */
.itineraries-section {
    padding: 5rem 0;
    background: #f0f4e8;
}

.itinerary-card {
    background: white;
    border-radius: 14px;
    border: none;
    box-shadow: 0 2px 10px rgba(var(--green-dark-rgb), 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.itinerary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--green-dark-rgb), 0.14);
}

.itinerary-card .card-body {
    padding: 1.5rem;
}

.itinerary-card .card-title {
    font-weight: 700;
    color: var(--green-dark);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.itinerary-card .card-text {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.55;
}

.itinerary-badge {
    background-color: var(--green-primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.coming-soon-card {
    background: transparent;
    border: 2px dashed #c8d8a8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    color: #8fad5a;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Note */
.note-section {
    background: white;
    padding: 3rem 0;
}

.note-box {
    background: #f0f4e8;
    border-left: 4px solid var(--green-primary);
    border-radius: 0 10px 10px 0;
    padding: 1.25rem 1.5rem;
}

.note-box p, .note-box li {
    margin: 0;
    color: #4a5a3a;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--green-dark);
    color: rgba(255,255,255,0.6);
    padding: 2.5rem 0;
    font-size: 0.88rem;
}

footer .footer-title {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

footer a:hover {
    color: var(--green-primary);
}

@media (max-width: 768px) {
    .hero {
        padding: 3.5rem 0 3rem;
        text-align: center;
    }
    .hero .lead,
    .hero .description {
        max-width: 100%;
    }
    .hero .store-buttons {
        justify-content: center;
    }
}
