/* ─────────────────────────────────────────────────────────────────────────
   Himachal Travel Package — BS5 build
   Custom styles that recreate the original design on top of Bootstrap 5.3
   (grid, utilities, components). This file is loaded AFTER bootstrap.min.css.
   ───────────────────────────────────────────────────────────────────────── */

/* Google Poppins — matches the original design. We load via <link> in
   header.php (with a preconnect for faster first paint) and a fallback
   @import here so the font is available even if JS/CSS load order shifts. */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

html, body {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    color: #000;
    font-size: 16px;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ─── Blinking badge text (Submit Query Form header) ─── */
.blinking {
    animation: blink 1s linear infinite;
    font-weight: 700;
}

@keyframes blink {
    0%   { opacity: 0; }
    50%  { opacity: 0.5; }
    100% { opacity: 1; }
}

/* ─── Header strip with logo + phone ─── */
#header .head-cnt {
    margin-top: 13px;
}

#header .head-cnt ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}

#header .head-cnt ul li {
    font-size: 23px;
    position: relative;
    padding-left: 35px;
}

#header .head-cnt ul li a {
    color: rgb(245, 63, 63);
    text-decoration: none;
    font-weight: 600;
}

#header .head-cnt ul li i {
    position: absolute;
    left: 0;
    top: -2px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#header .head-cnt ul li i img {
    max-width: 100%;
    height: auto;
}

/* ─── Header on small screens: stack logo above phone, centre both ─── */
@media (max-width: 767px) {
    #header .row {
        --bs-gutter-y: 6px;
        justify-content: center;
        text-align: center;
    }
    #header .col-md-3,
    #header .col-md-9 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    #header .logo {
        display: inline-block;
    }
    #header .logo img {
        width: 130px !important;
        margin: 0 auto !important;
    }
    #header .head-cnt {
        margin-top: 0;
    }
    #header .head-cnt ul {
        justify-content: center;
    }
    #header .head-cnt ul li {
        font-size: 18px;
        padding-left: 30px;
    }
}

/* ─── Banner / Hero section ─── */
#banner {
    position: relative;
}

#banner .banner-warp {
    position: relative;
    background: url('../images/banner-new.jpeg') center center / cover no-repeat;
    min-height: 520px;
    overflow: hidden;
    isolation: isolate;
}

/* Subtle Ken Burns zoom on the background image — gives the hero life
   without changing the layout. Pauses for users who prefer no motion. */
#banner .banner-warp::before {
    content: "";
    position: absolute;
    inset: -2%;
    background: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: hero-zoom 18s ease-in-out infinite alternate;
    z-index: 0;
}

#banner .banner-warp > .container {
    position: relative;
    z-index: 2;
}

/* Layered gradient: deeper red on the left for legibility, soft dark
   vignette on the right so the image peeks through cleanly. */
#banner .banner-warp::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(245, 63, 63, 0.92) 0%, rgba(245, 63, 63, 0.78) 30%, rgba(20, 30, 45, 0.45) 70%, rgba(20, 30, 45, 0.25) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

@keyframes hero-zoom {
    0%   { transform: scale(1.04) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

@media (prefers-reduced-motion: reduce) {
    #banner .banner-warp::before {
        animation: none;
        transform: scale(1.02);
    }
}

#banner .banner-text {
    color: #fff;
    padding: 72px 0;
    /* Gentle fade-up on first paint */
    animation: hero-fade-in 0.9s ease-out both;
}

@keyframes hero-fade-in {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    #banner .banner-text {
        animation: none;
    }
}

#banner .banner-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.05;
    margin: 14px 0 6px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.35);
    font-style: italic;
    font-family: "Brush Script MT", "Comic Sans MS", cursive;
    letter-spacing: -0.5px;
}

/* Tasteful accent rule beneath the headline to add visual weight
   without introducing new colours. */
#banner .banner-text h1::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    border-radius: 2px;
    margin-top: 10px;
    background: linear-gradient(90deg, #FFD23F 0%, rgba(255, 210, 63, 0) 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#banner .banner-text h4 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 18px 0 22px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: 0.3px;
}

#banner .banner-text .lets-go {
    color: #FFD23F;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
    letter-spacing: 1.2px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

#banner .banner-text .himachal {
    font-size: 56px;
    line-height: 1.05;
    color: #fff;
    display: block;
}

#banner .starting-price {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 14px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#banner .starting-price i {
    color: #FFD23F;
    font-size: 13px;
}

#banner .starting-price span {
    line-height: 1.1;
}

#banner .big-sale {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFD23F 0%, #FFC107 100%);
    color: #1f2d3d;
    padding: 10px 18px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    animation: pulse-glow 2.4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

#banner .big-sale .label {
    background: #f53f3f;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

#banner .big-sale .label i {
    font-size: 11px;
    animation: bolt-pulse 1.2s ease-in-out infinite;
}

#banner .big-sale .text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

#banner .big-sale .text strong {
    font-size: 17px;
    color: #1f2d3d;
    letter-spacing: 0.3px;
}

#banner .big-sale .text small {
    font-size: 9px;
    font-weight: 700;
    color: rgba(31, 45, 61, 0.75);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22); }
    50%      { box-shadow: 0 8px 28px rgba(255, 210, 63, 0.65); }
}

@keyframes bolt-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.25); }
}

@media (prefers-reduced-motion: reduce) {
    #banner .big-sale,
    #banner .big-sale .label i {
        animation: none;
    }
}

/* ─── "Why us" chip row (replaces pricing text) ─── */
#banner .why-us-chips {
    list-style: none;
    padding: 14px 0 0;
    margin: 14px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

#banner .why-us-chips li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.2s ease;
}

#banner .why-us-chips li:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

#banner .why-us-chips li i {
    color: #FFD23F;
    font-size: 12px;
}

@media (max-width: 575px) {
    #banner .why-us-chips li {
        font-size: 11px;
        padding: 5px 10px;
    }
    #banner .big-sale .text strong {
        font-size: 14px;
    }
    #banner .starting-price {
        font-size: 11px;
        padding: 5px 10px;
    }
    #banner .banner-warp {
        min-height: 460px;
    }
    #banner .banner-text {
        padding: 48px 0;
    }
    #banner .banner-text h1 {
        font-size: 46px;
        margin-top: 10px;
    }
    #banner .banner-text h1::after {
        width: 56px;
        height: 3px;
        margin-top: 8px;
    }
    #banner .banner-text h4 {
        font-size: 22px;
        margin: 14px 0 18px;
    }
    #banner .banner-text .lets-go {
        font-size: 24px;
    }
    #banner .banner-text .himachal {
        font-size: 46px;
    }
    #banner .big-sale {
        padding: 8px 14px;
        margin-top: 16px;
    }
}

#banner .all-inclusive {
    margin-top: 26px;
    color: #fff;
}

#banner .all-inclusive-label {
    display: inline-block;
    color: #FFD23F;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 210, 63, 0.45);
    border-radius: 50px;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

#banner .all-inclusive ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#banner .all-inclusive ul li {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 9px 14px 9px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

#banner .all-inclusive ul li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 210, 63, 0.22);
    color: #FFD23F;
    font-size: 12px;
    flex: 0 0 auto;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

#banner .all-inclusive ul li:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

#banner .all-inclusive ul li:hover i {
    background: #FFD23F;
    color: #1f2d3d;
    transform: scale(1.08);
}

#banner .all-inclusive ul li span {
    line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
    #banner .all-inclusive ul li,
    #banner .all-inclusive ul li i {
        transition: none;
    }
}

@media (max-width: 575px) {
    #banner .all-inclusive ul li {
        font-size: 11px;
        padding: 7px 12px 7px 10px;
        gap: 6px;
    }
    #banner .all-inclusive ul li i {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    #banner .all-inclusive-label {
        font-size: 11px;
        padding: 3px 9px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #banner .all-inclusive ul {
        gap: 8px;
    }
    #banner .all-inclusive ul li {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* ─── Submit Query Form (banner right column) ─── */
.free-quotes {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.25), 0 2px 6px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

/* Subtle accent stripe along the top of the card to tie it to the hero */
.free-quotes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f53f3f 0%, #FFD23F 100%);
    z-index: 1;
}

.free-quotes .get-free {
    background: linear-gradient(135deg, #f53f3f 0%, #d63030 100%);
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.free-quotes .get-free::before {
    content: "\f0e0"; /* fa-envelope */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    color: #FFD23F;
}

.free-quotes .get-free .blinking {
    color: #fff;
    letter-spacing: 0.5px;
}

.free-quotes .get-free-qoute {
    padding: 22px 22px 24px;
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(245, 63, 63, 0.06) 0%, transparent 60%),
        #fff;
}

.free-quotes .form-group {
    margin-bottom: 12px;
    position: relative;
}

/* Inline icon for every input — only inside the banner card so the modal
   form keeps its existing styles. Mirrors the per-field icons used in
   .coi-pop (the modal). */
.free-quotes .form-group > i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #f53f3f;
    font-size: 13px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
}

/* The <select> first option uses a star to imply "required" without
   cluttering every individual field with asterisks. */
.free-quotes .form-control {
    border: 1.5px solid #e6e6e6;
    border-radius: 8px;
    padding: 10px 12px 10px 36px;
    font-size: 14px;
    height: 44px;
    background: #fafafa;
    color: #1f2d3d;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    -webkit-appearance: none;
}

.free-quotes .form-control::placeholder {
    color: #9aa3ad;
}

.free-quotes .form-control:hover {
    border-color: #d4d4d4;
}

.free-quotes .form-control:focus {
    border-color: #f53f3f;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(245, 63, 63, 0.12);
}

.free-quotes .form-group:focus-within > i {
    color: #f53f3f;
    opacity: 1;
}

/* Native select arrow — matches the modal's red chevron treatment. */
.free-quotes select.form-control {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23f53f3f' d='M6 8.5L1.5 4h9z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 32px;
}

/* Style the native date picker indicator subtly */
.free-quotes input[type="date"].form-control {
    padding-right: 12px;
}
.free-quotes input[type="date"].form-control::-webkit-calendar-picker-indicator {
    opacity: 0.55;
    cursor: pointer;
    filter: invert(36%) sepia(85%) saturate(2200%) hue-rotate(335deg) brightness(95%) contrast(95%);
}
.free-quotes input[type="date"].form-control::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Inline field error — small red text below the input */
.free-quotes .field-error {
    color: #d93535;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    padding-left: 36px;
}

.free-quotes .form-control.is-invalid {
    border-color: #d93535;
    background: #fff8f8;
}
.free-quotes .form-control.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(217, 53, 53, 0.14);
}

/* Trust line under the submit button */
.free-quotes .form-trust {
    margin: 12px 0 0;
    font-size: 11.5px;
    color: #6b7280;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.free-quotes .form-trust i {
    color: #1ebe5b;
    font-size: 12px;
}

/* Banner form gets a slightly larger CTA than the modal/card buttons */
.free-quotes .btn-enq {
    width: 100%;
    font-size: 17px;
    padding: 12px 22px;
    margin: 4px 0 0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(245, 63, 63, 0.32);
}

.free-quotes .btn-enq .btn-icon {
    transition: transform 0.3s ease;
}

.free-quotes .btn-enq:hover .btn-icon {
    transform: translateX(3px) rotate(-12deg);
}

.free-quotes .btn-enq:disabled {
    opacity: 0.75;
    cursor: progress;
    box-shadow: none;
}

.free-quotes .btn-enq .btn-spinner i {
    font-size: 16px;
}

@media (max-width: 575px) {
    .free-quotes .get-free {
        font-size: 17px;
        padding: 10px 12px;
    }
    .free-quotes .get-free-qoute {
        padding: 18px 16px 20px;
    }
    .free-quotes .form-control {
        font-size: 13.5px;
        height: 42px;
    }
}

/* ─── Send Enquiry button (matches the original design exactly) ─── */
.btn-enq {
    background: rgb(245, 63, 63);
    border: none;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 6px 21px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn-enq span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn-enq span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.btn-enq:hover span {
    padding-right: 25px;
}

.btn-enq:hover span:after {
    opacity: 1;
    right: 0;
}

/* ─── Banner strip with badges (30% off, best accommodation etc.) ─── */
.banner-2 {
    background: #414a4f;
    width: 100%;
    padding: 18px 0;
}

.banner-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 12px;
}

.banner-2 ul li {
    flex: 0 0 auto;
}

.banner-2 .abt-cmpny {
    text-align: center;
    color: #fff;
}

.banner-2 .abt-cmpny figure {
    margin: 0 0 6px;
}

.banner-2 .abt-cmpny figure img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.banner-2 .abt-cmpny h6 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

/* ─── Intro section: vertical breathing room + readable body ─── */
#intro {
    padding: 56px 0 64px;
}

/* Subtle top divider so the section reads as distinct from the banner */
#intro .headingg {
    text-align: center;
    padding: 0;
    max-width: 980px;
    margin: 0 auto;
}

.headingg h1 {
    color: #f53f3f;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 6px;
}

/* The "Up! Book now!" line reads as a small kicker under the headline.
   Make it look intentional rather than orphaned. */
.headingg p:first-of-type {
    color: #f53f3f;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin: 0 0 28px;
}

/* The two body paragraphs that follow — give each its own breathing room. */
.headingg p {
    color: #4a5260;
    font-size: 16px;
    line-height: 1.75;
    margin: 0 auto 18px;
    max-width: 980px;
}

.headingg p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    #intro {
        padding: 40px 0 48px;
    }
    .headingg h1 {
        font-size: 26px;
    }
    .headingg p:first-of-type {
        margin-bottom: 20px;
        font-size: 12px;
    }
    .headingg p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ─── Global H1 style used in multiple sections ─── */
.h1-global {
    color: #f53f3f;
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin: 30px 0 20px;
    text-transform: capitalize;
}

.h1-global.white-color,
.h1-global .white-color {
    color: #fff;
}

/* ─── Top Packages (Tour cards) ─── */
#top-packages {
    padding: 20px 0 50px;
}

.packages {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.packages figure {
    margin: 0;
    overflow: hidden;
    position: relative;
}

.packages figure img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.packages figure:hover img {
    transform: scale(1.05);
}

.packages h2 {
    color: #1f2d3d;
    font-size: 20px;
    font-weight: 600;
    margin: 16px 18px 4px;
}

.packages h2 span {
    color: #f53f3f;
}

.packages h3 {
    color: #555;
    font-size: 17px;
    font-weight: 500;
    margin: 0 18px 12px;
}

.packages h3 span {
    color: #f53f3f;
    font-weight: 700;
    margin-left: 4px;
}

.packages .itnry {
    list-style: none;
    padding: 0 18px;
    margin: 0 0 12px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding-top: 12px;
    padding-bottom: 12px;
}

.packages .itnry li {
    text-align: center;
    flex: 1;
    border-right: 1px solid #eee;
    padding: 4px 0;
}

.packages .itnry li:last-child,
.packages .itnry li.border-none {
    border-right: none;
}

.packages .itnry li figure {
    width: 28px;
    height: 28px;
    margin: 0 auto 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.packages .itnry li figure img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.packages .itnry li p {
    color: #888;
    font-size: 14px;
    margin: 0;
    text-transform: capitalize;
}

.packages .itnry li.active p {
    color: #f53f3f;
    font-weight: 600;
}

.packages .inclusions {
    padding: 0 18px 12px;
}

.packages .inclusions h5 {
    color: #1f2d3d;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.packages .pkg-incusion {
    list-style: none;
    padding: 0;
    margin: 0 0 6px;
}

.packages .pkg-incusion li {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.packages .pkg-incusion li::before {
    content: "\f111";  /* fa-circle, small dot */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #f53f3f;
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 6px;
}

.packages .read-collpse {
    color: #f53f3f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
}

.packages .read-collpse span,
.packages .read-collpse i {
    font-style: normal;
}

.packages .read-collpse.collapsed i {
    display: none;
}

.packages .read-collpse:not(.collapsed) span {
    display: none;
}

.packages .price-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding: 14px 18px;
}

.packages .price-on-request {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 1px dashed #f5b5b5;
    border-radius: 8px;
    padding: 6px 12px 6px 10px;
    line-height: 1.2;
}

.packages .price-on-request > i {
    color: #f53f3f;
    font-size: 14px;
    flex: 0 0 auto;
}

.packages .price-on-request-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.packages .price-on-request-label {
    color: #d93535;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.packages .price-on-request-sub {
    color: #888;
    font-size: 11px;
    font-weight: 500;
    margin-top: 1px;
}

@media (max-width: 380px) {
    .packages .price-on-request {
        padding: 5px 10px;
        gap: 6px;
    }
    .packages .price-on-request-label {
        font-size: 12px;
    }
    .packages .price-on-request-sub {
        font-size: 10px;
    }
}

.packages .btn-detail .btn-enq {
    padding: 8px 18px;
    font-size: 14px;
    margin: 0;
}

/* ─── Confused / Call-us strip ─── */
#confused {
    background: linear-gradient(112deg, #1f3a64 0%, #2c5285 100%) center/cover no-repeat;
    padding: 50px 0;
    color: #fff;
    text-align: center;
}

#confused .h1-global {
    color: #fff;
    margin: 0 0 24px;
    font-size: 30px;
    font-weight: 700;
}

#confused .h1-global a {
    color: #fff;
    text-decoration: underline;
    font-weight: 800;
}

/* ─── Testimonials carousel ─── */
#testi {
    padding: 30px 0;
}

#testi #demo {
    background: linear-gradient(112deg, #ffffff 50%, antiquewhite 50%);
    max-width: 100%;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

#testi .carousel-caption {
    position: initial;
    z-index: 10;
    padding: 5rem 8rem;
    color: rgba(78, 77, 77, 0.856);
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 700;
    line-height: 2rem;
}

@media (max-width: 767px) {
    #testi .carousel-caption {
        padding: 3rem 2rem;
        font-size: 0.85rem;
        line-height: 1.5rem;
    }
}

#testi .carousel-caption p {
    margin: 0 0 1rem;
}

#testi #image-caption {
    font-style: normal;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: #f53f3f;
}

@media (max-width: 767px) {
    #testi #image-caption {
        font-size: 0.7rem;
    }
}

#testi .carousel-control-prev,
#testi .carousel-control-next {
    width: 8%;
    opacity: 0.9;
}

#testi .carousel-control-prev:hover,
#testi .carousel-control-next:hover {
    opacity: 1;
}

#testi .carousel-control-prev-icon,
#testi .carousel-control-next-icon {
    background-color: rgb(245, 63, 63);
    border-radius: 50%;
    padding: 18px;
    background-size: 50% 50%;
    transition: background-color 0.2s ease;
}

#testi .carousel-control-prev:hover .carousel-control-prev-icon,
#testi .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #d93535;
}

#testi .carousel-indicators {
    margin-bottom: 0;
}

#testi .carousel-indicators [data-bs-target] {
    background-color: #f53f3f;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* ─── Book Online / Why Book With Us ─── */
#book-online {
    padding: 50px 0;
    background: #fafafa;
}

#book-online .why-book {
    text-align: center;
    padding: 20px 12px;
}

#book-online .why-book i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgb(245, 63, 63);
    border-radius: 12px;
    margin-bottom: 12px;
}

#book-online .why-book i img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

#book-online .why-book h4 {
    color: #f53f3f;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#book-online .why-book p {
    color: #555;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 768px) {
    #book-online .col-md-3:not(:last-child) .why-book {
        border-right: 1px solid #e0e0e0;
    }
}

#book-online .requirement {
    background: #f53f3f;
    color: #fff;
    padding: 10px 50px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0;
    border: none;
    margin-top: 24px;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

#book-online .requirement:hover {
    background: #d93535;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ─── FAQ accordion ─── */
#faq {
    padding: 50px 0;
}

#faq .panel-group {
    margin-bottom: 0;
}

#faq .panel {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 8px;
    background: #fff;
    box-shadow: none;
}

#faq .panel-heading {
    background: #f9f9f9;
    padding: 14px 18px;
    border-radius: 4px;
}

#faq .panel-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}

#faq .panel-title a {
    color: #1f2d3d;
    text-decoration: none;
    display: block;
    position: relative;
    padding-right: 30px;
}

#faq .panel-title a::after {
    content: "\f078";  /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #f53f3f;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
    font-size: 14px;
}

#faq .panel-title a[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
}

#faq .panel-title a:hover {
    color: #f53f3f;
}

#faq .panel-body {
    padding: 14px 18px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

#faq .lead {
    color: #555;
    font-size: 16px;
    text-align: center;
    margin-bottom: 24px;
}

/* ─── Footer ─── */
#footer {
    background: #1f2d3d;
    color: #fff;
    padding: 50px 0 30px;
}

#footer .ftr-h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#footer .ftr-link {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .ftr-link li {
    color: #b0b8c1;
    font-size: 15px;
    padding: 4px 0;
}

#footer .approved img {
    max-width: 100%;
    height: auto;
    margin-bottom: 16px;
}

#footer .ftr-cnt {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .ftr-cnt li {
    color: #fff;
    font-size: 20px;
    padding-left: 30px;
    position: relative;
}

#footer .ftr-cnt li i {
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    text-align: center;
}

#footer .ftr-cnt li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

#copywrite {
    background: #14202e;
    color: #b0b8c1;
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
}

#copywrite p {
    margin: 0;
}

/* ─── Floating WhatsApp button ─── */
.whatsapp {
    border-radius: 50%;
    height: 54px;
    width: 54px;
    position: fixed;
    bottom: 90px;
    right: 18px;
    z-index: 99;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: whatsapp-pulse 2.4s ease-in-out infinite;
}

.whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

.whatsapp i {
    font-size: 30px;
    color: #fff;
    line-height: 1;
    transition: transform 0.2s ease;
}

.whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.6);
}

.whatsapp:hover i {
    transform: scale(1.05);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45),
                    0 0 0 0 rgba(37, 211, 102, 0.55);
    }
    50% {
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45),
                    0 0 0 14px rgba(37, 211, 102, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp,
    .whatsapp i {
        animation: none;
        transition: none;
    }
}

/* ─── Mobile sticky bar (Call + Send Enquiry) ─── */
.section_mobile {
    display: none;
}

@media (max-width: 767px) {
    .section_mobile {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        /* No background here — the two buttons fill the bar edge-to-edge.
           The .row > .col padding/margin is zeroed so there is no white
           sliver between or around them. The shadow stays so the bar
           still feels lifted from the page. */
        box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.18);
    }

    .section_mobile .inner_mobile,
    .section_mobile .inner_mobile .container-fluid {
        padding: 0;
        margin: 0;
        max-width: none;
        width: 100%;
    }

    .section_mobile .inner_mobile .row {
        margin: 0;
        --bs-gutter-x: 0;
    }

    ._col_m,
    ._col_bm {
        padding: 0;
    }

    ._btn_bm {
        width: 100%;
        color: #fff;
        border: none;
        padding: 12px 8px;
        /* Respect iOS home indicator on each button so the colored fill
           extends to the very bottom of the screen. */
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        line-height: 1.2;
        cursor: pointer;
        transition: filter 0.15s ease, transform 0.15s ease;
    }

    ._btn_bm:active {
        transform: scale(0.98);
        filter: brightness(0.95);
    }

    ._btn_bm i {
        font-size: 16px;
        line-height: 1;
    }

    ._btn_bm span {
        letter-spacing: 0.4px;
    }

    /* Green Call button — left 25% */
    ._col_m ._btn_bm {
        background: linear-gradient(135deg, #28a745 0%, #1f8a37 100%);
    }

    /* Red Enquiry button — right 75% */
    ._col_bm ._btn_bm {
        background: linear-gradient(135deg, #f53f3f 0%, #d63030 100%);
    }

    /* Keep page content clear of the bar */
    body {
        padding-bottom: 72px;
    }
}

/* Very small phones: drop the labels, keep icons only for breathing room */
@media (max-width: 380px) {
    .section_mobile ._btn_bm span {
        display: none;
    }
    .section_mobile ._btn_bm {
        padding: 14px 6px;
    }
}

/* ─── Enquiry modal (improved design) ─────────────────────────── */
.coi-pop {
    z-index: 1055;
}

.coi-pop .modal-dialog {
    max-width: 520px;
    margin: 1.5rem auto;
}

.coi-pop .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    background: #fff;
}

.coi-pop .modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD23F 0%, #f53f3f 50%, #d93535 100%);
    z-index: 5;
}

/* ── Header ────────────────────────────────────────────────── */
.coi-pop .modal-header {
    position: relative;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 210, 63, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, #f53f3f 0%, #d93535 100%);
    color: #fff;
    border-bottom: none;
    padding: 24px 56px 22px 24px;
    align-items: flex-start;
}

.coi-pop .modal-header-text {
    flex: 1 1 auto;
    min-width: 0;
}

.coi-pop .modal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.coi-pop .modal-eyebrow i {
    font-size: 11px;
    color: #FFD23F;
}

.coi-pop .modal-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.coi-pop .modal-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
}

.coi-pop .btn-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    opacity: 1;
    padding: 0;
    margin: 0;
    transition: background 0.2s ease, transform 0.2s ease;
    filter: none;
    color: #fff;
}

.coi-pop .btn-close:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: rotate(90deg);
}

.coi-pop .btn-close::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.coi-pop .btn-close:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.btn-close-white {
    filter: none;
}

/* ── Body & form fields ───────────────────────────────────── */
.coi-pop .modal-body {
    padding: 24px 24px 18px;
    background: #fff;
}

.coi-pop .form-group {
    margin-bottom: 14px;
    position: relative;
}

/* Per-field icon: rendered as a real <i> inside each .form-group now that
   the shared form template also uses the inline-icon pattern. The old
   ::before technique is gone, so we position the icon and colour-code it
   per field via [class*="fa-"] attributes (handled below). */
.coi-pop .form-group > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    color: #999;
    pointer-events: none;
    z-index: 2;
    transition: color 0.2s ease;
}

/* Brighten the icon to match the red focus ring when its field is active */
.coi-pop .form-group:focus-within > i {
    color: #f53f3f;
}

.coi-pop .form-control {
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 14px 10px 40px;
    font-size: 14px;
    font-family: inherit;
    height: 44px;
    background: #fafafa;
    color: #1f2d3d;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.coi-pop select.form-control {
    padding-left: 40px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23f53f3f' d='M6 8.5L1.5 4h9z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 36px;
}

/* Match the banner form: subtle red tint on the native date picker icon */
.coi-pop input[type="date"].form-control::-webkit-calendar-picker-indicator {
    opacity: 0.55;
    cursor: pointer;
    filter: invert(36%) sepia(85%) saturate(2200%) hue-rotate(335deg) brightness(95%) contrast(95%);
}
.coi-pop input[type="date"].form-control::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.coi-pop .form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.coi-pop .form-control:hover {
    border-color: #c8c8c8;
    background: #fff;
}

.coi-pop .form-control:focus {
    border-color: #f53f3f;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(245, 63, 63, 0.12);
    outline: none;
}

.coi-pop .form-control.is-invalid {
    border-color: #d93535;
    background: #fff5f5;
    box-shadow: 0 0 0 4px rgba(217, 53, 53, 0.10);
}

.coi-pop .field-error {
    color: #d93535;
    font-size: 12px;
    margin-top: 5px;
    margin-left: 4px;
    font-weight: 500;
}

.coi-pop .form-group .field-error {
    /* Inline error needs a little breathing room from the field below */
    margin-bottom: -8px;
}

/* ── Submit button ─────────────────────────────────────────── */
.coi-pop form .text-center,
.coi-pop form > div:last-child {
    margin-top: 18px;
}

.coi-pop .btn-enq {
    width: 100%;
    background: linear-gradient(135deg, #f53f3f 0%, #d93535 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 22px;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    margin: 0;
    box-shadow: 0 4px 12px rgba(245, 63, 63, 0.30);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* The paper-plane icon now lives in markup (.btn-icon). The legacy
   ::after arrow was a duplicate once the shared template added the
   <i class="fa-paper-plane btn-icon"> element, so we hide it. */
.coi-pop .btn-enq::after {
    display: none;
}

.coi-pop .btn-enq:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 63, 63, 0.42);
    background: linear-gradient(135deg, #e84545 0%, #c72a2a 100%);
}

/* Animate the paper-plane icon on hover so the button still feels alive */
.coi-pop .btn-enq .btn-icon {
    transition: transform 0.3s ease;
}

.coi-pop .btn-enq:hover .btn-icon {
    transform: translateX(3px) rotate(-12deg);
}

.coi-pop .btn-enq:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(245, 63, 63, 0.30);
}

.coi-pop .btn-enq:disabled {
    opacity: 0.75;
    cursor: progress;
    transform: none;
    box-shadow: none;
}

.coi-pop .btn-enq .btn-spinner i {
    font-size: 16px;
}

/* The shared template also renders a small ".form-trust" line under the
   button. Inside the modal we already show a richer trust-row +
   WhatsApp CTA in the modal footer, so hide the inline one to avoid
   duplication. The banner form keeps it visible. */
.coi-pop .form-trust {
    display: none;
}

/* ── Trust row + WhatsApp CTA (footer block) ───────────────── */
.coi-pop .modal-footer-ty {
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    padding: 16px 20px 18px;
}

.coi-pop .trust-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.coi-pop .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #555;
    font-size: 12px;
    font-weight: 500;
}

.coi-pop .trust-item i {
    color: #f53f3f;
    font-size: 12px;
}

.coi-pop .whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 11px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
}

.coi-pop .whatsapp-cta:hover {
    color: #fff;
    background: linear-gradient(135deg, #1ebe5b 0%, #0e7a6c 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(37, 211, 102, 0.40);
    text-decoration: none;
}

.coi-pop .whatsapp-cta i {
    font-size: 18px;
}

.coi-pop .whatsapp-cta i:last-child {
    font-size: 12px;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.coi-pop .whatsapp-cta:hover i:last-child {
    transform: translateX(3px);
}

/* ── Modal backdrop polish ─────────────────────────────────── */
.coi-pop + .modal-backdrop {
    background: #1f2d3d;
    opacity: 0.55;
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .coi-pop .btn-enq,
    .coi-pop .btn-enq .btn-icon,
    .coi-pop .btn-close,
    .coi-pop .whatsapp-cta,
    .coi-pop .whatsapp-cta i:last-child,
    .coi-pop .form-control,
    .coi-pop .form-group > i {
        transition: none;
    }
    .coi-pop .btn-enq:hover .btn-icon,
    .coi-pop .whatsapp-cta:hover i:last-child {
        transform: none;
    }
}

/* ── Small screens ─────────────────────────────────────────── */
@media (max-width: 575px) {
    .coi-pop .modal-dialog {
        margin: 0.5rem;
    }
    .coi-pop .modal-header {
        padding: 20px 48px 18px 18px;
    }
    .coi-pop .modal-title {
        font-size: 18px;
    }
    .coi-pop .modal-sub {
        font-size: 12px;
    }
    .coi-pop .modal-body {
        padding: 18px 18px 14px;
    }
    .coi-pop .trust-item {
        font-size: 11px;
    }
}

/* ─── Error alert ─── */
.alert-danger {
    background: #fdecec;
    color: #b71c1c;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 12px 18px;
}

/* ─── Toast (used by AJAX form submit) ─── */
.form-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1f2d3d;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    z-index: 9999;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    max-width: 320px;
}

.form-toast.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.form-toast.is-success {
    background: #28a745;
}

.form-toast.is-error {
    background: #d93535;
}

/* ─── Small screen tweaks ─── */
@media (max-width: 991px) {
    #banner .banner-text h1 {
        font-size: 48px;
    }
    #banner .banner-text .himachal {
        font-size: 64px;
    }
    .packages h2 {
        font-size: 17px;
    }
}

@media (max-width: 575px) {
    #banner .banner-text {
        padding: 30px 0;
    }
    #banner .banner-text h1 {
        font-size: 36px;
    }
    #banner .banner-text .himachal {
        font-size: 48px;
    }
    #banner .all-inclusive ul {
        gap: 4px 10px;
        font-size: 12px;
    }
    .banner-2 ul li {
        flex: 0 0 33.333%;
    }
    .h1-global {
        font-size: 24px;
    }
    #confused .h1-global {
        font-size: 20px;
    }
    #confused {
        padding: 30px 0;
    }
}
