* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6600;           /* Vibrant Orange */
    --secondary: #FF9900;         /* Light Orange */
    --accent: #FFD180;            /* Pale Orange (for subtle accents) */
    --dark: #000000;              /* Pure Black */
    --dark-bg: #0a0a0a;           /* Soft Black (for backgrounds) */
    --charcoal: #181818;          /* Dark Charcoal */
    --light: #f8f9fa;             /* Off White */
    --text-light: #e0e0e0;        /* Light Gray Text */
    --text-muted: #b0b0b0;        /* Muted Gray */
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--dark);
}

/* ==========================================
NAVBAR
========================================== */
.custom-navbar {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    transition: 0.4s;
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.2);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 28px;
    color: black;
    font-weight: 800;
}

.nav-link {
    color: black !important;
    margin-left: 20px;
    transition: 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* ==========================================
HERO SECTION
========================================== */

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 850px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 800;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    margin: 20px 0;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

.hero-btn {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    font-weight: 700;
    font-size: 15px;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}

.hero-btn:hover {
    background: var(--secondary);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.hero-btn:hover::before {
    left: 100%;
}

/* ==========================================
SECTION SPACING
========================================== */

.section-spacer {
    height: 80px;
    background: #fff;
}

.section-padding {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.8;
}

.section-tag {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* ==========================================
GLASS CARD (AOS EFFECT)
========================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ==========================================
INDEX PAGE - POPULAR SAFARI TOURS SECTION
========================================== */

.package-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid rgba(255, 102, 0, 0.15);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.package-card:hover::after {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(255, 102, 0, 0.25);
}

.country-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(255, 153, 0, 0.15));
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 102, 0, 0.3);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.package-card:hover .country-badge {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.25), rgba(255, 153, 0, 0.25));
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

.package-card h4 {
    color: var(--dark);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 25px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.package-card:hover h4 {
    color: var(--primary);
}

.package-price {
    color: var(--primary);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.package-card .hero-btn {
    width: 100%;
    padding: 14px 25px;
    margin-top: auto;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--primary);
    background: var(--primary);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: inline-block;
    position: relative;
    z-index: 2;
}

.package-card .hero-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.hero-btn-large {
    padding: 16px 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* ==========================================
TRAVEL INTRO SECTION
========================================== */

.travel-intro {
    background: #ffffff;
    padding: 80px 0;
}

.intro-tag {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.travel-intro h3 {
    color: var(--dark);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.travel-intro p {
    max-width: 850px;
    margin: auto;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.9;
}

/* ==========================================
PREMIUM SERVICES SECTION
========================================== */

.services-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.03), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.02), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .section-title h2 {
    color: var(--dark);
    font-size: 48px;
    animation: fadeInDown 0.8s ease;
    margin-bottom: 15px;
}

.services-section .section-title p {
    color: var(--text-muted);
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* SERVICE CARDS */

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border: 2px solid rgba(255, 102, 0, 0.1);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    position: relative;
    animation: slideUp 0.6s ease both;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card[data-index="1"] { animation-delay: 0.1s; }
.service-card[data-index="2"] { animation-delay: 0.2s; }
.service-card[data-index="3"] { animation-delay: 0.3s; }
.service-card[data-index="4"] { animation-delay: 0.4s; }
.service-card[data-index="5"] { animation-delay: 0.5s; }
.service-card[data-index="6"] { animation-delay: 0.6s; }
.service-card[data-index="7"] { animation-delay: 0.7s; }
.service-card[data-index="8"] { animation-delay: 0.8s; }
.service-card[data-index="9"] { animation-delay: 0.9s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1),
                0 0 30px rgba(255, 102, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* SERVICE ICONS */

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.2);
}

.service-icon-1 { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.service-icon-2 { background: linear-gradient(135deg, var(--secondary), #FFB900); }
.service-icon-3 { background: linear-gradient(135deg, var(--primary), var(--primary)); }
.service-icon-4 { background: linear-gradient(135deg, var(--secondary), #FFC107); }
.service-icon-5 { background: linear-gradient(135deg, #FF7A00, var(--secondary)); }
.service-icon-6 { background: linear-gradient(135deg, var(--secondary), #FFAA00); }
.service-icon-7 { background: linear-gradient(135deg, var(--primary), #FFAA00); }
.service-icon-8 { background: linear-gradient(135deg, var(--secondary), #FFB900); }
.service-icon-9 { background: linear-gradient(135deg, #FF7A00, #FFC107); }

.service-icon i {
    color: #fff;
    font-size: 28px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 45px rgba(255, 102, 0, 0.35);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* SERVICE TEXT */

.service-card h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.4s ease;
}

.service-card h4::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 8px auto 0;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-card:hover h4::after {
    width: 40px;
}

.service-card:hover h4 {
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-size: 13px;
    transition: color 0.4s ease;
    flex-grow: 1;
}

.service-card:hover p {
    color: var(--dark);
}

/* SERVICE LINK */

.service-link {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 102, 0, 0.1);
    transition: all 0.4s ease;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.4s ease;
    padding: 6px 12px;
    border-radius: 6px;
}

.btn-arrow i {
    transition: transform 0.4s ease;
    font-size: 10px;
}

.btn-arrow:hover {
    color: #fff;
    background: rgba(255, 102, 0, 0.15);
    padding-right: 16px;
}

.btn-arrow:hover i {
    transform: translateX(4px);
}

/* ==========================================
WHY CHOOSE US SECTION
========================================== */

.why-us-section {
    background: #ffffff;
    padding: 100px 0;
}

.why-us-section .section-tag {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.why-us-section h2 {
    color: var(--dark);
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0;
}

.why-us-section .section-title p {
    max-width: 750px;
    margin: auto;
    color: var(--text-muted);
}

.why-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid rgba(255, 102, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(255, 102, 0, 0.25);
}

.why-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.2);
    transition: all 0.4s ease;
}

.why-icon i {
    color: #fff;
    font-size: 32px;
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 45px rgba(255, 102, 0, 0.35);
}

.why-card h4 {
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
STATS SECTION
========================================== */

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 50%, rgba(255, 102, 0, 0.05) 100%);
    color: white;
}

.stats-header {
    margin-bottom: 60px;
    text-align: center;
}

.stats-section .section-tag {
    display: block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stats-section h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.stats-header p {
    max-width: 700px;
    margin: auto;
    color: var(--text-light);
    font-size: 16px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 102, 0, 0.05) 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15) 0%, rgba(255, 102, 0, 0.08) 100%);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 102, 0, 0.3);
}

.stats-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.2);
    transition: all 0.4s ease;
}

.stats-icon i {
    color: #fff;
    font-size: 30px;
}

.stat-card:hover .stats-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 20px 45px rgba(255, 102, 0, 0.35);
}

.stat-card h1 {
    color: var(--primary);
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

/* ==========================================
TESTIMONIALS
========================================== */

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary);
    text-align: center;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.15);
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-card h5 {
    color: var(--primary);
    font-weight: 700;
}

.bg-light {
    background: #f8f9fa !important;
}

/* ==========================================
PARALLAX CTA
========================================== */

.parallax-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(255, 102, 0, 0.2)), url('../images/gallery2.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    text-align: center;
    color: white;
}

.parallax-section h2 {
    color: white;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.parallax-section p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ==========================================
TOUR CARDS (MAIN PAGE)
========================================== */

.tour-card {
    border: 2px solid var(--primary);
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.tour-card img {
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

.tour-card:hover img {
    transform: scale(1.08);
}

.card-body {
    padding: 30px;
    background: #ffffff;
}

.card-body h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.card-body p {
    color: var(--text-muted);
}

.tour-card .btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    transition: all 0.3s;
}

.tour-card .btn-primary:hover {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

/* ==========================================
TOURS PAGE
========================================== */

.tour-packages {
    padding: 100px 0;
    background: #f8f9fa;
}

.tour-packages .section-title {
    margin-bottom: 60px;
}

.tour-packages .section-title h2 {
    color: var(--dark);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.tour-packages .section-title p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.8;
}

/* SEARCH & FILTER */

#tourSearch,
#countryFilter {
    border-radius: 15px;
    padding: 15px 20px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    font-size: 16px;
}

#tourSearch {
    width: 100%;
    height: 50px;
}

#tourSearch:focus,
#countryFilter:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
}

#countryFilter {
    width: 100%;
    height: 50px;
    background: white;
    cursor: pointer;
}

/* TOUR PACKAGE CARDS */

.tour-package-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid rgba(255, 102, 0, 0.15);
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tour-package-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 102, 0, 0.3);
}

.tour-package-card img {
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.tour-package-card:hover img {
    transform: scale(1.08);
}

.tour-package-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TOUR META (BADGES) */

.tour-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tour-meta .country-badge,
.tour-meta .duration-badge {
    background: rgba(255, 102, 0, 0.15);
    color: var(--primary);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.tour-package-card:hover .tour-meta .country-badge,
.tour-package-card:hover .tour-meta .duration-badge {
    background: rgba(255, 102, 0, 0.25);
    color: var(--primary);
    border-color: var(--primary);
}

/* TOUR TITLE */

.tour-package-body h4 {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 700;
    flex-grow: 1;
}

.tour-package-card:hover .tour-package-body h4 {
    color: var(--primary);
}

/* TOUR PRICE */

.tour-price {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* BOOK NOW BUTTON */

.tour-package-card .hero-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.tour-package-card .hero-btn:hover {
    background: var(--secondary);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

/* ==========================================
FOOTER
========================================== */

.footer-section {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-section h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons a {
    color: var(--primary);
    margin-right: 15px;
    font-size: 20px;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

/* ==========================================
GALLERY
========================================== */

.gallery-item img {
    border-radius: 20px;
    transition: 0.4s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* ==========================================
FLOATING ELEMENTS
========================================== */

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* ==========================================
FORMS
========================================== */

.form-control {
    border-radius: 15px;
    padding: 15px;
    border: 2px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.form-select {
    border-radius: 15px;
    padding: 15px;
    border: 2px solid #ddd;
    transition: all 0.3s;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: none;
}

/* ==========================================
PRELOADER
========================================== */

#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top: 6px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ==========================================
ANIMATIONS
========================================== */

@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    scroll-behavior: smooth;
}

img {
    transition: 0.5s;
}

.shadow {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

/* ==========================================
RESPONSIVE DESIGN
========================================== */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .section-title h2 {
        font-size: 42px;
    }

    .services-section .section-title h2 {
        font-size: 42px;
    }

    .parallax-section h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .hero-section {
        padding: 20px;
    }

    .hero-content {
        padding: 30px 20px !important;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btn {
        display: inline-block;
        width: 100%;
        margin-top: 10px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .package-card {
        padding: 30px 25px;
        min-height: 360px;
    }

    .package-card h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .package-price {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .tour-card img {
        height: 220px;
    }

    .services-section {
        padding: 70px 0;
    }

    .services-section .section-title h2 {
        font-size: 36px;
    }

    .services-section .section-title p {
        font-size: 15px;
    }

    .service-card {
        padding: 22px 18px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-card h4 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 12px;
    }

    .why-card {
        padding: 30px 25px;
    }

    .why-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 20px;
    }

    .why-icon i {
        font-size: 28px;
    }

    .why-card h4 {
        font-size: 18px;
    }

    .stat-card {
        padding: 35px 20px;
    }

    .stats-icon {
        width: 70px;
        height: 70px;
    }

    .stats-icon i {
        font-size: 26px;
    }

    .stat-card h1 {
        font-size: 42px;
    }

    .parallax-section {
        padding: 80px 0;
    }

    .parallax-section h2 {
        font-size: 32px;
    }

    .parallax-section p {
        font-size: 16px;
    }

    .tour-packages {
        padding: 70px 0;
    }

    .tour-packages .section-title h2 {
        font-size: 36px;
    }

    .tour-packages .section-title p {
        font-size: 15px;
    }

    .tour-package-card img {
        height: 200px;
    }

    .tour-package-body {
        padding: 20px;
    }

    .tour-package-body h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .tour-price {
        font-size: 20px;
        margin-bottom: 12px;
    }

    #tourSearch,
    #countryFilter {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 14px;
    }

    .package-card {
        padding: 25px 20px;
        min-height: 340px;
        margin-bottom: 20px;
    }

    .package-card h4 {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .package-price {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .country-badge {
        padding: 7px 14px;
        font-size: 11px;
        margin-bottom: 15px;
    }

    .package-card .hero-btn {
        padding: 11px 18px;
        font-size: 13px;
        border-radius: 10px;
    }

    .hero-btn-large {
        padding: 14px 40px !important;
        font-size: 15px !important;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-section .section-title h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .services-section .section-title p {
        font-size: 14px;
    }

    .service-card {
        padding: 20px 16px;
        border-radius: 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .service-icon i {
        font-size: 22px;
    }

    .service-card h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .btn-arrow {
        font-size: 11px;
    }

    .why-card {
        padding: 30px 20px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .why-icon i {
        font-size: 24px;
    }

    .why-card h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .why-card p {
        font-size: 13px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stats-section h2 {
        font-size: 28px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-card h1 {
        font-size: 36px;
    }

    .stat-card p {
        font-size: 14px;
    }

    .card-body {
        padding: 20px;
    }

    .tour-card img {
        height: 200px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-card p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .parallax-section {
        padding: 60px 0;
    }

    .parallax-section h2 {
        font-size: 26px;
    }

    .parallax-section p {
        font-size: 14px;
    }

    .travel-intro {
        padding: 60px 0;
    }

    .travel-intro h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .travel-intro p {
        font-size: 15px;
    }

    .tour-packages {
        padding: 60px 0;
    }

    .tour-packages .section-title h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .tour-packages .section-title p {
        font-size: 14px;
    }

    .tour-package-card {
        border-radius: 15px;
    }

    .tour-package-card img {
        height: 180px;
    }

    .tour-package-body {
        padding: 18px;
    }

    .tour-package-body h4 {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .tour-price {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .tour-meta {
        gap: 8px;
        margin-bottom: 12px;
    }

    .tour-meta .country-badge,
    .tour-meta .duration-badge {
        padding: 5px 10px;
        font-size: 11px;
    }

    #tourSearch,
    #countryFilter {
        padding: 10px 14px;
        height: 45px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .nav-link {
        margin-left: 10px;
        font-size: 14px;
    }

    .package-card {
        padding: 20px 16px;
        min-height: 320px;
    }

    .package-card h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .package-price {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .country-badge {
        padding: 6px 12px;
        font-size: 10px;
        margin-bottom: 12px;
    }

    .package-card .hero-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero-btn-large {
        padding: 12px 30px !important;
        font-size: 14px !important;
    }

    .services-section {
        padding: 50px 0;
    }

    .services-section .section-title {
        margin-bottom: 40px;
    }

    .services-section .section-title h2 {
        font-size: 24px;
    }

    .service-card h4 {
        font-size: 14px;
    }

    .service-card p {
        font-size: 10px;
    }

    .why-card {
        padding: 25px 16px;
    }

    .why-card h4 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 12px;
    }

    .stats-section {
        padding: 50px 0;
    }

    .stats-section h2 {
        font-size: 24px;
    }

    .stat-card h1 {
        font-size: 32px;
    }

    .stat-card p {
        font-size: 13px;
    }

    .parallax-section h2 {
        font-size: 22px;
    }

    .parallax-section p {
        font-size: 13px;
    }

    .tour-packages {
        padding: 50px 0;
    }

    .tour-packages .section-title h2 {
        font-size: 24px;
    }

    .tour-package-body h4 {
        font-size: 14px;
    }

    .tour-price {
        font-size: 16px;
    }

    .section-tag {
        font-size: 11px;
    }
}

/* ==========================================
CONTACT PAGE
========================================== */

.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* CONTACT FORM WRAPPER */

.contact-form-wrapper {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.1);
    transition: all 0.4s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.15);
}

.contact-form-wrapper h3 {
    color: var(--dark);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* FORM LABELS & INPUTS */

.form-label {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    font-family: 'Poppins', sans-serif;
}

/* CONTACT FORM BUTTON */

.contact-form .hero-btn {
    width: 100%;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form .hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3);
}

.contact-form .hero-btn i {
    font-size: 14px;
}

/* CONTACT INFO CARDS */

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(255, 102, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2);
}

.info-content h5 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* CONTACT MAP WRAPPER */

.contact-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 102, 0, 0.1);
    transition: all 0.4s ease;
}

.contact-map-wrapper:hover {
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.15);
}

/* SOCIAL FOLLOW SECTION */

.social-follow-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
}

.social-follow-section h3 {
    color: white;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.35);
    color: white;
}

/* SUCCESS ALERT */

.alert-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border: 2px solid #4CAF50;
    border-radius: 15px;
    padding: 20px 25px;
    margin: 30px 0;
    color: #1b5e20;
    font-weight: 600;
}

.alert-success i {
    margin-right: 10px;
    color: #4CAF50;
}

/* ==========================================
RESPONSIVE - CONTACT PAGE
========================================== */

@media (max-width: 768px) {
    .contact-section {
        padding: 70px 0;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .contact-form-wrapper h3 {
        font-size: 24px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card {
        padding: 20px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .info-content h5 {
        font-size: 15px;
    }

    .info-content p {
        font-size: 13px;
    }

    .contact-map-wrapper iframe {
        height: 300px !important;
    }

    .social-follow-section {
        padding: 60px 0;
    }

    .social-follow-section h3 {
        font-size: 28px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form-wrapper h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contact-form-wrapper h3::after {
        width: 40px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-control,
    .form-select {
        padding: 10px 15px;
        font-size: 14px;
    }

    .contact-form .hero-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .contact-info-cards {
        gap: 12px;
    }

    .info-card {
        padding: 18px;
        border-radius: 12px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .info-content h5 {
        font-size: 14px;
    }

    .info-content p {
        font-size: 12px;
    }

    .contact-map-wrapper {
        border-radius: 15px;
    }

    .contact-map-wrapper iframe {
        height: 250px !important;
    }

    .social-follow-section {
        padding: 50px 0;
    }

    .social-follow-section h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 20px 16px;
    }

    .contact-form-wrapper h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .form-control,
    .form-select {
        padding: 9px 12px;
        font-size: 13px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        font-size: 16px;
    }

    .info-content h5 {
        font-size: 13px;
    }

    .info-content p {
        font-size: 11px;
    }

    .contact-map-wrapper iframe {
        height: 200px !important;
    }

    .social-follow-section h3 {
        font-size: 20px;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* FORM VALIDATION */

.form-control:invalid,
.form-select:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control:valid,
.form-select:valid {
    border-color: #28a745;
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

.text-danger {
    color: var(--primary);
}

#submitBtn {
    position: relative;
    transition: all 0.3s ease;
}

#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#submitBtn.loading {
    pointer-events: none;
}

#submitBtn.loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

/* ==========================================
NAVBAR LOGO FIX - BETTER VISIBILITY
========================================== */

.navbar-brand img {
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    filter: brightness(1.2) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* ==========================================
SERVICE CARDS - IMPROVED TEXT VISIBILITY
========================================== */

.service-card p {
    color: #666666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-size: 14px;
    transition: color 0.4s ease;
    flex-grow: 1;
    font-weight: 500;
}

.service-card:hover p {
    color: var(--dark);
}

/* ==========================================
POPULAR TOURS SECTION - DARK PREMIUM THEME
========================================== */

.popular-tours-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    padding: 100px 0;
}

.popular-tours-section .section-title h2 {
    color: #ffffff;
}

.popular-tours-section .section-title p {
    color: var(--text-light);
}

/* INDEX TOUR CARD */

.index-tour-card {
    background: var(--charcoal);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 2px solid rgba(255, 102, 0, 0.15);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.index-tour-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 102, 0, 0.3);
}

.tour-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.index-tour-card:hover .tour-image {
    transform: scale(1.1);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.tour-image-wrapper .country-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.9), rgba(255, 153, 0, 0.9));
    color: white;
    border: 1px solid rgba(255, 102, 0, 0.5);
}

.tour-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(135deg, #181818 0%, #161616 100%);
}

.tour-content h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.index-tour-card:hover .tour-content h4 {
    color: var(--secondary);
}

.tour-content .tour-price {
    color: var(--primary);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.tour-content .hero-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.tour-content .hero-btn:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

/* ==========================================
FOOTER - VERTICAL SOCIAL ICONS
========================================== */

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons a {
    color: var(--primary);
    font-size: 24px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
    border: 2px solid var(--primary);
}

.social-icons a:hover {
    color: white;
    background: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
}

/* ==========================================
RESPONSIVE - POPULAR TOURS
========================================== */

@media (max-width: 768px) {
    .tour-image-wrapper {
        height: 240px;
    }

    .tour-content {
        padding: 25px 20px;
    }

    .tour-content h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .tour-content .tour-price {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .tour-image-wrapper {
        height: 220px;
    }

    .tour-content {
        padding: 20px 18px;
    }

    .tour-content h4 {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .tour-content .tour-price {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .popular-tours-section {
        padding: 60px 0;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tour-image-wrapper {
        height: 200px;
    }

    .tour-image-wrapper .country-badge {
        font-size: 11px;
        padding: 8px 12px;
    }

    .tour-content {
        padding: 18px 16px;
    }

    .tour-content h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .tour-content .tour-price {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}