/* ============================================================
   LANDING PAGE STYLESHEET - TRIP TO MOUNTAIN
   ============================================================ */

/* --- 1. Variables & Dark Mode --- */
:root {
    --primary: #00847c;
    --primary-hover: #00635c;
    --primary-rgb: 0, 132, 124;
    
    /* Light Theme Colors (Default) */
    --bg: #ffffff;
    --c: #2b2b2b;
    --h: #00847c;
    --light-bg: #f5f8f8;
    --card-bg: #ffffff;
    --border-color: #e2e8e8;
    --text-muted: #667575;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
    --hero-overlay: rgba(0, 0, 0, 0.45);
}

html[data-theme="dark"] {
    /* Dark Theme Colors */
    --bg: #0f1414;
    --c: #e2e8e8;
    --h: #00a399;
    --light-bg: #171d1d;
    --card-bg: #1b2222;
    --border-color: #2c3838;
    --text-muted: #99a8a8;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.3);
    --hero-overlay: rgba(0, 0, 0, 0.6);
}

/* Apply variables to body and main sections for seamless dark mode */
.landing-body-wrap {
    background-color: var(--bg);
    color: var(--c);
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* --- 2. Typography & Globals --- */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.btn-adventure {
    background-color: var(--primary);
    color: #ffffff !important;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 132, 124, 0.3);
}

.btn-adventure:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 132, 124, 0.5);
}

.btn-adventure-outline {
    background-color: transparent;
    color: var(--primary) !important;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-adventure-outline:hover {
    background-color: var(--primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* --- 3. Hero Section --- */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 120px 0 80px 0;
}

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

.hero-content-wrap {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 900px;
    text-align: center;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Glassmorphism Booking Form */
.hero-booking-form-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.form-group-custom {
    flex: 1 1 200px;
    text-align: left;
}

.form-group-custom label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f2f2f2;
    margin-bottom: 8px;
    display: block;
}

.form-group-custom .form-control,
.form-group-custom .form-select {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group-custom .form-control:focus,
.form-group-custom .form-select:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 132, 124, 0.5);
    outline: none;
}

/* Select Option Styling for readable text on options list */
.form-group-custom option {
    background-color: #171d1d;
    color: #ffffff;
}

.form-group-custom input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.btn-form-submit {
    flex: 1 1 150px;
    margin-top: 15px;
}

.btn-form-submit button {
    width: 100%;
    padding: 13px 20px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    background-color: var(--primary);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 132, 124, 0.4);
    transition: all 0.3s ease;
}

.btn-form-submit button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* --- 4. About & Why Choose Us --- */
.about-section {
    padding: 80px 0;
    background-color: var(--bg);
}

.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c);
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* --- 5. Featured Tour Packages --- */
.packages-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.tour-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.tour-card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-img-wrap img {
    transform: scale(1.08);
}

.tour-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tour-duration-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.tour-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--c);
}

.tour-excerpt {
    font-family: 'Gill Sans', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.tour-rating {
    color: #ffc107;
    font-size: 13px;
}

.tour-rating span {
    color: var(--text-muted);
    font-size: 12px;
    margin-left: 5px;
}

.tour-action-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.tour-action-btn:hover {
    color: var(--primary-hover);
}

/* --- 6. Booking Process / How It Works --- */
.process-section {
    padding: 80px 0;
    background-color: var(--bg);
}

.process-steps-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    margin-top: 30px;
}

/* Connecting Line on Desktops */
@media (min-width: 992px) {
    .process-steps-wrap::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: var(--border-color);
        z-index: 1;
    }
}

.step-card {
    flex: 1 1 200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number-icon {
    width: 80px;
    height: 80px;
    background-color: var(--card-bg);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover .step-number-icon {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card:hover .step-badge {
    background: #ffc107;
    color: #000;
}

.step-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--c);
}

.step-desc {
    font-family: 'Gill Sans', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

/* --- 7. Gallery / Destination Showcase --- */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-item.item-tall {
    grid-row: span 2;
}

.gallery-item.item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-dest-name {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-dest-name {
    transform: translateY(0);
}

.gallery-dest-count {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover .gallery-dest-count {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item.item-tall {
        grid-row: span 1;
    }
    .gallery-item.item-wide {
        grid-column: span 1;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 8. Testimonials Section --- */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg);
}

.swiper-testimonials {
    padding: 20px 20px 50px 20px !important;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: 'Gill Sans', sans-serif;
    font-size: 17px;
    font-style: italic;
    color: var(--c);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: rgba(0, 132, 124, 0.08);
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.testimonial-author-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--c);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.testimonial-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 12px;
}

/* --- 9. Why Travel With Us / Features --- */
.features-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 132, 124, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background-color: var(--primary);
    color: #ffffff;
    transform: rotate(360deg);
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--c);
}

.feature-desc {
    font-family: 'Gill Sans', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- 10. Final Call To Action & Newsletter --- */
.cta-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 84, 78, 0.9) 0%, rgba(0, 20, 20, 0.95) 100%);
    z-index: 1;
}

.cta-content-wrap {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cta-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form-container {
    max-width: 550px;
    margin: 30px auto 0 auto;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.newsletter-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 12px 25px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--primary-hover);
}

@media (max-width: 575px) {
    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 10px;
    }
    .newsletter-input {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 30px;
        width: 100%;
        text-align: center;
    }
    .newsletter-btn {
        width: 100%;
        padding: 14px;
    }
}
