.colorcheck {
    width: 100%;
    height: 200px;
    color: red;
    background-color: orange;
}

:root {
    --green: #165f48;
    --green-2: #1f6f54;
    --saffron: #f0a500;
    --ink: #0f1412;
    --muted: #6b7280;
    --soft: #f6fbf8;
    --glass: rgba(255, 255, 255, .8);
    --radius: 18px;
    --shadow: 0 18px 50px rgba(0, 0, 0, .12);
    --teal: #00BFA6;
    --teal-25: #E6FFFA;
    --ink: #0f172a;

}

body {
    background: #fff;
    color: var(--ink);
}


/* hero section start  */
.hero {
    position: relative;
    padding: 120px 0 56px;
    background:
        radial-gradient(1000px 280px at 70% -120px, rgba(31, 111, 84, .24), rgba(31, 111, 84, 0)),
        linear-gradient(180deg, #e9f7f1, #fff 42%);
}

.hero h1 {
    color: black;
    font-size: 3.3rem;
}

.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-leaf {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(31, 111, 84, .25), transparent 60%);
    animation: drift 24s linear infinite;
}

.float-leaf.l2 {
    left: -80px;
    top: 10%;
    animation-duration: 28s;
}

.float-leaf.l3 {
    right: -60px;
    bottom: -40px;
    animation-duration: 30s;
}

@keyframes drift {
    0% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-20px) rotate(6deg)
    }

    100% {
        transform: translateY(0) rotate(0)
    }
}

.glass {
    background: var(--glass);
    border: 1px solid rgba(31, 111, 84, .12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .9rem;
    border-radius: 999px;
    background: #eef7f3;
    color: var(--green-2);
    font-weight: 700;
}

.chip i {
    color: #1e9e75
}

.btn-brand {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #111;
    font-weight: 800;
}

.btn-brand:hover {
    background: #d89200;
    border-color: #d89200;
    color: #111;
}

.btn-ghost {
    border: 1px solid var(--green-2);
    color: var(--green-2);
    font-weight: 800;
}

.btn-ghost:hover {
    background: var(--green-2);
    color: #fff;
}

.gallery-main {
    border-radius: 22px;
    overflow: hidden;
    height: 420px;
}

.thumb {
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
}

.pulse {
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.04)
    }

    100% {
        transform: scale(1)
    }
}

/* hero section end  */


/* section-itinerary section start  */
.section-itinerary {
    padding: 40px 0;
}

/* Left timeline */
.timeline {
    position: relative;
    padding-left: 1.6rem;
    margin: 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: .6rem;
    top: .2rem;
    bottom: .2rem;
    width: 3px;
    background: linear-gradient(#cfe9de, #e9f3ef);
}

.timeline li {
    list-style: none;
    margin-bottom: 24px;
    position: relative;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: -.25rem;
    top: .4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #1f6f54, #2fbf8a);
    box-shadow: 0 0 0 4px #eaf4f1;
}

.lead-line {
    font-weight: 700;
     margin-left: 20px;
}

.muted {
    color: var(--muted);
}

/* Right fact cards */
.fact-card {
    background: var(--card);
    border: 1px solid #edf2ef;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .06);
    padding: 16px;
}

.fact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #ecf7f2;
    color: var(--green-2);
}

.red-money {
    text-decoration: line-through;
    color: red;
    margin-right: 5px;
}

.discount {
    color: orange;
}

/* section-itinerary section end  */


/* Section spacing (optional if embedding) */
.section {
    padding: 72px 0;
}

/* Apply / Book wrapper */
.apply-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0f2e24;
    color: #e8fff6;
}

.apply-wrap .bg-img {
    position: absolute;
    inset: 0;
    opacity: .18;
    background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?q=80&w=1400&auto=format&fit=crop') center/cover no-repeat;
    filter: contrast(110%) saturate(110%);
}

.apply-body {
    position: relative;
    padding: 28px;
}

.stepper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.stepper .dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: #143b2d;
    border: 2px solid #2ac289;
    color: #aef1d5;
}

.stepper .dot.active {
    background: #2ac289;
    color: #0f2e24;
}

.stepper .bar {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, #2ac289, rgba(42, 194, 137, .25));
    border-radius: 99px;
}

.apply-card {
    background: rgba(15, 46, 36, .6);
    border: 1px solid rgba(174, 241, 213, .16);
    border-radius: 16px;
    padding: 16px;
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .08);
    color: #eafff5;
}

.form-control::placeholder {
    color: #bfe8d7;
}

.form-check-input {
    border-color: #bfe8d7;
    background: #0f2e24;
}

.summary {
    background: #10372a;
    border: 1px dashed #2ac289;
    border-radius: 14px;
    padding: 12px;
}

.btn-brand {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #111;
    font-weight: 800;
}

.btn-brand:hover {
    background: #d89200;
    border-color: #d89200;
    color: #111;
}

.btn-ghost {
    border: 1px solid var(--green-2);
    color: var(--green-2);
    font-weight: 800;
}

.btn-ghost:hover {
    background: var(--green-2);
    color: #fff;
}

/* Success popup */
.success-pop {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.success-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
    text-align: center;
}

/* Micro interaction */
.pulse {
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.04)
    }

    100% {
        transform: scale(1)
    }
}


/* trip informain section  */

/* Package Form Health and safety and plicy section  */

:root {
    --teal: #00BFA6;
    --teal-25: #E6FFFA;
    --ink: #0f172a;
}

.bg-teal {
    background: var(--teal) !important;
}

.text-teal {
    color: var(--teal) !important;
}

.bg-teal-soft {
    background: var(--teal-25) !important;
}

.section-wrap {
    background: radial-gradient(1200px 600px at 10% -10%, #e6fff9 0%, transparent 60%),
        radial-gradient(1200px 600px at 90% 110%, #f1f5ff 0%, transparent 60%);
}

.glow-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.glow-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

.accordion-item.glow-card {
    border: 0;
}

.accordion-button {
    border-radius: 12px !important;
    font-weight: 600;
}

.accordion-button::after {
    transition: transform .2s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.icon-pill {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    background: var(--teal-25);
    color: var(--teal);
}

.policy-timeline {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.policy-step {
    position: relative;
    padding: 10px 12px 10px 36px;
    min-width: 150px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, .06);
}

.policy-dot {
    position: absolute;
    left: 10px;
    top: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.policy-label {
    display: block;
    font-weight: 600;
    color: #0f172a;
}

.policy-meta {
    font-size: .85rem;
    color: #64748b;
}




@media (max-width: 576px) {
    .left-info {
        order: 2;
    }

    .right-gallery {
        order: 1;
    }
}


/* Mobile-first enhancements for ≤576px screens */
@media (max-width: 576px) {
    :root {
        --radius: 14px;
        --shadow: 0 12px 28px rgba(0, 0, 0, .12);
    }

    body {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Layout ordering from user's hint */
    .left-info {
        order: 2;
    }

    .right-gallery {
        order: 1;
    }

    /* Container and spacing tightening */
    .section,
    .section-itinerary,
    .hero {
        padding-top: 56px;
        padding-bottom: 32px;
        margin-top: 170px;
    }

    /* Hero */
    .hero {
        padding: 80px 0 40px;
        background:
            radial-gradient(520px 180px at 70% -80px, rgba(31, 111, 84, .20), rgba(31, 111, 84, 0)),
            linear-gradient(180deg, #e9f7f1, #fff 38%);
    }

    .hero h1,
    .hero .display-5 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: .4rem;
    }

    .glass {
        border-radius: 14px;
        padding: 16px !important;
        box-shadow: var(--shadow);
    }

    .chip {
        padding: .4rem .7rem;
        font-size: .86rem;
        gap: .4rem;
    }

    .hero .d-flex.gap-2>a.btn {
        flex: 1 1 48%;
        font-size: .95rem;
        padding: .7rem .9rem;
    }

    /* Floating visuals: shrink and clamp */
    .float-leaf {
        width: 140px;
        height: 140px;
        opacity: .6;
    }

    .float-leaf.l2 {
        left: -40px;
        top: 8%;
    }

    .float-leaf.l3 {
        right: -30px;
        bottom: -20px;
    }

    /* Gallery */
    .gallery-main {
        border-radius: 16px;
    }

    /* Itinerary timeline */
    .timeline {
        padding-left: 1.2rem;
    }

    .timeline::before {
        left: .45rem;
        width: 2px;
    }

    .timeline li {
        margin-bottom: 18px;
    }

    .timeline li::before {
        left: -.35rem;
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 3px #eaf4f1;
    }

    .lead-line {
        font-size: 1rem;
    }

    .muted {
        font-size: .92rem;
    }

    /* Fact cards grid: 2 per row -> full width stack on narrow */
    .fact-card {
        border-radius: 14px;
        padding: 12px;
    }

    .fact-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: .95rem;
    }

    /* Make the right-side info cards stack nicely */
    .col-lg-6 .row.g-3>[class*="col-"] {
        width: 100%;
    }

    /* Pricing chips */
    .red-money {
        margin-right: 4px;
    }

    .discount {
        font-weight: 700;
    }

    /* Apply/Book wrapper */
    .apply-wrap {
        border-radius: 16px;
        overflow: hidden;
    }

    .apply-body {
        padding: 18px;
    }

    .stepper {
        gap: 8px;
        margin-bottom: 12px;
    }

    .stepper .dot {
        width: 30px;
        height: 30px;
        font-size: .95rem;
    }

    .stepper .bar {
        height: 2px;
    }

    .apply-card {
        border-radius: 12px;
        padding: 12px;
    }

    .form-control,
    .form-select {
        border-radius: 10px;
        padding: .6rem .75rem;
        font-size: .98rem;
    }

    .summary {
        border-radius: 12px;
        padding: 10px;
        gap: 6px;
    }

    .summary .d-flex {
        gap: 6px;
    }

    /* Buttons */
    .btn-brand,
    .btn-ghost {
        padding: .7rem 1rem;
        font-weight: 800;
        border-radius: 12px;
    }

    .btn-lg {
        font-size: 1rem;
    }

    /* Grid adjustments for steps: make inputs full width */
    #step1 .col-md-6,
    #step2 .col-md-6,
    #step3 .col-md-6 {
        width: 100%;
    }

    /* Success pop */
    .success-card {
        width: calc(100% - 32px);
        max-width: 440px;
        padding: 22px;
        border-radius: 16px;
    }

    /* Utility: tighter gaps on rows */
    .row.g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

    .row.g-3 {
        --bs-gutter-x: .9rem;
        --bs-gutter-y: .9rem;
    }

    .row.g-2 {
        --bs-gutter-x: .7rem;
        --bs-gutter-y: .7rem;
    }

    /* Typography fine-tuning */
    h2.fw-bold {
        font-size: 1.35rem;
    }

    .text-muted,
    .text-light {
        font-size: .95rem;
    }

    /* Pulse animation: reduce motion on mobile to save battery */
    @media (prefers-reduced-motion: reduce) {
        .pulse {
            animation: none !important;
        }

        .float-leaf {
            animation: none !important;
        }
    }
}

/* Small-to-medium devices: 577–768px */
@media (min-width: 577px) and (max-width: 768px) {
    .hero {
        padding: 96px 0 48px;
    }

    .hero h1,
    .hero .display-5 {
        font-size: 2.4rem;
    }

    .glass {
        padding: 20px !important;
    }

    .timeline {
        padding-left: 1.4rem;
    }

    .fact-card {
        padding: 14px;
    }

    #step1 .col-md-6,
    #step2 .col-md-6,
    #step3 .col-md-6 {
        width: 50%;
    }

    .success-card {
        max-width: 520px;
    }
}