:root {
    --cream: #faf6f0;
    --orange: #e85d04;
    --dark-orange: #c44e02;
    --brown: #1a0a00;
    --text-dark: #1a0a00;
    --text-muted: #6b5a4e;
    --white: #ffffff;
    --brand-color: #b8431a;
    --title-font: "Playfair Display", serif;
    --title-font2: "Cormorant Garamond", serif;
    --section-bg: #fff8f5;
}
.section-padding {
    padding-top: 30px;
}
.hero-stats span {
    color: #b8431a;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px; /* লোগো এবং টেক্সটের মাঝের গ্যাপ */
    text-decoration: none;
    font-weight: bold;
    color: inherit;
}

.logo-img {
    height: 40px; /* আপনার নেভবারের হাইট অনুযায়ী অ্যাডজাস্ট করুন */
    width: auto; /* লোগোর রেশিও ঠিক রাখার জন্য */
    object-fit: contain;
}

.offer-section {
    padding: 60px 0;
}

.section-desc {
    font-size: 15px;
    color: #6b6560;
    max-width: 400px;
    margin-bottom: 32px;
}

.cat-card {
    position: relative;
    background: #fff;
    border: 0.5px solid #e5e0da;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.cat-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* BG Image — hidden by default, shows on hover */
.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition:
        opacity 0.45s ease,
        transform 0.5s ease;
    transform: scale(1.06);
}

.cat-card:hover .card-bg {
    opacity: 1;
    transform: scale(1);
}

/* Dark overlay — only on hover */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 55%,
        rgba(0, 0, 0, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 1;
}

.cat-card:hover .card-overlay {
    opacity: 1;
}

/* Content sits above bg */
.card-body-inner {
    position: relative;
    z-index: 2;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cat-card:hover .card-icon {
    transform: scale(1.05);
    filter: brightness(0) invert(1);
}

/* Icon colors flip on hover */
.cat-card:hover .icon-bg {
    fill: rgba(255, 255, 255, 0.18);
}

.cat-card:hover .icon-stroke {
    stroke: #fff;
}

.cat-card:hover .icon-fill {
    fill: #fff;
}

.cat-card .card-title {
    color: var(--brand-color);
    font-family: var(--title-font);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 100% */
}

.cat-card:hover .card-title {
    color: #f8ece8;
}

.card-text {
    padding-top: 10px;
    font-size: 12px;
    color: #d98262;
    line-height: 1.8;
    flex: 1;
    transition: color 0.3s ease;
}

.cat-card:hover .card-text {
    color: rgba(255, 255, 255, 0.85);
}
.cat_card_content {
    padding-top: 115px;
    padding-bottom: 12px;
}
.more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-family: "Jost", sans-serif;
    letter-spacing: 0.04em;
    color: #3a3530;
    border: 0.5px solid #c5bfb8;
    border-radius: 20px;
    padding: 5px 14px;
    text-decoration: none;
    background: none;
    transition: all 0.25s ease;
    width: fit-content;
}

.more-btn svg {
    width: 10px;
    height: 10px;
    transition: transform 0.2s ease;
}

.more-btn:hover svg {
    transform: translateX(3px);
}

.cat-card:hover .more-btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.cat-card:hover .more-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* womens travell */
.journey-section {
    padding: 60px 0;
}

/* Header Row */
.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 24px;
    flex-wrap: wrap;
}

.section-title {
    font-family: var(--title-font2);
    font-size: 32px;
    font-weight: 600;
    color: #993c1d;
    margin: 0 0 8px;
    font-style: italic;
}

.section-desc {
    font-size: 13px;
    color: #7a746e;
    max-width: 380px;
    line-height: 1.7;
    margin: 0;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-tab {
    font-size: 12px;
    font-family: "Jost", sans-serif;
    padding: 5px 14px;
    border-radius: 20px;
    border: 0.5px solid #d5cfc8;
    background: none;
    color: #6b6560;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-tab:hover {
    border-color: #993c1d;
    color: #993c1d;
}

.filter-tab.active {
    background: #993c1d;
    border-color: #993c1d;
    color: #fff;
}

/* Swiper */
.swiper {
    overflow: visible;
    padding-bottom: 15px !important;
}

.swiper-slide {
    height: auto;
}

/* Journey Card */
.journey-card {
    background: #fff;
    border: 0.5px solid #e5e0da;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.journey-card:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Card Image */
.card-img-wrap {
    position: relative;
    height: auto;
    overflow: hidden;
}

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

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

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 10px;
    font-family: "Jost", sans-serif;
    color: #993c1d;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* Card Body */
.card-body-inner {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-weight: 600;
    color: #993c1d;
    margin: 0 0 6px;
    line-height: 1.3;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #9a9490;
    margin-bottom: 10px;
}

.card-location svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}

.card-price {
    font-size: 13px;
    color: #3a3530;
    margin-bottom: 12px;
    flex: 1;
}

.card-price strong {
    font-size: 16px;
    font-weight: 500;
    color: #993c1d;
}

.card-price span {
    font-size: 11px;
    color: #9a9490;
}

.book-btn {
    display: block;
    text-align: center;
    font-size: 12px;
    font-family: "Jost", sans-serif;
    color: #993c1d;
    border: 0.5px solid #c5bfb8;
    border-radius: 4px;
    padding: 7px 14px;
    text-decoration: none;
    background: none;
    transition: all 0.2s ease;
    width: 100%;
}

.book-btn:hover {
    background: #993c1d;
    border-color: #993c1d;
    color: #fff;
}

/* Swiper Navigation */
.swiper-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.swiper-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0.5px solid #c5bfb8;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.swiper-btn:hover {
    border-color: #993c1d;
    color: #993c1d;
}

.swiper-btn svg {
    width: 14px;
    height: 14px;
}

.swiper-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Custom Pagination */
.swiper-pagination {
    position: static !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    background: #d5cfc8 !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
}

.swiper-pagination-bullet-active {
    background: #993c1d !important;
    width: 18px !important;
    border-radius: 4px !important;
}
.section_background {
    background-color: var(--section-bg);
}
/* womens journey */

.skill-section {
    padding: 60px 0;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: #993c1d;
    font-style: italic;
    margin: 0 0 8px;
}

.section-desc {
    font-size: 13px;
    color: #7a746e;
    max-width: 380px;
    line-height: 1.7;
    margin: 0 0 28px;
}

/* ─── Left Panel ─── */
.skill-list-panel {
    background: #1a5c35;
    border-radius: 10px;
    padding: 12px;
    height: 100%;
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 4px;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-item.active {
    background: #fff;
}

.skill-item:not(.active):hover {
    background: rgba(255, 255, 255, 0.08);
}

.skill-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-item-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.skill-item-name {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

.skill-item.active .skill-item-name {
    color: #1a5c35;
    font-weight: 500;
}

.skill-item.active .skill-item-icon path,
.skill-item.active .skill-item-icon circle,
.skill-item.active .skill-item-icon rect {
    stroke: #1a5c35;
}

.skill-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.skill-item.active .skill-arrow,
.skill-item:hover .skill-arrow {
    opacity: 1;
}

.skill-item.active .skill-arrow {
    background: #f97316;
}

.skill-arrow svg {
    width: 12px;
    height: 12px;
}

/* ─── Right Panel ─── */
/* ─── Right Panel ─── */
.skill-detail-panel {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.skill-detail {
    display: none;
    height: 100%;
    position: relative;
    min-height: 480px;
}

.skill-detail.active {
    display: block;
}

/* BG Image full height */
.detail-img-wrap {
    position: absolute;
    inset: 0;
    height: 100%;
}

.detail-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark overlay */
.detail-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
}

/* Satisfied badge */
.satisfied-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: 5px 12px 5px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #3a3530;
}

/* Content card overlay — bottom */
.detail-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    padding: 20px 22px;
}

/* Satisfied people badge */
.satisfied-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: 5px 12px 5px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #3a3530;
}

.satisfied-avatars {
    display: flex;
}

.satisfied-avatars span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    margin-left: -6px;
    display: block;
    overflow: hidden;
}

.satisfied-avatars span:first-child {
    margin-left: 0;
}

.satisfied-avatars span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Detail Body */
.detail-body {
    padding: 20px 22px;
    margin: 12px 12px;
    flex: 1;
}

.detail-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a5c35;
    margin: 0 0 6px;
}

.detail-desc {
    font-size: 12.5px;
    color: #35312e;
    line-height: 1.7;
    margin: 0 0 18px;
}

.detail-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.meta-group label {
    font-size: 11px;
    color: #35312e;
    display: block;
    margin-bottom: 6px;
}

.meta-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.meta-tag {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 0.5px solid #d5cfc8;
    color: var(--brand-color);
}

.level-tag {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    color: #1a5c35;
    background: #e8f5ee;
    display: flex;
    align-items: center;
    gap: 4px;
}

.level-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1a5c35;
    display: inline-block;
}

.detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 0.5px solid #f0ebe5;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    color: #993c1d;
}

.detail-price span {
    font-size: 13px;
    font-weight: 400;
    color: #9a9490;
    font-family: "Jost", sans-serif;
}

.register-btn {
    font-size: 12px;
    font-family: "Jost", sans-serif;
    color: #993c1d;
    border: 0.5px solid #c5bfb8;
    border-radius: 4px;
    padding: 8px 24px;
    background: none;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.register-btn:hover {
    background: #993c1d;
    border-color: #993c1d;
    color: #fff;
}

/* Hide inactive detail panels */
.skill-detail {
    display: none;
}

.skill-detail.active {
    display: flex;
    flex-direction: column;
    height: 100%;
}
/* ─── Social Section ─── */
.social-section {
    background: #1a5c35;
    padding: 60px 0;
}

.social-section .section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    font-style: italic;
    margin: 0 0 10px;
}

.social-section .section-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    line-height: 1.7;
    margin: 0 0 32px;
}

.social-section .action-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-section .action-item:first-child {
    border-top: 0.5px solid rgba(255, 255, 255, 0.1);
}

.social-section .action-item:hover {
    padding-left: 6px;
}

.social-section .action-icon-wrap {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.social-section .action-item:hover .action-icon-wrap {
    background: rgba(255, 255, 255, 0.18);
}

.social-section .action-icon-wrap svg {
    width: 18px;
    height: 18px;
}

.social-section .action-content h4 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 4px;
}

.social-section .action-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

.social-section .volunteer-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
}

.social-section .volunteer-bg {
    position: absolute;
    inset: 0;
}

.social-section .volunteer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-section .volunteer-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.social-section .volunteer-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 48px);
    background: #fff;
    border-radius: 10px;
    padding: 26px 24px 20px;
    z-index: 2;
}

.social-section .volunteer-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    color: #993c1d;
    margin: 0 0 10px;
}

.social-section .volunteer-card p {
    font-size: 12.5px;
    color: #7a746e;
    line-height: 1.7;
    margin: 0 0 16px;
}

.social-section .volunteer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.social-section .volunteer-list li {
    font-size: 12.5px;
    color: #3a3530;
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.social-section .volunteer-list li::before {
    content: "·";
    color: #993c1d;
    font-size: 18px;
    line-height: 1.1;
    flex-shrink: 0;
}

.social-section .apply-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #993c1d;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 13px;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
    cursor: pointer;
}

.social-section .apply-btn:hover {
    background: #7a2e15;
    color: #fff;
}

.social-section .support-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(20, 20, 20, 0.82);
    backdrop-filter: blur(4px);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.social-section .support-bar-text h5 {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 2px;
}

.social-section .support-bar-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.social-section .donation-btn {
    font-size: 11px;
    font-family: "Jost", sans-serif;
    color: #fff;
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    padding: 7px 16px;
    background: none;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-section .donation-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}
.dorm-section {
    background: #1a0f0a;
    background: radial-gradient(ellipse at 30% 50%, #3d1f0d 0%, #1a0f0a 60%);
    padding: 60px 0;
    min-height: 100vh;
}

.dorm-section .section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    font-style: italic;
    margin: 0 0 10px;
}

.dorm-section .section-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 420px;
    line-height: 1.7;
    margin: 0 0 32px;
}

/* ─── Feature Cards ─── */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    transition: background 0.2s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
}

.feature-card h4 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 5px;
}

.feature-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.6;
}

/* ─── Pricing Bar ─── */
.pricing-bar {
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    margin-top: 14px;
}

.pricing-item {
    flex: 1;
    padding: 14px 18px;
    border-right: 0.5px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
    cursor: pointer;
}

.pricing-item:last-child {
    border-right: none;
}

.pricing-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.pricing-amount {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 600;
    color: #c8783a;
    margin: 0 0 3px;
}

.pricing-label {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.45);
}

/* ─── Booking Form ─── */
.booking-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
}

.booking-panel h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 24px;
}

.form-label-custom {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    display: block;
}

.form-control-custom,
.form-select-custom {
    background: rgba(255, 255, 255, 0.06);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-family: "Jost", sans-serif;
    padding: 10px 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Date input icon */
.input-icon-wrap {
    position: relative;
}

.input-icon-wrap .form-control-custom {
    padding-right: 38px;
}

.input-icon-wrap .icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.input-icon-wrap .icon svg {
    width: 15px;
    height: 15px;
}

/* Select arrow */
.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.form-select-custom option {
    background: #2a1a10;
    color: #fff;
}

/* Request Button */
.request-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #fff;
    color: #993c1d;
    border: 0.5px solid #993c1d;
    border-radius: 6px;
    padding: 12px;
    font-size: 13px;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    margin-top: 6px;
}

.request-btn:hover {
    background: #993c1d;
    color: #fff;
}

.form-mb {
    margin-bottom: 16px;
}
.testimonial-section {
    padding: 60px 0;
    background: #faf9f7;
}

.testimonial-section .section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: #993c1d;
    font-style: italic;
    margin: 0 0 10px;
}

.testimonial-section .section-desc {
    font-size: 13px;
    color: #7a746e;
    max-width: 420px;
    line-height: 1.7;
    margin: 0 0 32px;
}

/* ─── Swiper ─── */
.testimonial-section .swiper {
    overflow: visible;
    padding-bottom: 0 !important;
}

/* ─── Card ─── */
.testimonial-section .testi-card {
    background: #fff;
    border: 0.5px solid #e5e0da;
    border-radius: 8px;
    padding: 24px 22px 20px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Stars */
.testimonial-section .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-section .stars svg {
    width: 16px;
    height: 16px;
}

/* Quote icon */
.testimonial-section .quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.08;
}

.testimonial-section .quote-icon svg {
    width: 48px;
    height: 48px;
}

/* Review text */
.testimonial-section .testi-text {
    font-size: 13px;
    color: #5a5450;
    line-height: 1.75;
    flex: 1;
    margin: 0 0 20px;
}

/* Divider */
.testimonial-section .testi-divider {
    width: 100%;
    height: 0.5px;
    background: #e5e0da;
    margin-bottom: 14px;
}

/* Author */
.testimonial-section .testi-author-name {
    font-size: 13px;
    font-weight: 500;
    color: #3a3530;
    margin: 0 0 3px;
}

.testimonial-section .testi-author-meta {
    font-size: 11px;
    color: #9a9490;
}

/* ─── Navigation ─── */
.testimonial-section .testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-section .swiper-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0.5px solid #c5bfb8;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.testimonial-section .swiper-btn:hover {
    border-color: #993c1d;
    color: #993c1d;
}

.testimonial-section .swiper-btn svg {
    width: 14px;
    height: 14px;
}

.testimonial-section .swiper-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.testimonial-section .testi-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-section .testi-pagination .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    background: #d5cfc8 !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
}

.testimonial-section .testi-pagination .swiper-pagination-bullet-active {
    background: #993c1d !important;
    width: 18px !important;
    border-radius: 4px !important;
}

/* ─── Awards Section ─── */
.awards-section {
    padding: 40px 0 60px;
    background: #faf9f7;
}

.awards-section .award-card {
    background: #1e100a;
    border-radius: 8px;
    padding: 18px 18px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 110px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.awards-section .award-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.awards-section .award-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.awards-section .award-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    flex: 1;
}

.awards-section .award-year {
    font-size: 12px;
    color: #c8783a;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.awards-section .award-org {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.5;
}
/* ─── Shop Section ─── */
.shop-section {
    padding: 60px 0;
    background: #faf9f7;
}

.shop-section .shop-intro {
    padding-right: 16px;
    position: sticky;
    top: 80px;
}

.shop-section .shop-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    color: #993c1d;
    font-style: italic;
    margin: 0 0 14px;
    line-height: 1.3;
}

.shop-section .shop-desc {
    font-size: 12.5px;
    color: #7a746e;
    line-height: 1.75;
    margin: 0 0 12px;
}

/* Product Card */
.shop-section .product-card {
    background: #fff;
    border: 0.5px solid #e5e0da;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.shop-section .product-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.shop-section .product-img-wrap {
    height: 160px;
    overflow: hidden;
}

.shop-section .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.shop-section .product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.shop-section .product-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shop-section .product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 6px;
}

.shop-section .product-name {
    font-size: 13px;
    font-weight: 500;
    color: #3a3530;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.shop-section .product-badge {
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 500;
}

.shop-section .product-badge.new {
    background: #e8f5ee;
    color: #1a5c35;
}

.shop-section .product-badge.limited {
    background: #fef3e8;
    color: #c8783a;
}

.shop-section .product-desc {
    font-size: 11px;
    color: #9a9490;
    line-height: 1.6;
    margin: 0 0 12px;
    flex: 1;
}

.shop-section .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.shop-section .product-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-weight: 600;
    color: #993c1d;
}

.shop-section .buy-btn {
    font-size: 11px;
    font-family: "Jost", sans-serif;
    color: #993c1d;
    border: 0.5px solid #c5bfb8;
    border-radius: 4px;
    padding: 5px 12px;
    text-decoration: none;
    background: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.shop-section .buy-btn:hover {
    background: #993c1d;
    border-color: #993c1d;
    color: #fff;
}

/* ─── About Section ─── */
.about-section {
    padding: 70px 0;
}

.about-section .about-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #993c1d;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.about-section .about-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 600;
    color: #993c1d;
    line-height: 1.25;
    margin: 0 0 20px;
    max-width: 520px;
}

.about-section .about-desc {
    font-size: 13px;
    color: #6b6560;
    line-height: 1.8;
    margin: 0 0 14px;
    max-width: 480px;
}

/* Satisfied */
.about-section .about-satisfied {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.about-section .satisfied-avatars {
    display: flex;
}

.about-section .satisfied-avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    overflow: hidden;
    display: block;
}

.about-section .satisfied-avatars span:first-child {
    margin-left: 0;
}

.about-section .satisfied-avatars span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section .satisfied-text {
    font-size: 12px;
    color: #6b6560;
}

/* Button */
.about-section .about-btn {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-family: "Jost", sans-serif;
    border: 0.5px solid #993c1d;
    border-radius: 4px;
    padding: 10px 24px;
    text-decoration: none;
    background: none;
    transition: all 0.2s ease;
}

.about-section .about-btn:hover {
    background: #993c1d;
    color: #fff;
}

/* Image */
.about-section .about-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    height: 420px;
}

.about-section .about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-section .about-img-wrap:hover img {
    transform: scale(1.03);
}
/* ─── Team Section ─── */
.team-section {
    padding: 60px 0;
    background: #faf9f7;
}

.team-section .team-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
    color: #993c1d;
    font-style: italic;
    margin: 0 0 10px;
}

.team-section .team-desc {
    font-size: 13px;
    color: #7a746e;
    max-width: 420px;
    line-height: 1.7;
    margin: 0 0 28px;
}

/* Swiper */
.team-section .swiper {
    overflow: visible;
    padding-bottom: 0 !important;
}

/* Card */
.team-section .team-card {
    background: #fff;
    border: 0.5px solid #e5e0da;
    border-radius: 8px;
    overflow: hidden;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.team-section .team-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.team-section .team-img-wrap {
    height: 220px;
    overflow: hidden;
}

.team-section .team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

.team-section .team-card:hover .team-img-wrap img {
    transform: scale(1.04);
}

.team-section .team-body {
    padding: 14px 16px 16px;
    border-top: 0.5px solid #f0ebe5;
}

.team-section .team-name {
    font-size: 14px;
    font-weight: 500;
    color: #3a3530;
    margin: 0 0 4px;
}

.team-section .team-role {
    font-size: 11.5px;
    color: #7a746e;
    margin: 0 0 6px;
    line-height: 1.4;
}

.team-section .team-dept {
    font-size: 10px;
    color: #993c1d;
    background: #faece7;
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* Navigation */
.team-section .team-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.team-section .swiper-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0.5px solid #c5bfb8;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.team-section .swiper-btn:hover {
    border-color: #993c1d;
    color: #993c1d;
}

.team-section .swiper-btn svg {
    width: 14px;
    height: 14px;
}

.team-section .swiper-btn.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.team-section .team-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.team-section .team-pagination .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    background: #d5cfc8 !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
}

.team-section .team-pagination .swiper-pagination-bullet-active {
    background: #993c1d !important;
    width: 18px !important;
    border-radius: 4px !important;
}
.custom_btn_primary_color {
    color: #fff !important;
    background-color: #b8431a !important;
    border: none !important;
}
.custom_btn_secondary_color {
    color: var(--brand-color) !important;
    border-color: var(--brand-color) !important;
}
.custom_btn_secondary_color:hover {
    background-color: var(--brand-color) !important;
    color: #ffffff !important;
    border-color: var(--brand-color) !important;
}
/* Hero Slider */
.tour-hero {
    position: relative;
    height: 480px; /* হাইট একটু বাড়ানো হয়েছে */
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    box-shadow: var(--card-shadow);
}

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

/* ইমেজ স্লাইড হওয়ার সময় হালকা জুম ইফেক্ট */
.tour-hero:hover img {
    transform: scale(1.02);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
}

.slider-btn.prev {
    left: 16px;
}

.slider-btn.next {
    right: 16px;
}

.hero-badges {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.hero-badge-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-badge-item i {
    color: var(--orange);
}

/* Sidebar Card */
.sidebar-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 20px;
    position: sticky;
    top: 80px;
}

.tour-title-sidebar {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.tour-location-sidebar {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.tour-location-sidebar i {
    color: var(--orange);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f0ebe5;
    font-size: 13px;
}

.info-row:last-of-type {
    border-bottom: none;
}

.info-row i {
    color: var(--orange);
    width: 16px;
}

.info-label {
    color: var(--text-muted);
    font-size: 12px;
}

.info-value {
    font-weight: 600;
    font-size: 13px;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.includes-list li {
    font-size: 12px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.includes-list li i {
    color: #2d8a4e;
    font-size: 11px;
}

.price-box {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0ebe5;
}

.price-label {
    font-size: 11px;
    color: var(--text-muted);
}

.price-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--orange);
}

.price-per {
    font-size: 12px;
    color: var(--text-muted);
}

.select-persons {
    width: 100%;
    border: 1px solid #e0d8d0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    margin-top: 10px;
    outline: none;
}

.select-persons:focus {
    border-color: var(--orange);
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 12px;
    padding: 10px 32px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Included / Excluded */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.inc-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.exc-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #c0392b;
}

.inc-list,
.exc-list {
    list-style: none;
    padding: 0;
}

.inc-list li,
.exc-list li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.inc-list li i {
    color: #2d8a4e;
    margin-top: 2px;
    flex-shrink: 0;
}

.exc-list li i {
    color: #c0392b;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Itinerary */
.itinerary-item {
    border: 1px solid #f0ebe5;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.itinerary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    background: white;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.2s;
}

.itinerary-header:hover {
    background: #fff7ed;
}

.itinerary-header .day-badge {
    background: var(--orange);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-right: 10px;
}

.itinerary-body {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s;
}

.itinerary-body.open {
    max-height: 500px;
    padding: 16px 18px;
}

.itinerary-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.itinerary-body img {
    width: 100%;
    border-radius: 8px;
    margin-top: 12px;
    object-fit: cover;
    height: 160px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
}
/* Checkout */
.page-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 28px;
        }

        /* Tour Info Card */
        .tour-info-card {
            background: white;
            border-radius: 12px;
            padding: 24px 28px;
            border: 1px solid var(--border);
            margin-bottom: 20px;
        }
        .tour-info-title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 6px;
        }
        .tour-info-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
        }
        .tour-info-meta i { font-size: 12px; color: var(--orange); }
        .tour-info-right {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }
        .tour-info-right i { color: var(--orange); }

        /* Traveler Form Card */
        .traveler-card {
            background: white;
            border-radius: 12px;
            padding: 28px;
            border: 1px solid var(--border);
            margin-bottom: 20px;
        }
        .traveler-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 24px;
        }
        .form-label-custom {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 6px;
            display: block;
        }
        .form-label-custom span { color: var(--orange); }
        .form-control-custom {
            width: 100%;
            background: #faf6f2;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 11px 14px;
            font-size: 13px;
            color: var(--text-dark);
            outline: none;
            transition: border-color 0.2s;
            font-family: 'DM Sans', sans-serif;
        }
        .form-control-custom:focus { border-color: var(--orange); background: white; }
        .form-control-custom::placeholder { color: #b0a49c; }
        .form-select-custom {
            width: 100%;
            background: #faf6f2;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 11px 14px;
            font-size: 13px;
            color: var(--text-dark);
            outline: none;
            appearance: none;
            font-family: 'DM Sans', sans-serif;
            cursor: pointer;
        }
        .select-wrap { position: relative; }
        .select-wrap::after {
            content: '\f107';
            font-weight: 900;
            position: absolute;
            right: 14px;
            top: 27%;
            background: transparent;
            color:var(--text-dark);
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
            font-size: 12px;
        }
        .input-icon-wrap { position: relative; }
        .input-icon-wrap .icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 13px;
        }

        .traveler-divider {
            border: none;
            border-top: 1px dashed var(--border);
            margin: 24px 0;
        }

        .traveler-number {
            font-size: 13px;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 16px;
        }

        .btn-add-traveler {
            background: white;
            border: 2px solid var(--orange);
            color: var(--orange);
            border-radius: 8px;
            padding: 10px 20px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
            font-family: 'DM Sans', sans-serif;
        }
        .btn-add-traveler:hover { background: var(--orange); color: white; }

        .btn-remove-traveler {
            background: none;
            border: none;
            color: #c0392b;
            font-size: 12px;
            cursor: pointer;
            padding: 0;
            font-family: 'DM Sans', sans-serif;
        }

        /* Booking Summary */
        .summary-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--border);
            position: sticky;
            top: 80px;
        }
        .summary-title {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 20px;
        }
        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .summary-row.total {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin-top: 4px;
            padding-top: 12px;
            border-top: 1px solid var(--border);
        }
        .summary-row.total span:last-child { color: var(--orange); }
        .summary-row i { color: var(--orange); margin-right: 4px; }

        .promo-wrap {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }
        .promo-input {
            flex: 1;
            background: #faf6f2;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 10px 14px;
            font-size: 13px;
            outline: none;
            font-family: 'DM Sans', sans-serif;
        }
        .promo-input:focus { border-color: var(--orange); }
        .btn-apply {
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 10px 18px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: background 0.2s;
        }
        .btn-apply:hover { background: var(--dark-orange); }

        .refund-notice {
            background: #fff8f0;
            border: 1px solid #fddcb5;
            border-radius: 8px;
            padding: 10px 14px;
            font-size: 12px;
            color: #c44e02;
            display: flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 16px;
        }

        .terms-check {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 18px;
        }
        .terms-check input[type="checkbox"] {
            margin-top: 2px;
            accent-color: var(--orange);
            width: 15px;
            height: 15px;
            flex-shrink: 0;
        }
        .terms-check a { color: var(--orange); text-decoration: none; font-weight: 600; }
        .terms-check a:hover { text-decoration: underline; }

        .btn-book-now {
            background: var(--orange);
            color: white;
            border: none;
            width: 100%;
            padding: 14px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            transition: background 0.2s;
        }

        .btn-book-now:hover { background: var(--dark-orange); }

        .checkout-page{
            padding-top: 85px;
        }
        .section_padding {
            padding: 60px 0 !important;
        }
        .dorm-text {
            color:#fff;
        }

        /* Login */
        .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Login icon */
.login-icon-btn {
    display: flex;
    align-items: center;
    color: #e85d05;
    transition: opacity 0.2s;
}
.login-icon-btn:hover { opacity: 0.75; }

/* Avatar button */
.user-avatar-btn {
    background: none;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}
.user-avatar-btn:hover { border-color: #c8783a; }

.user-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #c8783a;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown */
.user-dropdown { position: relative; }

.dropdown-menu-custom {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 999;
}
.dropdown-menu-custom.show { display: block; }

.dropdown-header {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dropdown-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}
.dropdown-email {
    font-size: 12px;
    color: #888;
}

.dropdown-item-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.15s;
}
.dropdown-item-custom:hover { background: #f7f7f7; }
.dropdown-item-custom.text-danger { color: #e53935; }

/* Dropdown */
.user-dropdown { position: relative; }

.dropdown-menu-custom {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 999;
}
.dropdown-menu-custom.show { display: block; }

.dropdown-header {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dropdown-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

/* login */
/* Auth Section */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f5f1;
    padding: 60px 16px;
}

.auth-container {
    width: 100%;
    max-width: 460px;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.auth-logo {
    text-align: center;
    margin-bottom: 24px;
}
.auth-logo img { height: 48px; }

.auth-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 4px;
}

.auth-subtitle {
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-bottom: 28px;
}

.auth-field {
    margin-bottom: 18px;
}
.auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
}
.auth-field input[type="text"],
.auth-field input[type="email"],
.auth-field input[type="password"],
.auth-field input[type="file"] {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.auth-field input:focus { border-color: #c8783a; }
.auth-field input.is-invalid { border-color: #e53935; }

.field-error {
    font-size: 12px;
    color: #e53935;
    margin-top: 4px;
    display: block;
}

/* Password toggle */
.password-wrap {
    position: relative;
}
.password-wrap input { padding-right: 42px; }
.toggle-pass {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    padding: 0;
    display: flex;
    align-items: center;
}
.toggle-pass:hover { color: #c8783a; }

/* Remember / Terms */
.auth-remember, .auth-terms {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}
.auth-terms a { color: #c8783a; text-decoration: none; }

/* Auth button */
.auth-btn {
    width: 100%;
    padding: 12px;
    background: #c8783a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.auth-btn:hover { background: #b0652e; }

.auth-switch {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 20px;
}
.auth-switch a { color: #c8783a; font-weight: 500; text-decoration: none; }

/* Alerts */
.alert-custom {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
}
.alert-success-custom {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* Profile Avatar */
.profile-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}
.profile-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c8783a;
}
.profile-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #c8783a;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* auth section */
@media (max-width: 768px) {
    .tour-hero {
        height: 260px;
    }

    .tour-hero img {
        height: 260px;
    }

    .inc-exc-grid {
        grid-template-columns: 1fr;
    }

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

    .main-content {
        padding: 20px;
    }



}
