/* ===================================
   WANDER PEAKS - Main Stylesheet
   Premium Himalayan Tours
   =================================== */

/* CSS Variables / Design System */
:root {
    /* Colors */
    --primary: #1E6091;
    --primary-dark: #154766;
    --primary-light: #4A9BC8;
    --secondary: #3BB54A;
    --secondary-dark: #2D8A39;
    --accent-gold: #D4A574;
    --accent-orange: #E8913A;

    /* Backgrounds */
    --bg-light: #F0F8FF;
    --bg-white: #FFFFFF;
    --bg-dark: #0A2239;
    --bg-darker: #061520;

    /* Text */
    --text-primary: #1A1A2E;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-light: #FFFFFF;

    /* Borders & Shadows */
    --border-light: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Spacing */
    --container-width: 1280px;
    --section-padding: 80px;
    --section-padding-mobile: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--text-light);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--text-light);
    border-color: var(--accent-gold);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

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

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

/* ===================================
   FLOATING BUTTONS
   =================================== */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
}

.floating-btn {
    position: fixed;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-light);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    pointer-events: auto;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.whatsapp {
    background: #25D366;
    left: 24px;
}

.floating-btn.call {
    background: var(--primary);
    right: 24px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-cta {
    margin-left: 16px;
}

.nav-cta-mobile {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    z-index: 10;
    width: 90%;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-content .tagline {
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.price-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-badge .starting {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.price-badge .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
}

.price-badge .duration {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--text-light);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
    background: var(--bg-white);
    padding: 60px 0;
    margin-top: -60px;
    position: relative;
    z-index: 30;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 24px;
}

.stat-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary);
    display: inline;
}

.stat-plus {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===================================
   PACKAGES SECTION
   =================================== */
.packages {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

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

.package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--secondary);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.package-badge.featured {
    background: var(--accent-gold);
}

.package-content {
    padding: 24px;
}

.package-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.package-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    min-height: 42px;
}

.package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.package-details .duration {
    font-size: 13px;
    color: var(--text-secondary);
}

.package-details .duration i {
    margin-right: 6px;
    color: var(--primary);
}

.package-details .price {
    font-size: 13px;
    color: var(--text-secondary);
}

.package-details .price strong {
    font-size: 18px;
    color: var(--secondary);
}

/* ===================================
   DESTINATIONS SECTION
   =================================== */
.destinations {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

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

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.destination-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-light);
    transform: translateY(20px);
    opacity: 0.9;
    transition: var(--transition-normal);
}

.destination-card:hover .destination-overlay {
    transform: translateY(0);
    opacity: 1;
}

.destination-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.destination-overlay p {
    font-size: 14px;
    opacity: 0.85;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--secondary);
    color: var(--text-light);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}



.experience-badge .years {
    display: block;
    font-size: 40px;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 14px;
    opacity: 0.9;
}

.why-us-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-us-content>p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.features-list {
    margin-bottom: 32px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-primary);
}

.features-list li i {
    color: var(--secondary);
    font-size: 20px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow: hidden;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
    opacity: 1;
    transition: var(--transition-normal);
}

.quote-icon {
    color: var(--secondary);
    font-size: 32px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-rating {
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dots .dot.active {
    background: var(--secondary);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--text-light);
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

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

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding-top: 60px;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
}

.about-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-info li i {
    color: var(--secondary);
    margin-top: 4px;
}

.contact-info li span,
.contact-info li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    background: var(--bg-darker);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

/* ===================================
   PAGE HEADER (Inner Pages)
   =================================== */
.page-header {
    position: relative;
    height: 45vh;
    min-height: 350px;
    margin-top: 70px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.6) 100%);
}

.page-header .container {
    position: relative;
    z-index: 10;
    color: var(--text-light);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   PACKAGES PAGE
   =================================== */
.packages-page {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.package-detail-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.package-detail-image {
    position: relative;
    min-height: 350px;
}

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

.package-detail-content {
    padding: 32px 32px 32px 0;
}

.package-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.package-detail-content .package-tagline {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 16px;
}

.package-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.meta-item i {
    color: var(--primary);
}

.package-highlights h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.package-highlights ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.package-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.package-highlights li i {
    color: var(--secondary);
}

.package-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-tag .from {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-tag .amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

.price-tag .per {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===================================
   DESTINATIONS PAGE
   =================================== */
.destinations-page {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.dest-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.dest-image {
    height: 100%;
    min-height: 250px;
}

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

.dest-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.dest-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.dest-subtitle {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 12px;
}

.dest-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex-grow: 1;
}

.dest-info {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.dest-info i {
    margin-right: 6px;
    color: var(--primary);
}

/* ===================================
   SERVICES PAGE
   =================================== */
.services-page {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    font-size: 32px;
    color: var(--text-light);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card>p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-features {
    text-align: left;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--secondary);
}

/* Process Section */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--text-light);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-page {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-logo-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Mission Section */
.mission-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mission-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 28px;
    color: var(--text-light);
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-stats {
    margin-top: 0;
    border-radius: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 32px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Team/Commitment Section */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.commitment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.commitment-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.commitment-item i {
    font-size: 24px;
    color: var(--secondary);
    flex-shrink: 0;
}

.commitment-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.commitment-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-page {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-info-section>p,
.contact-form-section>p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--text-light);
}

.contact-icon.whatsapp-icon {
    background: #25D366;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-details .sub-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.social-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

.social-link-large {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition-normal);
}

.social-link-large:hover {
    background: var(--primary);
    color: var(--text-light);
}

.social-link-large i {
    font-size: 20px;
}

/* Contact Form */
.contact-form-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 96, 145, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-block {
    width: 100%;
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* Map Section */
.map-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Quick Contact CTA */
.quick-contact-cta {
    padding: 60px 0;
    background: var(--bg-light);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.quick-contact-item {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.quick-contact-item>i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.quick-contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.quick-contact-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .destination-card.large {
        grid-column: span 2;
        height: 280px;
    }

    .destination-card:not(.large) {
        height: 200px;
    }

    .why-us-grid {
        gap: 40px;
    }

    .testimonials-slider {
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }

    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-light);
        display: block;
        width: 100%;
    }

    /* Fix nav-link active/hover line for mobile - hide the pseudo-element */
    .nav-link::after {
        display: none !important;
        width: 0 !important;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        display: none !important;
        width: 0 !important;
    }

    /* Use border-left for active indicator in mobile menu */
    .nav-link.active {
        border-left: 3px solid var(--secondary) !important;
        padding-left: 12px;
        background: rgba(30, 96, 145, 0.05);
    }

    /* Footer contact icons alignment */
    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-contact-item i {
        flex-shrink: 0;
        margin-top: 3px;
    }

    /* Package card icon alignment */
    .package-details {
        flex-wrap: wrap;
    }

    .package-details .duration,
    .package-details .price {
        display: flex;
        align-items: center;
    }

    .nav-cta {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
        margin-top: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    /* Floating buttons positioning */
    .floating-btn {
        bottom: 20px;
    }

    .floating-btn.whatsapp {
        left: 20px;
    }

    .floating-btn.call {
        right: 20px;
    }

    /* Hero Mobile */
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-content .tagline {
        font-size: 16px;
    }

    .price-badge .amount {
        font-size: 28px;
    }

    /* Stats Mobile */
    .stats {
        margin-top: -40px;
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-card i {
        font-size: 32px;
    }

    .stat-number {
        font-size: 32px;
    }

    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    /* Packages Mobile */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Destinations Mobile */
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card.large,
    .destination-card:not(.large) {
        grid-column: span 1;
        height: 200px;
    }

    /* Why Us Mobile */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        display: inline-block;
    }

    .why-us-content h2 {
        font-size: 28px;
    }

    /* Testimonials Mobile */
    .testimonial-card {
        flex: 0 0 100%;
    }

    /* CTA Mobile */
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 26px;
    }

    .price-badge {
        padding: 12px 24px;
    }

    .price-badge .amount {
        font-size: 24px;
    }

    .slider-controls {
        gap: 12px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .stats-grid {
        gap: 16px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 16px;
    }

    .floating-btn.whatsapp {
        left: 16px;
    }

    .floating-btn.call {
        right: 16px;
    }
}

/* ===================================
   INNER PAGES RESPONSIVE
   =================================== */

/* Tablet - Inner Pages */
@media (max-width: 1024px) {
    .package-detail-card {
        grid-template-columns: 350px 1fr;
    }

    .dest-grid {
        grid-template-columns: 1fr;
    }

    .dest-card {
        grid-template-columns: 280px 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-logo-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile - Inner Pages */
@media (max-width: 768px) {

    /* Page Header Mobile */
    .page-header {
        height: 40vh;
        min-height: 280px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    /* Packages Page Mobile */
    .package-detail-card {
        grid-template-columns: 1fr;
    }

    .package-detail-image {
        min-height: 250px;
    }

    .package-detail-content {
        padding: 24px;
    }

    .package-detail-content h2 {
        font-size: 24px;
    }

    .package-highlights ul {
        grid-template-columns: 1fr;
    }

    .package-pricing {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .package-pricing .btn {
        width: 100%;
    }

    /* Destinations Page Mobile */
    .dest-card {
        grid-template-columns: 1fr;
    }

    .dest-image {
        min-height: 200px;
    }

    /* Services Page Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step::after {
        display: none;
    }

    /* About Page Mobile */
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .commitment-list {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 26px;
    }

    /* Contact Page Mobile */
    .contact-form-section {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        flex-direction: column;
    }
}

/* Small Mobile - Inner Pages */
@media (max-width: 480px) {
    .page-header h1 {
        font-size: 26px;
    }

    .package-meta {
        flex-direction: column;
        gap: 12px;
    }

    .price-tag .amount {
        font-size: 28px;
    }

    .dest-info {
        flex-direction: column;
        gap: 8px;
    }
}