﻿:root {
    --primary-color: #FF7A1A;
    --primary-dark: #E56A0A;
    --primary-orange: #FF7A1A;
    --dark-navy: #0F172A;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --soft-peach: #FFF2E8;
    --border-gray: #E5E7EB;
    --text-dark: #0F172A;
    --text-muted: #6B7280;
    --text-muted-alt: #6B7280;
    --bg-light: #F8F9FA;
    --bg-peach: #FFF2E8;
    --footer-dark: #0F172A;
    --shadow-sm: 0 12px 28px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 16px 34px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
    --shadow-soft: 0 24px 55px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

a {
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
}

.navbar {
    transition: all 0.3s ease;
    background: #fff;
}

.navbar .nav-link {
    color: #1f2937;
    font-weight: 500;
    transition: color 0.25s ease;
}

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

.btn-primary, .btn-booking {
    background: linear-gradient(135deg, var(--primary-color), #ff944d);
    border: none;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover, .btn-booking:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 12px 26px rgba(255, 122, 26, 0.22);
    color: #fff;
}

.booking-hero {
    position: relative;
    min-height: 560px;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.progress-card,
.booking-form .card,
.summary-card,
.addon-card,
.review-card,
.newsletter-card,
.faq-section .accordion-item {
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.progress-card {
    background: #fff;
    padding: 1.5rem;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.progress-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
}

.progress-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.8rem;
    border-radius: 999px;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.step-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #475569;
}

.step-complete {
    background: rgba(255, 122, 26, 0.1);
    color: var(--primary-color);
}

.step-complete .step-icon {
    background: var(--primary-color);
    color: #fff;
}

.step-active {
    background: rgba(15, 23, 42, 0.08);
    color: var(--dark-navy);
}

.step-active .step-icon {
    background: var(--dark-navy);
    color: #fff;
}

.booking-form .card {
    background: var(--white);
}

.section-heading {
    margin-bottom: 0.5rem;
}

.section-tag {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.form-control,
.form-select,
.request-box {
    border: 1px solid var(--border-gray);
    border-radius: 0.95rem;
    padding: 0.85rem 1rem;
    transition: all 0.25s ease;
    background: #fcfdff;
}

.form-control:focus,
.form-select:focus,
.request-box:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
    background: #fff;
}

.custom-check .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.request-box {
    min-height: 135px;
    resize: vertical;
}

.summary-card {
    background: #fff;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.summary-card img {
    height: 220px;
    object-fit: cover;
}

.summary-body {
    padding: 1.25rem;
}

.summary-tag {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
}

.summary-meta {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.summary-info,
.price-breakdown {
    border-top: 1px solid var(--border-gray);
    padding-top: 1rem;
    margin-top: 1rem;
}

.summary-info .d-flex,
.price-breakdown .d-flex {
    margin-bottom: 0.65rem;
    color: var(--text-muted);
}

.summary-info strong,
.grand-total strong {
    color: var(--text-dark);
}

.grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 0.8rem;
    border-top: 1px solid var(--border-gray);
    font-size: 1.1rem;
}

.payment-methods {
    border-top: 1px solid var(--border-gray);
    padding-top: 1rem;
    margin-top: 1rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.payment-icons span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f8fafc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.secure-payment {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.addon-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.addon-card img {
    height: 180px;
    object-fit: cover;
}

.addon-content {
    padding: 1rem;
}

.addon-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.review-card {
    background: #fff;
    padding: 1.25rem;
}

.review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.9rem;
}

.faq-section .accordion-item {
    overflow: hidden;
    border: 1px solid var(--border-gray);
    margin-bottom: 0.8rem;
}

.faq-section .accordion-button {
    font-weight: 600;
    color: var(--dark-navy);
    background: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(255, 122, 26, 0.08);
    color: var(--primary-color);
    box-shadow: none;
}

.newsletter-card {
    background: var(--soft-peach);
    padding: 2rem;
    border: 1px solid rgba(255, 122, 26, 0.12);
}

.newsletter-image {
    border-radius: 1.2rem;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.newsletter-form .form-control {
    border-radius: 999px;
}

.footer {
    background: var(--dark-navy);
    color: #fff;
}

.footer-socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    margin-right: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    display: block;
    margin-bottom: 0.45rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-message {
    min-height: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 991px) {
    .progress-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .summary-card {
        position: static;
    }
}

@media (max-width: 576px) {
    .booking-hero {
        min-height: 480px;
    }

    .progress-steps {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        padding: 1.25rem;
    }

    .hero-content {
        padding: 0 0.5rem;
    }
}

a {
    text-decoration: none;
}

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

button,
input,
select {
    font-family: inherit;
}

.navbar {
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.navbar .nav-link {
    color: #1f2937;
    font-weight: 500;
    transition: color 0.25s ease;
}

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

.navbar .packages-active {
    position: relative;
}

.navbar .packages-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 999px;
}

.navbar-brand {
    font-size: 1.3rem;
}

.packages-hero {
    min-height: 520px;
    background-image: url('https://images.unsplash.com/photo-1516574187841-cb9cc2ca948b?w=1920&h=1080&fit=crop&q=90');
    background-size: cover;
    background-position: center;
    position: relative;
}

.packages-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.packages-hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.65) 100%);
}

.packages-hero .container {
    position: relative;
    z-index: 2;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.packages-hero-title {
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
}

.packages-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 680px;
}

.filter-section {
    position: relative;
    margin-top: -70px;
    z-index: 5;
    padding-bottom: 2rem;
}

.filter-panel {
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.filter-panel .form-control,
.filter-panel .form-select {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 0.95rem 1rem;
    transition: all 0.25s ease;
}

.filter-panel .form-control:focus,
.filter-panel .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
    background: #ffffff;
}

.filter-panel .form-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 0.6rem;
}

.btn-reset-filters {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    background: transparent;
    transition: all 0.25s ease;
}

.btn-reset-filters:hover {
    background: var(--primary-color);
    color: #ffffff;
}

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

.package-card-enhanced {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: var(--shadow-sm);
}

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

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

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.duration-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.wishlist-btn-package {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.94);
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wishlist-btn-package:hover {
    transform: scale(1.05);
    color: #ff7a1a;
}

.wishlist-btn-package .fa-heart {
    transition: all 0.3s ease;
}

.wishlist-btn-package.active .fa-heart {
    color: #ff4757;
}

.card-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    flex-grow: 1;
}

.package-divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 1.3rem;
}

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

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
}

.current-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
}

.price-unit {
    color: #6b7280;
}

.btn-explore-package {
    border-radius: 999px;
    padding: 0.85rem 1.45rem;
    background: var(--primary-color);
    border: none;
    color: #ffffff;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-explore-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 122, 26, 0.18);
}

.newsletter-section {
    background: var(--bg-peach);
}

.newsletter-card {
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
}

.newsletter-image {
    min-height: 360px;
    background-image: url('https://images.unsplash.com/photo-1473625247510-8ceb1760943f?w=900&h=900&fit=crop&q=90');
    background-size: cover;
    background-position: center;
}

.newsletter-content {
    padding: 2rem;
}

.btn-subscribe {
    background: var(--primary-color);
    border: none;
}

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

.footer-section {
    background: var(--footer-dark);
    color: rgba(255, 255, 255, 0.85);
}

.footer-section h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.25s ease;
}

.footer-list li a:hover {
    color: var(--primary-color);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 0.65rem;
    transition: transform 0.25s ease, background 0.25s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.65);
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .packages-hero {
        min-height: 460px;
    }
    .filter-section {
        margin-top: -50px;
    }
    .package-image {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .packages-hero {
        min-height: 420px;
    }
    .packages-hero-title {
        font-size: 2.6rem;
    }
    .filter-panel {
        padding: 1.25rem;
    }
    .navbar .nav-link {
        color: #374151;
    }
}

.destinations-hero {
    min-height: 560px;
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&h=1080&fit=crop&q=90');
    background-size: cover;
    background-position: center;
    position: relative;
}

.destinations-hero-bg {
    background: rgba(15, 23, 42, 0.45);
}

.destinations-hero-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.55));
}

.destinations-hero-title {
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.destinations-hero-subtitle {
    font-size: 1.05rem;
    max-width: 620px;
}

.filter-section {
    margin-top: -80px;
    z-index: 10;
}

.filter-panel {
    border-radius: 32px;
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.12);
}

.filter-panel .form-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.filter-panel .form-select,
.filter-panel .form-control {
    background: #f8fafc;
    border: none;
}

.filter-panel .input-group {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.filter-panel .input-group-text {
    border: none;
    background: transparent;
    color: var(--primary-color);
}

.filter-panel .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-panel .btn-outline-primary:hover {
    background: rgba(255, 122, 26, 0.08);
}

.destination-card-enhanced {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #ffffff;
    border-radius: 28px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.destination-card-enhanced:hover {
    transform: translateY(-14px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.destination-card-enhanced .destination-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.destination-card-enhanced .wishlist-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: none;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease, color 0.25s ease;
}

.destination-card-enhanced .wishlist-icon:hover {
    transform: translateY(-2px);
}

.destination-card-enhanced .wishlist-icon.active i {
    color: #ff4757;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
}

.newsletter-section {
    background: var(--bg-peach);
}

.newsletter-card {
    border-radius: 2rem;
    overflow: hidden;
}

.newsletter-image {
    min-height: 340px;
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=900&h=900&fit=crop&q=90');
    background-size: cover;
    background-position: center;
}

.newsletter-form .form-control {
    border: none;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.newsletter-form .btn {
    min-height: 70px;
}

.footer-list li {
    margin-bottom: 0.85rem;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.25s ease;
}

.footer-list li a:hover {
    color: #ffffff;
}

.hover-primary:hover {
    color: #ffffff !important;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.65);
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .filter-section {
        margin-top: -60px;
    }
    .destination-card-enhanced .destination-img {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .destinations-hero {
        min-height: 520px;
    }
    .filter-section {
        margin-top: -45px;
    }
    .filter-panel {
        padding: 1.75rem;
    }
    .filter-panel .row > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .destination-card-enhanced .destination-img {
        height: 220px;
    }
}

.hero-section {
    min-height: calc(100vh - 86px);
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&h=1080&fit=crop&q=90');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 3rem 0 8rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.30), rgba(15, 23, 42, 0.88));
    pointer-events: none;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.30), rgba(15, 23, 42, 0.72));
}

.hero-overlay {
    background: radial-gradient(circle at top right, rgba(255, 122, 26, 0.24), transparent 24%), radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.16), transparent 20%);
    mix-blend-mode: screen;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3.4rem, 6vw, 5.6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.02;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    max-width: 720px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.letter-spacing {
    letter-spacing: 0.22em;
}

.search-box-wrapper {
    position: relative;
    margin-top: -60px;
    z-index: 3;
    width: min(100%, 1120px);
    padding: 0 1rem;
}

.search-box {
    border: none;
    border-radius: 2rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 35px 90px rgba(15, 23, 42, 0.2);
}

.search-box .form-control,
.search-box .form-select {
    background: transparent;
    border: none;
    min-height: 68px;
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    outline: none;
    box-shadow: none;
}

.search-box .input-group {
    min-height: 68px;
}

.search-box .input-group-text {
    border: none;
    background: transparent;
    color: var(--primary-color);
}

.search-box .form-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #6B7280;
}

.btn-explore {
    min-height: 68px;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .search-box-wrapper {
        margin-top: -45px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 85vh;
        padding-bottom: 5rem;
    }

    .search-box-wrapper {
        position: static;
        transform: none;
        margin-top: 2rem;
        bottom: auto;
    }

    .search-box {
        padding: 1rem;
    }

    .search-box .input-group {
        min-height: 60px;
    }
}

.hero-bg {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.72));
    mix-blend-mode: multiply;
}

.hero-overlay {
    background: radial-gradient(circle at top right, rgba(255, 122, 26, 0.24), transparent 28%), radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.14), transparent 22%);
}

.hero-title {
    font-size: clamp(3.4rem, 6vw, 5.6rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.02;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    max-width: 740px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.letter-spacing {
    letter-spacing: 0.22em;
}

.search-box-wrapper {
    position: relative;
    margin-top: -110px;
    z-index: 10;
    max-width: 1120px;
}

.search-box {
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 35px 90px rgba(15, 23, 42, 0.16);
}

.search-box .form-control,
.search-box .form-select {
    background: transparent;
    border: none;
}

.search-box .input-group {
    min-height: 70px;
}

.search-box .input-group-text {
    border: none;
    background: transparent;
    color: var(--primary-color);
}

.search-box .form-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #6b7280;
}

.btn-explore {
    min-height: 72px;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 700;
}

.contact-hero {
    min-height: 600px;
    background-image: url('https://th.bing.com/th/id/R.1cbf17afea0a0cf545b27657d02b8ab0?rik=0WdDw0zgT%2fsEfQ&riu=http%3a%2f%2fgurungvalley.com%2fwp-content%2fuploads%2f2017%2f07%2fAAEAAQAAAAAAAAjCAAAAJGRiNzI1NDBkLTZlZmItNDk1OC05OWU0LWZmZWIzOWU5MjE1NQ-1024x682.jpg&ehk=VAkzg0zFvA0MCdQ9KTAaazn57BFpTBpku1Tqm%2fc5YBI%3d&risl=&pid=ImgRaw&r=0');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero .section-label {
    color: var(--primary-orange);
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-hero h1 {
    font-size: clamp(3rem, 4vw, 4.5rem);
    color: #ffffff;
    line-height: 1.02;
    margin-bottom: 1.25rem;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 700px;
}

.contact-main {
    background: #f8fafc;
}

.contact-intro-card,
.contact-form-card,
.contact-info-card {
    border-radius: 1.75rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-intro-card,
.contact-form-card {
    background: #ffffff;
}

.contact-intro-card:hover,
.contact-form-card:hover,
.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.14);
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-info-card h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: var(--text-muted-alt);
    margin-bottom: 0.25rem;
}

.contact-info-card .icon-holder {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 122, 26, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-form-card label {
    font-weight: 600;
}

.contact-form-card .form-control,
.contact-form-card .form-select,
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-radius: 1.25rem;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus,
.newsletter-banner input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 122, 26, 0.15);
}

.contact-form-card .btn-primary {
    border-radius: 999px;
    padding: 1rem 1.75rem;
    font-weight: 700;
}

.contact-form-card .btn-primary:hover {
    transform: translateY(-1px);
}

.map-section {
    padding: 3rem 0;
}

.map-wrapper {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.newsletter-banner {
    background: var(--soft-peach);
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
}

.newsletter-banner .newsletter-image {
    max-width: 100%;
    border-radius: 1.5rem;
    object-fit: cover;
    display: block;
    width: 100%;
    height: auto;
}

.newsletter-banner h3 {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    font-weight: 800;
}

.newsletter-banner p {
    color: var(--text-muted-alt);
    margin-bottom: 1.75rem;
}

.newsletter-banner .subscribe-row {
    gap: 1rem;
}

.newsletter-banner .form-control {
    border-radius: 999px;
    padding: 1rem 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.newsletter-banner .btn-subscribe {
    border-radius: 999px;
    padding: 1rem 1.75rem;
    font-weight: 700;
}

.footer-section {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.85);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section .navbar-brand {
    font-size: 1.3rem;
}

.section-divider {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .contact-hero {
        min-height: 520px;
    }
    .newsletter-banner {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-hero h1 {
        font-size: 2.6rem;
    }
    .newsletter-banner .subscribe-row {
        flex-direction: column;
    }
}


.destination-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    border-radius: 1.75rem;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.destination-card .destination-image {
    height: 280px;
    overflow: hidden;
}

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

.destination-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-card {
    border-radius: 1.75rem;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.package-card .card-img-top {
    height: 280px;
    object-fit: cover;
}

.feature-card {
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 88px;
    height: 88px;
}

.feature-icon i {
    font-size: 1.65rem;
}

.testimonial-card {
    border-radius: 1.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.newsletter-form .form-control {
    min-height: 70px;
    border-radius: 999px;
}

.newsletter-form .btn {
    min-width: 180px;
}

.hover-primary:hover {
    color: #ffffff !important;
}

@media (max-width: 991px) {
    .search-box-wrapper {
        margin-top: -45px;
    }
    .hero-section {
        min-height: 80vh;
    }
}

@media (max-width: 767px) {
    .search-box-wrapper {
        margin-top: -35px;
    }
    .search-box {
        padding: 1.5rem;
    }
    .destination-card .card-img-top,
    .package-card .card-img-top {
        height: 240px;
    }
    .search-box .input-group-text {
        padding: 0.9rem 0.8rem;
    }
}
:root {
    --primary-color: #FF7A1A;
    --primary-dark: #E56A0A;
    --bg-light: #F8F9FA;
    --bg-peach: #FFF2E8;
    --text-dark: #0F172A;
    --text-muted: #6B7280;
    --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.12);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
}

.navbar {
    transition: all 0.3s ease;
    background: #ffffff;
}

.navbar.navbar-shadow {
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.navbar-brand {
    font-size: 1.35rem;
}

.navbar .nav-link {
    color: #1f2937;
    font-weight: 500;
    position: relative;
    transition: color 0.25s ease;
}

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

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 999px;
}

.hero-about {
    min-height: 600px;
    background-image: url('https://th.bing.com/th/id/R.1cbf17afea0a0cf545b27657d02b8ab0?rik=0WdDw0zgT%2fsEfQ&riu=http%3a%2f%2fgurungvalley.com%2fwp-content%2fuploads%2f2017%2f07%2fAAEAAQAAAAAAAAjCAAAAJGRiNzI1NDBkLTZlZmItNDk1OC05OWU0LWZmZWIzOWU5MjE1NQ-1024x682.jpg&ehk=VAkzg0zFvA0MCdQ9KTAaazn57BFpTBpku1Tqm%2fc5YBI%3d&risl=&pid=ImgRaw&r=0');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.hero-about .hero-content {
    position: relative;
    z-index: 1;
}

.hero-about h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.02;
}

.hero-about p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.92);
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
}

.story-section {
    background: #ffffff;
}

.story-card {
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
}

.story-card img {
    border-radius: 2rem;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.story-content h2 {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    line-height: 1.05;
}

.story-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

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

.mission-card {
    background: #ffffff;
    border-radius: 1.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.14);
}

.mission-card h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-muted);
}

.features-section {
    background: #ffffff;
}

.feature-card {
    border-radius: 1.85rem;
    background: #ffffff;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.14);
}

.feature-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.team-card {
    border-radius: 1.85rem;
    padding: 2rem;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.14);
}

.team-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.4rem;
    display: block;
}

.team-card h5 {
    margin-bottom: 0.4rem;
}

.team-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.team-card .social-icons a {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8fafc;
    color: var(--text-dark);
    margin: 0 0.3rem;
    transition: transform 0.25s ease, background 0.25s ease;
}

.team-card .social-icons a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.newsletter-section {
    background: var(--bg-peach);
}

.newsletter-card,
.newsletter-banner {
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.newsletter-image,
.newsletter-card .newsletter-image,
.newsletter-banner .newsletter-image {
    min-height: 360px;
    background-image: url('https://images.unsplash.com/photo-1473625247510-8ceb1760943f?w=900&h=900&fit=crop&q=90');
    background-size: cover;
    background-position: center;
    width: 100%;
}

.newsletter-area,
.newsletter-content,
.newsletter-banner .newsletter-content {
    padding: 2.5rem;
}

.newsletter-banner .newsletter-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
}

.newsletter-form .form-control,
.newsletter-area .form-control,
.newsletter-banner .form-control,
.newsletter-content .form-control {
    border-radius: 999px;
    padding: 1rem 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.newsletter-form .btn,
.newsletter-area .btn-primary,
.newsletter-banner .btn-subscribe,
.btn-subscribe {
    min-height: 62px;
    border-radius: 999px;
    padding: 1rem 1.75rem;
    font-weight: 700;
    background: var(--primary-color);
    border: none;
    color: #ffffff;
}

.newsletter-banner .subscribe-row {
    gap: 1rem;
}

.bg-peach {
    background: var(--bg-peach) !important;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

.footer-about {
    background: #0F172A;
    color: rgba(255, 255, 255, 0.85);
}

.footer-about a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-about a:hover {
    color: #ffffff;
}

.footer-about .footer-list li {
    margin-bottom: 0.85rem;
}

.footer-about .footer-bottom {
    color: rgba(255, 255, 255, 0.65);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .hero-about {
        min-height: 520px;
    }
}

@media (max-width: 767px) {
    .hero-about {
        min-height: 480px;
    }

    .story-content h2,
    .newsletter-area h3 {
        font-size: 2rem;
    }
}
/* Contact page custom styles */
.contact-hero {
    min-height: 520px;
    background-image: url('https://chalo-chale.vercel.app/assets/images/hero/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.contact-hero .section-label {
    color: #ffc27a;
}

.contact-hero .display-4 {
    color: #ffffff;
    max-width: 600px;
}

.contact-hero .lead {
    color: rgba(255, 255, 255, 0.85);
}

.contact-main {
    background: #f8fafc;
}

.contact-intro-card {
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.contact-info-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-form-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 991px) {
    .contact-hero {
        min-height: 420px;
    }
}
