/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=Dancing+Script:wght@600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
    --ink: #0f1a14;
    --ink-mid: #1e2e24;
    --forest: #1b3a2d;
    --forest-mid: #2a5240;
    --green-acc: #3d7a5c;
    --sage: #7aab8f;
    --gold: #c8922a;
    --gold-light: #f4a623;
    --gold-pale: #fdf3e1;
    --white: #ffffff;
    --off-white: #f7f4ef;
    --mist: #edf0ec;
    --border: rgba(30, 46, 36, 0.12);
    --shadow-sm: 0 2px 12px rgba(15, 26, 20, 0.08);
    --shadow-md: 0 8px 32px rgba(15, 26, 20, 0.12);
    --shadow-lg: 0 20px 60px rgba(15, 26, 20, 0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Inner Page Breadcrumb ---------- */
.inner-breadcrumb {
    background: var(--forest);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 29px;
}

/* Medium screens (laptops/tablets) */
@media (max-width: 1024px) {
    .inner-breadcrumb {
        margin-top: 10px;
    }
}

/* Small tablets */
@media (max-width: 768px) {
    .inner-breadcrumb {
        margin-top: 0px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .inner-breadcrumb {
        margin-top: -20px;
    }
}

.inner-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.inner-breadcrumb li {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 6px;
}

.inner-breadcrumb li::after {
    content: '/';
    opacity: 0.35;
}

.inner-breadcrumb li:last-child::after {
    display: none;
}

.inner-breadcrumb li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition);
}

.inner-breadcrumb li a:hover {
    color: var(--gold-light);
}

.inner-breadcrumb li.active {
    color: var(--gold-light);
}

/* ---------- Page Hero (Inner Banner) ---------- */
.page-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--forest);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg {
    transform: scale(1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 26, 20, 0.35) 0%, rgba(15, 26, 20, 0.75) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 0 40px;
}

.page-hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(200, 146, 42, 0.18);
    border: 1px solid rgba(200, 146, 42, 0.35);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 14px;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin: 0 0 12px;
}

.page-hero h1 span {
    color: var(--gold-light);
    font-style: italic;
}

.page-hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 560px;
}

/* Mobile page hero */
@media (max-width: 767px) {
    .page-hero {
        min-height: 220px;
    }

    .page-hero-content {
        padding: 32px 5px 28px;
    }
}

/* ---------- Section Utilities ---------- */
.ip-section {
    padding: 80px 0;
}

.ip-section-sm {
    padding: 48px 0;
}

.ip-section-alt {
    background: var(--off-white);
}

.ip-section-dark {
    background: var(--forest);
    color: var(--white);
}

.ip-section-forest-mid {
    background: var(--forest-mid);
    color: var(--white);
}

@media (max-width: 767px) {
    .ip-section {
        padding: 48px 0;
    }

    .ip-section-sm {
        padding: 32px 0;
    }
}

.ip-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-acc);
    background: rgba(61, 122, 92, 0.1);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 10px;
}

.ip-tag-gold {
    color: var(--gold);
    background: rgba(200, 146, 42, 0.1);
}

.ip-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 14px;
}

.ip-title span {
    color: var(--green-acc);
    font-style: italic;
}

.ip-title-light {
    color: var(--white);
}

.ip-title-light span {
    color: var(--gold-light);
}

.ip-divider {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 14px 0 20px;
}

.ip-divider-center {
    margin-left: auto;
    margin-right: auto;
}

.ip-lead {
    font-size: 1.05rem;
    color: #4a5e52;
    max-width: 620px;
}

/* ---------- CTA Button Styles (reusable) ---------- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(200, 146, 42, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 146, 42, 0.4);
    color: var(--white);
}

.btn-outline-forest {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: transparent;
    color: var(--forest);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--forest);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-forest:hover {
    background: var(--forest);
    color: var(--white);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: transparent;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

/* ---------- Inner Page Cards ---------- */
.ip-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.ip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(61, 122, 92, 0.2);
}

.ip-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.ip-card-body {
    padding: 22px;
}

.ip-card-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-acc);
    margin-bottom: 6px;
    display: block;
}

.ip-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 8px;
}

.ip-card-desc {
    font-size: 0.88rem;
    color: #5a6e62;
    margin-bottom: 16px;
    line-height: 1.6;
}

.ip-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.8rem;
    color: #6b7e73;
    margin-bottom: 16px;
}

.ip-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ip-card-meta i {
    color: var(--green-acc);
    font-size: 0.85rem;
}

.ip-card-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest);
}

.ip-card-price small {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: #7a8f82;
}

/* ---------- Highlight / Feature Box ---------- */
.ip-feature-box {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.ip-feature-box:hover {
    border-color: rgba(61, 122, 92, 0.25);
    box-shadow: var(--shadow-sm);
}

.ip-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    background: rgba(61, 122, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--green-acc);
}

.ip-feature-icon-gold {
    background: rgba(200, 146, 42, 0.1);
    color: var(--gold);
}

.ip-feature-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.ip-feature-desc {
    font-size: 0.84rem;
    color: #6b7e73;
    line-height: 1.5;
    margin: 0;
}

/* ---------- Accordion / FAQ ---------- */
.ip-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--white);
}

.ip-accordion .accordion-button {
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--white);
    padding: 18px 22px;
    box-shadow: none;
}

.ip-accordion .accordion-button:not(.collapsed) {
    color: var(--forest);
    background: rgba(61, 122, 92, 0.05);
    box-shadow: none;
}

.ip-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%233d7a5c' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.ip-accordion .accordion-body {
    font-size: 0.9rem;
    color: #5a6e62;
    padding: 6px 22px 20px;
    line-height: 1.75;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-grid-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-grid-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-grid-item.wide {
    grid-column: span 2;
    aspect-ratio: auto;
    min-height: 220px;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 20, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-overlay i {
    font-size: 1.4rem;
    color: var(--white);
    opacity: 0;
    transform: scale(0.7);
    transition: var(--transition);
}

.gallery-grid-item:hover .gallery-overlay {
    background: rgba(15, 26, 20, 0.45);
}

.gallery-grid-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

.gallery-category-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    color: var(--ink-mid);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.gallery-category-tab:hover,
.gallery-category-tab.active {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

/* ---------- Lightbox ---------- */
.ip-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ip-lightbox-overlay.open {
    display: flex;
}

.ip-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.ip-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* ---------- Testimonial Card ---------- */
.ip-review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 26px;
    border: 1px solid var(--border);
    position: relative;
}

.ip-review-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(61, 122, 92, 0.1);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.ip-review-stars {
    color: var(--gold-light);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.ip-review-text {
    font-size: 0.9rem;
    color: #4a5e52;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.ip-reviewer-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
}

.ip-reviewer-meta {
    font-size: 0.78rem;
    color: #7a8f82;
}

/* ---------- Stats Bar ---------- */
.ip-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.ip-stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 28px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ip-stat-item:last-child {
    border-right: none;
}

.ip-stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.ip-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------- Sidebar ---------- */
.ip-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 24px;
}

.ip-sidebar-card-head {
    background: var(--forest);
    color: var(--white);
    padding: 16px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ip-sidebar-card-head i {
    color: var(--gold-light);
}

.ip-sidebar-card-body {
    padding: 20px;
}

.ip-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ip-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--ink-mid);
}

.ip-sidebar-list li:last-child {
    border-bottom: none;
}

.ip-sidebar-list i {
    color: var(--green-acc);
    font-size: 0.85rem;
    width: 16px;
}

/* ---------- Itinerary Timeline ---------- */
.ip-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.ip-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-acc), transparent);
}

.ip-timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
}

.ip-timeline-dot {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--forest);
    border: 3px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    z-index: 1;
}

.ip-timeline-content {
    flex: 1;
    padding-top: 8px;
}

.ip-timeline-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.ip-timeline-desc {
    font-size: 0.86rem;
    color: #5a6e62;
    line-height: 1.6;
    margin: 0;
}

/* ---------- Thank You Page ---------- */
.thankyou-wrap {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 30% 60%, rgba(61, 122, 92, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 146, 42, 0.06) 0%, transparent 50%),
        var(--off-white);
}

.thankyou-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    max-width: 560px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.thankyou-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--gold-light), var(--green-acc));
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest), var(--green-acc));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(27, 58, 45, 0.3);
    animation: pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pop-in {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thankyou-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 12px;
}

.thankyou-subtitle {
    font-size: 1rem;
    color: #5a6e62;
    margin-bottom: 28px;
    line-height: 1.7;
}

.thankyou-info-box {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 28px;
    text-align: left;
    font-size: 0.88rem;
    color: var(--ink-mid);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.thankyou-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.thankyou-info-row i {
    color: var(--green-acc);
    width: 16px;
}

.thankyou-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---------- About Page ---------- */
.about-story-img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 420px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    position: relative;
}

.about-story-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    min-width: 120px;
    text-align: center;
}

.about-story-badge span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 2px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-card-body {
    padding: 18px;
}

.team-card-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 0.8rem;
    color: var(--green-acc);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---------- Service Detail ---------- */
.service-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background: rgba(61, 122, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--green-acc);
    margin-bottom: 18px;
}

.service-include-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--ink-mid);
}

.service-include-item:last-child {
    border-bottom: none;
}

.service-include-item i {
    color: var(--green-acc);
    margin-top: 3px;
    font-size: 0.85rem;
}

.service-include-item.exclude i {
    color: #e05151;
}

/* ---------- Price Table ---------- */
.price-table {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
}

.price-table thead th {
    background: var(--forest);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 14px 16px;
}

.price-table tbody td {
    padding: 12px 16px;
    font-size: 0.88rem;
    color: var(--ink-mid);
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover td {
    background: var(--off-white);
}

.price-highlight {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
}

/* ---------- Floating CTA (Mobile) ---------- */
.ip-floating-cta {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: var(--forest);
    display: flex;
    gap: 10px;
    z-index: 900;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ip-floating-cta .btn-gold {
    flex: 1;
    justify-content: center;
    font-size: 0.84rem;
    padding: 11px 16px;
}

.ip-floating-cta .btn-outline-white {
    flex: 1;
    justify-content: center;
    font-size: 0.84rem;
    padding: 10px 16px;
}

@media (min-width: 768px) {
    .ip-floating-cta {
        display: none;
    }
}

/* ---------- Tour Package Filters ---------- */
.tp-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.tp-filter-btn {
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--ink-mid);
    font-size: 0.84rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tp-filter-btn:hover,
.tp-filter-btn.active {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

/* ---------- Package Detail Hero Variant ---------- */
.pkg-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    padding: 4px 10px;
}

.pkg-badge-easy {
    background: rgba(46, 160, 67, 0.15);
    color: #2ea043;
}

.pkg-badge-mod {
    background: rgba(200, 146, 42, 0.15);
    color: var(--gold);
}

.pkg-badge-hard {
    background: rgba(224, 81, 81, 0.15);
    color: #e05151;
}

.pkg-badge-sacred {
    background: rgba(100, 80, 200, 0.12);
    color: #6450c8;
}

/* ---------- Responsive Helpers ---------- */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-item.tall,
    .gallery-grid-item.wide {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1;
        min-height: auto;
    }

    .thankyou-card {
        padding: 36px 22px;
    }

    .ip-stats-bar {
        gap: 0;
    }

    .ip-stat-item {
        min-width: 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .ip-stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-story-img {
        height: 260px;
    }

    .about-story-badge {
        bottom: -12px;
        left: 12px;
    }
}

/* ---------- Scroll Reveal ---------- */
.ip-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ip-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.ip-feature-box-custom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 32px 24px;
}

.ip-f-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
}

.ip-cta-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto 28px;
    font-size: 0.95rem;
}

.ip-rev-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.page-hero-bg {
    background-image: url('/public/images/banner/uttarakhand-trip-plan.webp');
}

/* === FAQ- STYLE == */
.faq-section-custom {
    padding: 50px 15px;
    background: #f8fafc;
}

/* MOBILE SCROLL */
.faq-scroll-row {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px;
}

.faq-scroll-item {
    min-width: 260px;
}

.faq-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.faq-q {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.faq-a {
    font-size: 13px;
    color: #666;
}

/* DESKTOP */
.faq-image img {
    width: 100%;
    border-radius: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
    padding: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question {
    font-weight: 600;
    position: relative;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #555;
    font-size: 14px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 10px;
}

/* SMOOTH HOVER */
.faq-item:hover {
    transform: translateY(-2px);
}

/* DESKTOP ICON (OPEN / CLOSE) */
@media (min-width: 768px) {

    .faq-question::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        font-weight: 700;
        transition: 0.3s ease;
    }

    .faq-item.active .faq-question::after {
        content: '−';
        transform: translateY(-50%) rotate(180deg);
    }

    /* OPTIONAL: smooth rotation feel */
    .faq-question::after {
        transition: all 0.3s ease;
    }
}