/* ===== GLOBAL VARIABLES ===== */
:root {
    /* Colors */
    --primary: #c29b62; 
    --primary-dark: #a37c44;
    --secondary: #1a2b4c; 
    --dark: #121212;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --success: #28a745;
    --danger: #dc3545;
    
    /* Typography */
    --font-heading: 'Satoshi', 'Poppins', sans-serif;
    --font-body: 'Inter', 'Outfit', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
}


 /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: var(--secondary); }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: #a37c44; }

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--secondary);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light);
}

.text-center {
    text-align: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.section-header.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header > p {
    margin-top: 18px;
    margin-bottom: 0;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 640px;
}

.section-header.text-center > p {
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 30px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(194, 155, 98, 0.3);
}

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

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: var(--dark);
    border-bottom: 2px solid var(--white);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid var(--primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
}

.navbar.scrolled .logo {
    color: var(--dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-chevron {
    font-size: 0.65rem;
    opacity: 0.9;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item-dropdown:hover .nav-chevron,
.nav-item-dropdown:focus-within .nav-chevron {
    transform: rotate(180deg);
}

.nav-item-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translate(-50%, 0.35rem);
    min-width: 232px;
    margin: 0;
    padding: 0.45rem;
    list-style: none;
    background: var(--dark);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary);
    box-shadow:
        0 4px 6px -1px rgba(26, 43, 76, 0.06),
        0 20px 40px -12px rgba(26, 43, 76, 0.18);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1010;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown li + li {
    margin-top: 0.2rem;
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.72rem 0.85rem;
    color: var(--primary);
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-link:hover {
    background: linear-gradient(135deg, rgba(194, 155, 98, 0.12) 0%, rgba(26, 43, 76, 0.06) 100%);
    color: var(--primary-dark);
}

.nav-dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: var(--radius-sm);
    background: var(--light);
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.nav-dropdown-link:hover .nav-dropdown-icon {
    background: rgba(194, 155, 98, 0.2);
    color: var(--primary-dark);
}

.nav-dropdown .nav-dropdown-link::after {
    display: none;
    content: none;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.navbar:not(.scrolled) .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.navbar:not(.scrolled) .btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

.navbar.scrolled .nav-dropdown {
    background: var(--white);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.25rem;
    line-height: 1;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--secondary);
}

/* Mobile slide-out nav */
.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(320px, 88vw);
    max-width: 360px;
    background: var(--white);
    z-index: 1002;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.is-open {
    transform: translateX(0);
}

.mobile-nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-light);
    flex-shrink: 0;
}

.mobile-nav-drawer-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.mobile-nav-drawer-logo span {
    color: var(--primary);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.35rem;
    color: var(--secondary);
    cursor: pointer;
    padding: 0.35rem;
    line-height: 1;
}

.mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem 1.5rem;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.mobile-nav-accordion-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.85rem 0;
}

.mobile-nav-has-sub .mobile-nav-parent {
    flex: 1;
    border-bottom: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-sub-toggle {
    flex-shrink: 0;
    width: 2.45rem;
    height: 2.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--dark);
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-sub-toggle:hover {
    background: var(--secondary);
    color: var(--white);
}

.mobile-nav-sub-chevron {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-has-sub.is-open .mobile-nav-sub-chevron {
    transform: rotate(180deg);
}

.mobile-nav-sub {
    list-style: none;
    margin: 0;
    padding: 0 0 0.35rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-sub li {
    margin: 0;
}

.mobile-nav-sub a {
    display: block;
    padding: 0.55rem 0 0.55rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-sub a:hover {
    color: var(--primary);
    background: rgba(194, 155, 98, 0.08);
}

.mobile-nav-links > li.mobile-nav-has-sub {
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-nav-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-block {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

body.mobile-nav-open {
    overflow: hidden;
}

#domestic,
#international {
    scroll-margin-top: 100px;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: var(--secondary);
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    transform: scale(1.05);
}

.hero-bg img.is-active {
    opacity: 1;
    transform: scale(1);
}

/* Overlay */
.hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 43, 76, 0.4), rgba(26, 43, 76, 0.7));
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    padding-top: 20px;
}

.hero h1 span {
    color: var(--primary);
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Search Box */
.search-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--dark);
}

.search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    flex: 1;
    text-align: left;
}

.search-field i {
    color: var(--primary);
    font-size: 1.5rem;
}

.search-field label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 5px;
}

.search-field input,
.search-field select {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 500;
    outline: none;
    width: 100%;
}

.search-btn {
    padding: 15px 40px;
}

/* ===== DESTINATIONS ===== */
.destinations-grid {
    grid-template-columns: repeat(4, 1fr);
}

.destination-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
    z-index: 1;
    transition: var(--transition);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card:hover::before {
    background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.9));
}

.destination-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: var(--white);
}

.destination-content h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.destination-content p {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

/* ===== HOME CATEGORY CARDS ===== */
.home-categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.home-category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.home-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.home-category-card-img {
    height: 200px;
    overflow: hidden;
}

.home-category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-category-card:hover .home-category-card-img img {
    transform: scale(1.06);
}

.home-category-card-body {
    padding: 20px 18px 22px;
}

.home-category-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.home-category-card-body p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

/* ===== PACKAGES ===== */
.packages-grid {
    grid-template-columns: repeat(3, 1fr);
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.package-img {
    position: relative;
    height: 200px;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-details {
    padding: 25px;
}

.package-location {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.package-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.package-rating {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.package-rating span {
    color: var(--gray);
    margin-left: 5px;
}

.package-desc {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray);
    font-size: 0.9rem;
}

.package-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-from {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
}

.package-price h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
    font-family: var(--font-body);
}

/* ===== WHY CHOOSE US ===== */
.why-us-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
}

.why-us-content {
    min-width: 0;
}

.why-us-features-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    padding: 24px 20px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
}

.why-us-features-card .feature-list {
    margin-top: 0;
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    -webkit-overflow-scrolling: touch;
}

.feature-list::-webkit-scrollbar {
    width: 5px;
}

.feature-list::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 4px;
}

.feature-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}

.why-us-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    height: 400px;
}

.why-us-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.why-us-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.75s ease-in-out;
    pointer-events: none;
}

.why-us-slide.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.why-us-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.why-us-slideshow-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.why-us-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: background 0.3s ease, transform 0.3s ease;
}

.why-us-dot.is-active {
    background: var(--white);
    transform: scale(1.2);
}



/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h3, .footer-newsletter h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
}

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

.footer-newsletter p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--radius-full);
    border: none;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

/* ===== ANIMATIONS ===== */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

/* ===== SEARCH PAGE ===== */
.search-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.search-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.search-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray);
}

.no-results i {
    font-size: 4rem;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.no-results h2 {
    color: var(--dark);
    margin-bottom: 10px;
}

.results-header {
    margin-bottom: 30px;
    color: var(--gray);
    font-size: 1.1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-box {
        border-radius: var(--radius-md);
    }
    
    .search-form {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-field {
        border-right: none;
        border-bottom: 1px solid var(--gray-light);
        padding: 10px 0 20px;
        width: 100%;
    }
    
    .search-field:last-of-type {
        border-bottom: none;
    }
    
    .search-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-image {
        height: 280px;
        order: -1;
    }
    
    .why-us-features-card {
        max-height: 380px;
    }
    
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .packages-grid, .destinations-grid, .home-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Call Me Now Form */
.footer-call-me h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-call-me p {
    color: #a0aec0;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.call-me-input-group {
    display: flex;
    align-items: center;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    height: 45px;
}

.call-me-input-group .country-code {
    padding: 0 15px;
    color: var(--dark);
    font-weight: 500;
    border-right: 1px solid #cbd5e0;
}

.call-me-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 15px;
    height: 100%;
    outline: none;
    color: var(--primary);
    font-family: inherit;
}

.call-me-input-group button {
    background: var(--primary);
    color: white;
    border: none;
    height: 100%;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

.call-me-input-group button:hover {
    background: var(--primary-dark);
}
