/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

/* ===== NAV LINKS ===== */
.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4d4d4c;
    border-radius: 0.375rem;
    transition: color 0.15s, background-color 0.15s;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
}
.nav-link:hover { color: #f08031; background-color: #fff8f2; }

/* ===== DROPDOWNS ===== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 1px solid #f3f4f6;
    padding: 0.5rem;
    z-index: 100;
}
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
    color: #4d4d4c;
    border-radius: 0.5rem;
    transition: background 0.12s, color 0.12s;
    white-space: nowrap;
}
.dropdown-item:hover { background-color: #fff8f2; color: #f08031; }

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.20) 60%, transparent 100%);
}

/* ===== CARDS ===== */
.card-hover {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ===== SECTION TITLES ===== */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f08031;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    max-width: 540px;
}

/* ===== BADGE ===== */
.badge-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background-color: #f08031;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== BTN ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f08031;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    transition: background-color 0.15s, transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(240,128,49,0.35);
    white-space: nowrap;
}
.btn-primary:hover { background-color: #d4691a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(240,128,49,0.4); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: #f08031;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    border: 2px solid #f08031;
    transition: background-color 0.15s, color 0.15s;
}
.btn-outline:hover { background-color: #f08031; color: #fff; }

/* ===== ACTIVITY ICON ===== */
.activity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    background: #fff;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
}
.activity-card:hover {
    border-color: #f08031;
    box-shadow: 0 8px 30px rgba(240,128,49,0.15);
    transform: translateY(-3px);
}
.activity-card .icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #fff8f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.2s;
}
.activity-card:hover .icon-wrap { background: #f08031; }
.activity-card:hover .icon-wrap i { color: #fff !important; }

/* ===== CAROUSEL ===== */
.carousel-slide { display: none; }
.carousel-slide.active { display: block; }

/* ===== STATS ===== */
.stat-item { text-align: center; }
.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #f08031;
    line-height: 1;
}
.stat-label {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.25rem;
}

/* ===== TESTIMONIAL ===== */
.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
}

/* ===== SEARCH FORM ===== */
.search-form-wrap {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* ===== SMOOTH SCROLL ===== */
html { scroll-behavior: smooth; }

/* ===== TRANSITIONS ===== */
[x-cloak] { display: none !important; }

/* ===== PACKAGE IMAGE ===== */
.pkg-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.pkg-img:hover img { transform: scale(1.06); }
