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

body {
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: hsl(var(--background));
    font-family: Poppins, sans-serif;
    color: hsl(220 40% 13%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Playfair Display, serif;
    font-weight: 700;
    letter-spacing: -.025em
}

/* =========================
   COMMON UTILITIES
========================= */
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.text-muted-small {
    font-size: 14px;
    color: #6c757d;
}

.fw-medium {
    font-weight: 500;
}

/* =========================
   COMMON BUTTON
========================= */
.btn-custom {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-3px);
}

/* =========================
   COMMON CARD
========================= */
.card-custom {
    border: none;
    border-radius: 16px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* =========================
   IMAGE HANDLING
========================= */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   ICON STYLING
========================= */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* =========================
   COMMON ANIMATIONS
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

/* =========================
   RESPONSIVE HELPERS
========================= */
@media (max-width: 767px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
}







.site-hero {
    position: relative;
    height: 45vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* background image */
.site-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 18s ease-in-out infinite;
}

/* overlay */
.site-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 42, 71, 0.75);
    z-index: 1;
}

/* content */
.site-hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    animation: fadeUp 1.2s ease forwards;
}

.site-hero__content p {
    max-width: 520px;
    margin: 12px auto 0;
    color: rgba(255, 255, 255, 0.9);
}

/* animations */
@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* mobile */
@media (max-width: 767px) {
    .site-hero {
        height: 60vh;
    }

    .site-hero__content p {
        font-size: 15px;
        padding: 0 10px;
    }
}









/* =========================
   TOP BAR
========================= */
.top-bar {
    background-color: #16375b;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar span {
    display: inline-flex;
    align-items: center;
}

.top-bar i {
    margin-right: 6px;
    color: #ff9b50;
}

/* =========================
   STICKY MAIN NAV
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* =========================
   LOGO
========================= */
.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo-text h6 {
    font-size: 16px;
}

.logo-text small {
    font-size: 13px;
    color: #6c757d;
}

/* =========================
   NAV LINKS
========================= */
.nav-menu .nav-link {
    font-weight: 500;
    color: hsl(220 40% 13%);
    margin: 0 14px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #ff8c42;
    transition: width 0.3s ease;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    color: #ff8c42;
}

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

/* =========================
   BOOK NOW BUTTON
========================= */
.btn-book {
    background: linear-gradient(135deg, #ff8c42, #ff6f3c);
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.45);
    color: #fff;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 991px) {
    .nav-menu .nav-link {
        margin: 10px 0;
    }

    .btn-book {
        margin-top: 12px;
    }

    .top-right {
        text-align: left !important;
        margin-top: 6px;
    }
}

.hero-wrapper {
    position: relative;
}

/* SLIDER */
.hero-swiper {
    height: 90vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* HERO TEXT */
.hero-content {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 90%;
    z-index: 2;
}

.hero-badge {
    background: #ff8c42;
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 14px;
}

.hero-content h1 {
    font-size: 52px;
}

.hero-content p {
    font-size: 18px;
}

/* SEARCH FORM */
.hero-search {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
    background: rgba(22, 55, 91, 0.95);
    padding: 22px;
    border-radius: 18px;
    z-index: 5;
}

/* SEARCH FIELD */
.search-field {
    position: relative;
}

.search-field i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff8c42;
}

.search-field .form-select {
    padding-left: 40px;
    height: 52px;
    border-radius: 12px;
}

/* SEARCH BUTTON */
.btn-search {
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff8c42, #ff6f3c);
    color: #fff;
    border: none;
}

/* MOBILE */
@media (max-width: 767px) {
    .hero-swiper {
        height: 100vh;
    }

    .hero-content {
        top: 30%;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-search {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: -90px auto 20px;
    }
}

/* ===== SLIDER ARROWS ===== */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: bold;
    color: #111;
}

/* Position same as image */
.hero-swiper .swiper-button-prev {
    left: 18px;
}

.hero-swiper .swiper-button-next {
    right: 18px;
}

/* Hover (desktop) */
@media (hover: hover) {

    .hero-swiper .swiper-button-prev:hover,
    .hero-swiper .swiper-button-next:hover {
        background: #ff8c42;
    }

    .hero-swiper .swiper-button-prev:hover::after,
    .hero-swiper .swiper-button-next:hover::after {
        color: #fff;
    }
}

/* ===== SLIDER DOTS ===== */
.hero-swiper .swiper-pagination {
    bottom: 22px !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    margin: 0 5px !important;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #ff8c42;
}

/* ===== MOBILE SEARCH FORM FIX ===== */
@media (max-width: 767px) {
    .hero-search {
        position: absolute;
        left: 50%;
        bottom: 40px;
        /* 👈 image jaisa gap */
        transform: translateX(-50%);
        width: calc(100% - 24px);
        padding: 18px;
        border-radius: 18px;
        z-index: 6;
    }

    .hero-content {
        top: 28%;
        /* text thoda upar */
    }
}

/* ================= ABOUT SECTION ================= */
.about-section {
    background-color: #fffaf6;
}

/* Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffe9dd;
    color: #ff8c42;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.section-badge i {
    font-size: 10px;
}

/* Title */
.about-title {
    font-size: 42px;
    margin-bottom: 18px;
}

.about-title span {
    color: #ff8c42;
}

/* Text */
.about-text {
    font-size: 16px;
    color: #5f6c7b;
    margin-bottom: 16px;
}

/* Features */
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.feature-item i {
    color: #ff8c42;
}

/* Button */
.btn-about {
    background: linear-gradient(135deg, #ff8c42, #ff6f3c);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
}

.btn-about:hover {
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.4);
}

/* ================= STAT CARDS ================= */
.stat-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
}

.stat-card.orange {
    background: #ff8c42;
    color: #fff;
}

.stat-card i {
    font-size: 32px;
    margin-bottom: 12px;
    color: #ff8c42;
}

.stat-card.orange i {
    color: #fff;
}

.stat-card h3 {
    font-size: 28px;
    margin-bottom: 4px;
}

.stat-card p {
    margin: 0;
    font-size: 15px;
}

/* Hover */
.stat-card:hover {
    transform: translateY(-8px);
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .about-title {
        font-size: 32px;
    }

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

/* ================= PACKAGES SECTION ================= */
.packages-section {
    background: #f4f1eb;
}

/* Section Heading */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffe9dd;
    color: #ff8c42;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
}

.section-badge i {
    font-size: 6px;
}

.section-title {
    font-size: 42px;
}

.section-title span {
    color: #ff8c42;
}

.section-subtitle {
    color: #6c757d;
    max-width: 520px;
    margin: 0 auto;
}

/* ================= CARD ================= */
.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
}

/* Image */
.package-img {
    position: relative;
}

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

/* Tag */
.tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ff8c42;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* Rating */
.rating {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.rating i {
    color: #ffb703;
}

/* Body */
.package-body {
    padding: 20px;
}

.package-body h5 {
    margin-bottom: 8px;
}

.package-body p {
    color: #6c757d;
    font-size: 15px;
}

/* Info */
.package-info {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #6c757d;
    margin-top: 10px;
    flex-wrap: wrap;
}

.package-info i {
    color: #ff8c42;
}

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

.package-footer del {
    font-size: 14px;
    color: #999;
}

.package-footer strong {
    color: #ff8c42;
    font-size: 18px;
    display: block;
}

.package-footer small {
    font-size: 13px;
    color: #6c757d;
}

/* Buttons */
.btn-view {
    background: #ff8c42;
    color: #fff;
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 14px;
}

.btn-view:hover {
    color: #ff8c42;
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.4);
}

.btn-main {
    background: linear-gradient(135deg, #ff8c42, #ff6f3c);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .section-title {
        font-size: 32px;
    }

    .package-img img {
        height: 180px;
    }
}

/* ================= WHY CHOOSE US ================= */
.why-choose-section {
    background: linear-gradient(180deg, #0e2a47, #0b223a);
    position: relative;
    overflow: hidden;
}

/* Badge */
.section-badge.dark {
    background: rgba(255, 140, 66, 0.15);
    color: #ff8c42;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-badge.dark i {
    font-size: 6px;
}

/* Title */
.section-title {
    font-size: 42px;
}

.section-title span {
    color: #ff8c42;
}

.section-subtitle {
    max-width: 520px;
    margin: 0 auto;
    opacity: 0.85;
}

/* ================= CARD ================= */
.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card h5 {
    color: #ffffff;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

/* Icon */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 140, 66, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-box i {
    color: #ff8c42;
    font-size: 22px;
}

/* Hover Effect */
.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .section-title {
        font-size: 30px;
    }

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

    .icon-box {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ================= DESTINATIONS ================= */
.destinations-section {
    background: #fffaf6;
}

/* View all */
.view-all-link {
    color: #ff8c42;
    font-weight: 500;
    text-decoration: none;
}

.view-all-link i {
    margin-left: 6px;
}

/* Cards */
.destination-card {
    position: relative;
    display: block;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
}

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

/* Overlay */
.destination-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}

.destination-card h5 {
    margin-bottom: 4px;
}

.destination-card p {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
}

/* Sizes */
.destination-card.tall {
    height: 100%;
}

.destination-card.wide {
    height: 200px;
}

/* Hover */
.destination-card:hover img {
    transform: scale(1.08);
}

/* Orange text helper */
.text-orange {
    color: #ff8c42;
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .destination-card.wide {
        height: 180px;
    }

    .destination-card.tall {
        height: 260px;
    }
}

/* ================= TESTIMONIAL ================= */
.testimonial-section {
    background: #f4f1eb;
}

/* Card */
.testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 44px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Quote SVG */
.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 0;
}

/* Stars */
.stars {
    color: #ffb703;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* Text */
.testimonial-text {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* User */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c42, #ff6f3c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.location {
    font-size: 14px;
    color: #6c757d;
}

.tour {
    font-size: 14px;
    color: #ff8c42;
}

/* ================= NAV CENTER ================= */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 36px;
}

/* Arrows */
.testimonial-section .swiper-button-prev,
.testimonial-section .swiper-button-next {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-section .swiper-button-prev::after,
.testimonial-section .swiper-button-next::after {
    font-size: 14px;
    color: #111;
}

/* Dots */
.testimonial-section .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonial-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ddd;
    opacity: 1;
}

.testimonial-section .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 10px;
    background: #ff8c42;
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .testimonial-card {
        padding: 30px;
    }

    .quote-icon {
        top: 20px;
        left: 20px;
    }
}

/* ================= CTA SECTION ================= */
.cta-section {
    background: linear-gradient(135deg,
            #ff7033,
            #da3f0b,
            #ff7033);
    background-size: 200% 200%;
    animation: gradientMove 12s ease infinite;
    position: relative;
    overflow: hidden;
}

/* Gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Text */
.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.cta-subtext a {
    color: #fff;
    text-decoration: underline;
}

/* Buttons */
.btn-cta-primary {
    background: #0e2a47;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
}

.btn-cta-primary:hover {
    background: #0b223a;
    color: #fff;
}

.btn-cta-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    background: transparent;
}

.btn-cta-outline:hover {
    background: #fff;
    color: #da3f0b;
}

/* ================= MOVING SHAPES ================= */
.cta-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    animation: floatY 6s ease-in-out infinite;
}

.circle-left {
    top: 40px;
    left: 40px;
}

.circle-right {
    bottom: 40px;
    right: 40px;
    animation-delay: 2s;
}

/* Float animation */
@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .cta-circle {
        width: 110px;
        height: 110px;
    }

    .cta-text {
        font-size: 15px;
    }
}

/* ================= FOOTER ================= */
.site-footer {
    background: #163153;
    color: #cbd5e1;
    padding: 70px 0 30px;
    position: relative;
}

/* Brand */
.footer-brand .brand-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7033, #da3f0b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 12px;
}

/* Text */
.footer-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Titles */
.footer-title {
    color: #ff8c42;
    margin-bottom: 18px;
}

/* Links */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    position: relative;
}

.footer-links a:hover {
    color: #ff8c42;
}

/* Contact icons */
.footer-contact i {
    color: #ff8c42;
    margin-right: 10px;
}

/* Social */
.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: transform .3s ease, background .3s ease;
}

.footer-social a:hover {
    background: #ff8c42;
    transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: #cbd5e1;
    margin-left: 16px;
    font-size: 14px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ff8c42;
}

/* ================= SMALL FLOAT ANIMATION ================= */
.footer-brand .brand-icon {
    animation: footerFloat 4s ease-in-out infinite;
}

@keyframes footerFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .footer-bottom a {
        display: inline-block;
        margin: 8px;
    }
}










/* ================= ABOUT STATS ================= */
.about-stats {
    background: linear-gradient(135deg,
            #ff7033,
            #da3f0b,
            #ff7033);
    padding: 45px 0;
    color: #fff;
    background-size: 200% 200%;
    animation: statsGradient 10s ease infinite;
}

.about-stats h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 8px;
}

.about-stats p {
    font-size: 15px;
    opacity: 0.9;
}

/* Gradient animation */
@keyframes statsGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .about-stats h2 {
        font-size: 38px;
    }
}






/* ================= ABOUT STORY ================= */
.about-story {
    background: #fffaf6;
}

/* Badge */
.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #ffe8dc;
    color: #ff7033;
    border-radius: 20px;
    font-size: 13px;
}

/* Right grid */
.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Images */
.story-img img {
    width: 100%;
    border-radius: 18px;
    animation: floatSoft 6s ease-in-out infinite;
}

/* Cards */
.story-card {
    border-radius: 18px;
    padding: 26px;
    color: #111;
    animation: floatSoft 6s ease-in-out infinite;
}

.story-card i {
    font-size: 26px;
    margin-bottom: 12px;
}

/* Yellow card */
.story-card.yellow {
    background: #fbbf24;
    animation-delay: 1s;
}

/* Orange card */
.story-card.orange {
    background: #ff7033;
    color: #fff;
    animation-delay: 2s;
}

/* Animation */
@keyframes floatSoft {
    0% {
        transform: translateY(0);
    }

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

    100% {
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {

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

    .story-card,
    .story-img img {
        animation: none;
        /* cleaner on mobile */
    }
}



/* ================= MISSION & VISION ================= */
.about-mv {
    background: #f4f1eb;
}

/* Card */
.mv-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    animation: fadeUpSoft 1s ease forwards;
}

/* Icon wrapper */
.mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Mission icon */
.mv-icon.mission {
    background: #ffe8dc;
    color: #ff7033;
}

/* Vision icon */
.mv-icon.vision {
    background: #fff2cc;
    color: #fbbf24;
}

.mv-card p {
    margin-top: 12px;
    color: #4a5568;
}

/* Animation */
@keyframes fadeUpSoft {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .mv-card {
        padding: 28px;
    }
}

/* ================= CORE VALUES ================= */
.about-values {
    background: #fffaf6;
}

/* Card */
.value-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 26px;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    animation: fadeUpSoft 0.9s ease forwards;
}

/* Icon */
.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #ffe8dc;
    color: #ff7033;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.35s ease;
}

/* Text */
.value-card p {
    font-size: 14.5px;
    color: #4a5568;
    margin-top: 10px;
}

/* ================= HOVER EFFECT ================= */
.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.12);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #ff7033, #da3f0b);
    color: #fff;
    transform: scale(1.1) rotate(6deg);
}

/* ================= ENTRY ANIMATION ================= */
@keyframes fadeUpSoft {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .value-card {
        padding: 28px 22px;
    }
}





/* ================= PACKAGES SECTION ================= */
.packages-section {
    padding: 80px 0;
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* Filter */
.package-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.package-filter span {
    padding: 6px 16px;
    border-radius: 20px;
    background: #f1f1f1;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
}

.package-filter span.active,
.package-filter span:hover {
    background: #ff7033;
    color: #fff;
}

.package-count {
    margin-bottom: 30px;
    font-size: 14px;
    color: #6b7280;
}

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

/* Card */
.package-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    transition: .35s ease;
    animation: fadeUp .8s ease both;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .14);
}

/* Image */
.package-img {
    position: relative;
}

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

/* Tag */
.package-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ff7033;
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Rating */
.package-rating {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: #fff;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 12px;
}

/* Content */
.package-content {
    padding: 20px;
}

.package-content h4 {
    margin-bottom: 8px;
}

.package-content p {
    font-size: 14px;
    color: #4b5563;
}

/* Meta */
.package-meta {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 14px 0;
    font-size: 13px;
    color: #6b7280;
}

/* Footer */
.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.price del {
    font-size: 13px;
    color: #9ca3af;
}

.price strong {
    display: block;
    color: #ff7033;
    font-size: 18px;
}

.price small {
    font-size: 12px;
    color: #6b7280;
}

/* Button */
.btn-view {
    background: #ff7033;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: .3s;
}

.btn-view:hover {
    background: #da3f0b;
    color: #fff;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

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

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

    .package-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}






/* ============ DESTINATIONS SECTION ============ */
.destinations-section {
    padding: 80px 0;
    background: #fafafa;
}

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

/* Card */
.destination-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 320px;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    transition: .4s ease;
    animation: fadeUp .8s ease both;
}

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

/* Overlay */
.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 35, 60, .85),
            rgba(15, 35, 60, .35),
            rgba(15, 35, 60, .15));
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    transition: .4s ease;
}

/* Count */
.package-count {
    font-size: 13px;
    color: #ffb703;
    margin-bottom: auto;
}

/* Title */
.destination-overlay h4 {
    color: #fff;
    margin-bottom: 4px;
}

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

/* Explore link (HIDDEN INITIALLY) */
.explore-link {
    margin-top: 10px;
    font-size: 14px;
    color: #ff7033;
    opacity: 0;
    transform: translateY(10px);
    transition: .35s ease;
}

/* Hover Effects */
.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
}

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

/* Responsive */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

    .destination-card {
        height: 280px;
    }
}



/* ===============================
   PACKAGE DETAILS - BREADCRUMB
================================ */

.st-pkg-breadcrumb {
    background: #f6f2ea;
    padding: 14px 0;
    font-size: 14px;
}

.st-pkg-breadcrumb .breadcrumb {
    background: transparent;
}

.st-pkg-breadcrumb .breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.st-pkg-breadcrumb .breadcrumb-item a:hover {
    color: #ff7033;
}

.st-pkg-breadcrumb .breadcrumb-item.active {
    color: #1c2b4a;
    font-weight: 500;
}

/* Mobile spacing */
@media (max-width: 576px) {
    .st-pkg-breadcrumb {
        padding: 10px 0;
    }
}


/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 80px 0;
    background: #fafafa;
}

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

/* Card */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    transition: .4s ease;
    animation: fadeUp .8s ease both;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
}

/* Icon */
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 112, 51, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7033;
    font-size: 22px;
    margin-bottom: 18px;
}

/* Text */
.service-card h4 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 16px;
}

/* List */
.service-card ul {
    padding-left: 0;
    list-style: none;
}

.service-card ul li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.service-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff7033;
}

/* CTA */
.services-cta {
    margin-top: 70px;
    background: #f5f1eb;
    border-radius: 26px;
    padding: 50px 20px;
    text-align: center;
}

.services-cta h3 {
    margin-bottom: 10px;
}

.services-cta p {
    max-width: 600px;
    margin: 0 auto 20px;
    color: #4b5563;
}

.btn-primary {
    background: #ff7033;
    color: #fff;
    padding: 10px 26px;
    border-radius: 24px;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}

.btn-primary:hover {
    background: #da3f0b;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .services-cta {
        padding: 40px 16px;
    }
}




/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 80px 0;
    background: #fafafa;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: zoom-in;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

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

/* Hover zoom */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 35, 60, .85),
            rgba(15, 35, 60, .35),
            rgba(15, 35, 60, .15));
    opacity: 0;
    transition: .4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}

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

/* Text */
.gallery-destination {
    font-size: 13px;
    color: #ff7033;
    margin-bottom: 4px;
}

.gallery-overlay h5 {
    color: #fff;
}

/* Animation */
.gallery-item {
    animation: fadeUp .8s ease both;
}

/* Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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







/* ================= CONTACT PAGE ================= */

.st-contact-section {
    padding: 70px 0;
    background: #faf7f2;
}

/* LEFT INFO */
.st-contact-info {
    background: #faf7f2;
    padding: 10px;
}

.st-contact-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.st-contact-title span {
    color: #ff7033;
}

.st-contact-sub {
    color: #555;
    margin-bottom: 25px;
}

.st-info-card {
    display: flex;
    gap: 14px;
    background: #f3efe6;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 14px;
    animation: fadeUp 0.8s ease both;
}

.st-info-card i {
    font-size: 20px;
    color: #ff7033;
    margin-top: 4px;
}

.st-info-card h6 {
    margin-bottom: 4px;
    font-weight: 600;
}

/* FORM */
.st-contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.st-contact-form-box h4 {
    margin-bottom: 20px;
}

.st-field {
    margin-bottom: 14px;
}

.st-field label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.st-field label span {
    color: #ff7033;
}

.st-field input,
.st-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.st-field input:focus,
.st-field textarea:focus {
    outline: none;
    border-color: #ff7033;
}

.st-submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    border-radius: 12px;
    border: none;
    color: #fff;
    background: linear-gradient(90deg, #ff7033, #da3f0b);
    font-weight: 600;
    transition: all .3s ease;
}

.st-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 112, 51, .35);
}

/* MAP */
.st-map-card {
    margin-top: 30px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.st-map-card iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .st-contact-title {
        font-size: 32px;
    }
}












/* SECTION */
.st-book-section {
    padding: 70px 0;
    background: #faf7f2;
}

/* FORM */
.st-book-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    animation: fadeUp .8s ease both;
}

.st-book-form-box h4 {
    margin-bottom: 20px;
}

.st-field {
    margin-bottom: 14px;
}

.st-field label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.st-field label span {
    color: #ff7033;
}

.st-field input,
.st-field select,
.st-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.st-field input:focus,
.st-field select:focus,
.st-field textarea:focus {
    outline: none;
    border-color: #ff7033;
}

.st-book-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(90deg, #ff7033, #da3f0b);
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.st-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 112, 51, .35);
}

/* SUMMARY */
.st-book-summary {
    background: #1c2b4a;
    color: #fff;
    padding: 30px;
    border-radius: 18px;
}

.st-book-summary h5 {
    margin-bottom: 20px;
}

.st-book-summary ul {
    list-style: none;
    padding: 0;
}

.st-book-summary li {
    margin-bottom: 12px;
}

.st-book-summary li i {
    color: #ff7033;
    margin-right: 8px;
}

.st-book-note {
    margin-top: 20px;
    background: rgba(255, 255, 255, .1);
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
}

.st-whatsapp-btn {
    display: block;
    margin-top: 20px;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.st-whatsapp-btn:hover {
    background: #1ebe5d;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* RESPONSIVE */
@media(max-width:768px) {
    .st-book-hero h1 {
        font-size: 34px;
    }
}












































.pkg-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* Back Button */
.pkg-back {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    background: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    color: #111;
}

/* Slider */
.pkg-slider {
    position: relative;
    width: 100%;
    height: 520px;
}

.pkg-slides {
    height: 100%;
    position: relative;
}

.pkg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.pkg-slide.active {
    opacity: 1;
    z-index: 1;
}

/* IMPORTANT FIX */
.pkg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔥 NO BLACK BARS */
    object-position: center;
    display: block;
}

/* Overlay Content */
.pkg-content {
    position: absolute;
    bottom: 110px;
    left: 50px;
    z-index: 3;
    color: #fff;
}

.pkg-tag {
    background: #ff7a30;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.pkg-content h1 {
    font-size: 42px;
    margin: 0;
}

/* Thumbnails */
.pkg-thumbs {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.pkg-thumbs img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    opacity: 0.6;
    cursor: pointer;
    border: 2px solid transparent;
}

.pkg-thumbs img.active {
    opacity: 1;
    border-color: #ff7a30;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {

    .pkg-slider {
        height: 300px;
    }

    .pkg-content {
        left: 20px;
        bottom: 90px;
    }

    .pkg-content h1 {
        font-size: 24px;
    }

    .pkg-thumbs img {
        width: 46px;
        height: 46px;
    }
}

.pkg-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: all .3s ease;
}

.pkg-nav:hover {
    background: #ff7a30;
}

.pkg-prev {
    left: 20px;
}

.pkg-next {
    right: 20px;
}

/* Mobile tweak */
@media (max-width: 768px) {
    .pkg-nav {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
}












/* ================================
   PACKAGE DETAILS LAYOUT
================================ */

.package-details-layout {
    padding: 60px 0;
    background: #fffaf4;
}

.package-details-layout .pd-left {
    min-height: 1200px;
    /* testing ke liye */
}

.package-details-layout .pd-right {
    position: sticky;
    top: 100px;
    /* header ke niche */
}


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

@media (max-width: 991px) {
    .package-details-layout .pd-right {
        position: static;
        margin-top: 30px;
    }
}


/* ===== Package Info Stats ===== */
.pkg-info-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.pkg-info-card {
    background: #f6f3ec;
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.pkg-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Icon */
.pkg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 10px;
    color: #ff7a33;
    font-size: 20px;
}

.pkg-icon.star {
    color: #fbbf24;
}

/* Text */
.pkg-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 6px;
}

.pkg-value {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

/* Responsive */
@media (max-width: 768px) {
    .pkg-info-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Package Overview ===== */
.pkg-overview {
    margin-bottom: 36px;
}

.pkg-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.pkg-overview-text {
    font-size: 17px;
    line-height: 1.9;
    color: #667085;
    max-width: 100%;
}

/* ===== Tour Highlights ===== */
.pkg-highlights {
    margin-bottom: 42px;
}

.pkg-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 22px;
}

.pkg-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8f5ee;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
}

.pkg-highlight-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ff7a3d;
    color: #ff7a3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .pkg-highlights-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== REMOVE BOOTSTRAP DEFAULT ARROW ===== */
.pkg-accordion .accordion-button::after {
    display: none !important;
}

/* ACCORDION BUTTON */
.pkg-acc-btn {
    background: #fbfaf7 !important;
    border-radius: 16px !important;
    padding: 18px 20px;
    box-shadow: none !important;
}

/* DAY CIRCLE */
.pkg-day {
    width: 38px;
    height: 38px;
    background: #ff7a3d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-weight: 600;
}

/* CUSTOM ARROW (ONLY ONE NOW) */
.pkg-arrow {
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #475569;
    border-bottom: 2px solid #475569;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* ROTATE WHEN OPEN */
.pkg-acc-btn:not(.collapsed) .pkg-arrow {
    transform: rotate(-135deg);
}

/* CAPSULES */
.pkg-capsules {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pkg-capsules span {
    background: #fff3e8;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
}


/* SECTION */
.pkg-inc-exc {
    margin-top: 40px;
}

/* COMMON CARD */
.pkg-card {
    border-radius: 20px;
    padding: 28px;
    height: 100%;
}

/* INCLUSIONS */
.pkg-inclusions {
    background: #eaf6ea;
}

/* EXCLUSIONS */
.pkg-exclusions {
    background: #fdeaea;
}

/* TITLE */
.pkg-card-title {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

/* LIST */
.pkg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    padding: 10px 0;
    color: #1f2937;
}

/* ICONS */
.icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.icon.success {
    background: #e1f5e4;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.icon.danger {
    background: #fde2e2;
    color: #dc2626;
    border: 2px solid #dc2626;
}





.pkg-extra-details {
    margin-top: 40px;
}

.pkg-info-card {
    height: 100%;
    background: #fff;
    border: 1.5px solid #f1e6dc;
    border-radius: 20px;
    padding: 26px;
    transition: all 0.3s ease;
}

.pkg-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.pkg-icon {
    font-size: 32px;
    color: #ff7a33;
    margin-bottom: 14px;
}

.pkg-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.pkg-info-card p {
    font-size: 15.5px;
    line-height: 1.6;
    color: #6b7280;
}







.pkg-sidebar {
    position: sticky;
    top: 100px;
}

.pkg-price-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pkg-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pkg-price .current {
    font-size: 40px;
    font-weight: 800;
    color: #ff7a33;
}

.pkg-price .old {
    font-size: 18px;
    color: #6b7280;
    text-decoration: line-through;
}

.per-person {
    margin-top: 6px;
    font-size: 16px;
    color: #6b7280;
}

.pkg-save {
    margin: 18px 0 26px;
    background: #eaf7ed;
    color: #1f9d45;
    padding: 12px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.pkg-save .check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-call,
.btn-whatsapp {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.25s ease;
}

.btn-call {
    background: #183153;
    color: #fff;
}

.btn-call:hover {
    background: #0f223b;
}

.btn-whatsapp {
    background: #22c55e;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #16a34a;
}




.pkg-book-card {
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    margin-top: 26px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pkg-book-title {
    font-size: 26px;
    font-weight: 700;
    color: #183153;
    margin-bottom: 22px;
}

.pkg-book-form .pkg-field {
    margin-bottom: 16px;
}

.pkg-book-form input,
.pkg-book-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1.5px solid #e6dfd5;
    background: #faf9f6;
    font-size: 16px;
    outline: none;
    transition: all 0.25s ease;
}

.pkg-book-form input:focus,
.pkg-book-form textarea:focus {
    border-color: #ff7a33;
    background: #fff;
}

.date-field input {
    padding-right: 18px;
}

.pkg-submit-btn {
    width: 100%;
    padding: 18px;
    margin-top: 8px;
    border-radius: 999px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #ff7a33, #ff9a5f);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pkg-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 51, 0.35);
}