/* ── Root Variables ── */
:root {
    --white: #ffffff;
    --light-bg: #f0f7f4;
    --color-slate-50: lab(98.1434% -.369519 -1.05966);
    --card-bg: #e8f5f0;
    --orange: #e86020;
    --orange-lt: rgba(255, 122, 0, .12);
    --blue: #2a6496;
    --blue-dark: #1e4d72;
    --blue-lt: rgba(0, 123, 255, .08);
    --wa-green: #25D366;
    --dark: #1e2d3d;
    --text: #4a5568;
    --border: rgba(42, 100, 150, .10);
    --shadow-sm: 0 4px 20px rgba(42, 100, 150, .08);
    --shadow-md: 0 8px 40px rgba(42, 100, 150, .13);
    --radius: 14px;
    --transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset / Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

.tour-slider,
.why-scroll-wrap {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tour-slider::-webkit-scrollbar,
.why-scroll-wrap::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Backgrounds ── */
.bg-white {
    background: var(--white);
}

.bg-lightbg {
    background: var(--color-slate-50);
}

.bg-cardbg {
    background: var(--card-bg);
}

.bg-lightblue {
    background: var(--light-bg);
}

.bg-skyblue {
    background: var(--card-bg);
}

/* ── Section Padding ── */
.section-pad {
    padding: 90px 0;
}

/* ── Section Headings ── */
.section-tag {
    display: inline-block;
    background: var(--orange-lt);
    color: var(--orange);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
}

.accent {
    color: var(--orange);
}

/* ── Page Loader ── */
#loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .5s, visibility .5s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange);
    animation: pulse 1s infinite;
}

.loader-bar {
    width: 180px;
    height: 4px;
    background: #e6f2ff;
    border-radius: 99px;
    margin: 16px auto 12px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    border-radius: 99px;
    animation: loadBar 2.2s ease forwards;
}

.loader-text {
    font-size: .85rem;
    color: var(--text);
}

@keyframes loadBar {
    to {
        width: 100%;
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.08);
    }
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
/* #navbar {
        background: transparent;
        transition: var(--transition);
        padding: 12px 0;
        z-index: 1000;
    } */

/* #navbar.scrolled {
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 2px 30px rgba(0, 0, 0, .08);
        backdrop-filter: blur(12px);
    } */

.ibt-logo {
    height: 52px;
    transition: var(--transition);
}

.ibt-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(217, 95, 30, .3));
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: .92rem;
    color: var(--dark);
    padding: 8px 14px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--orange);
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

#navbar:not(.scrolled) .nav-link {
    color: #fff;
}

#navbar:not(.scrolled) .navbar-toggler {
    border-color: rgba(255, 255, 255, .5);
}

.btn-call {
    /* background: var(--orange); */
    background: #1d008b;
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: .85rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-call:hover {
    /* background: #e56c00; */
    background: #1d008b;
    transform: translateY(-1px);
}

.btn-wa {
    background: var(--wa-green);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: .85rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-wa:hover {
    background: #1db954;
    transform: translateY(-1px);
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.hero-swiper,
.hero-swiper .swiper-wrapper {
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 20, 60, .6) 0%, rgba(0, 50, 120, .3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 680px;
    margin-left: 8vw;
    padding-top: 80px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-content h1 .accent {
    color: #ffb347;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--orange);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(217, 95, 30, .4);
}

.btn-hero-primary:hover {
    background: #e56c00;
    transform: translateY(-2px);
    color: #fff;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, .5);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .28);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero swiper nav */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 16px;
}

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

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--orange);
}

/* ── Hero Wave Divider (updated smooth curve) ── */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 48px;
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}

.about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(217, 95, 30, .3);
}

.badge-num {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.badge-txt {
    font-size: .78rem;
    line-height: 1.4;
    font-weight: 600;
}

.about-float-card {
    position: absolute;
    top: 24px;
    right: -20px;
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Counter Cards */
.counter-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.counter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.counter-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: .82rem;
    color: var(--text);
    margin: 4px 0 0;
    font-weight: 600;
}

/* ══════════════════════════════════════
   TOURIST PLACES
══════════════════════════════════════ */
.place-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    height: 280px;
    box-shadow: var(--shadow-sm);
}

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

.place-card:hover img {
    transform: scale(1.1);
}

.place-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 32, 39, .85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
    transition: var(--transition);
}

.place-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.place-overlay p {
    font-size: .82rem;
    opacity: .9;
    margin-bottom: 12px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(6px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    transition: var(--transition);
    width: fit-content;
}

.place-card:hover .btn-explore {
    background: rgba(255, 255, 255, .9);
    color: var(--orange);
}

.place-modal-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

/* ══════════════════════════════════════
   VEHICLES SECTION
══════════════════════════════════════ */

#vehicles {
    background: linear-gradient(135deg, #eef4ff 0%, #f9f6ff 100%);
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

/* =========================
   SECTION HEADER
========================= */

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #172554;
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-title .accent {
    color: #ff9800;
}

.section-desc {
    font-size: 15px;
    color: #667085;
    line-height: 1.7;
}

.section-tag {
    display: inline-block;

    background: rgba(255, 191, 71, 0.14);
    color: #d97706;

    padding: 8px 18px;

    border-radius: 50px;

    font-size: .8rem;
    font-weight: 700;

    margin-bottom: 16px;
}

/* =========================
   4 CARDS PER ROW
========================= */

#vehicles .col-lg-4 {
    width: 25%;
}

/* =========================
   VEHICLE CARD
========================= */

.vehicle-card {
    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 196, 0, 0.30);

    border-radius: 20px;

    padding: 14px;

    height: 100%;

    display: flex;
    flex-direction: column;

    transition: 0.35s ease;

    box-shadow: 0 6px 20px rgba(20, 40, 90, 0.08);
}

/* HOVER */

.vehicle-card:hover {
    transform: translateY(-5px);

    border-color: #ffbf47;

    box-shadow: 0 12px 28px rgba(20, 40, 90, 0.12);
}

/* =========================
   IMAGE
========================= */

.vehicle-img-wrap {
    position: relative;

    border-radius: 16px;
    overflow: hidden;

    height: 160px;

    margin-bottom: 14px;
}

.vehicle-img-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

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

/* =========================
   PRICE BADGE
========================= */

.price-badge {
    position: absolute;

    top: 10px;
    right: 10px;

    background: #ffb400;
    color: #111827;

    padding: 5px 10px;

    border-radius: 50px;

    font-size: 11px;
    font-weight: 700;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
}

/* =========================
   BODY
========================= */

.vehicle-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* TITLE */

.vehicle-body h4 {
    font-size: 1.1rem;
    font-weight: 700;

    color: #081f4d;

    margin-bottom: 8px;

    font-family: 'DM Sans', sans-serif;
}

/* =========================
   META
========================= */

.vehicle-meta {
    font-size: .78rem;
    color: #555;

    margin-bottom: 12px;

    display: flex;
    align-items: center;
}

.vehicle-meta i {
    color: #ff9800;
    margin-right: 6px;
}

/* =========================
   FEATURES
========================= */

.vehicle-features {
    list-style: none;

    padding: 0;
    margin: 0 0 16px;

    display: flex;
    flex-direction: column;

    gap: 6px;
}

.vehicle-features li {
    display: flex;
    align-items: center;

    font-size: .8rem;
    font-weight: 500;

    color: #1f2937;
}

.vehicle-features li i {
    color: #35b34a;

    font-size: .78rem;

    margin-right: 8px;
}

/* =========================
   BUTTON
========================= */

.btn-book {
    margin-top: auto;

    width: 100%;
    height: 38px;

    border-radius: 50px;

    background: linear-gradient(135deg, #071b68 0%, #04124a 100%);

    color: #fff !important;

    font-size: .8rem;
    font-weight: 600;

    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition: 0.35s ease;

    overflow: hidden;

    text-decoration: none;
}

/* BUTTON ARROW */

.btn-book::after {
    content: "→";

    font-size: 18px;

    transition: 0.3s ease;
}

/* BUTTON HOVER */

.btn-book:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(7, 27, 104, 0.22);
}

.btn-book:hover::after {
    transform: translateX(4px);
}

/* =========================
   GRID GAP
========================= */

#vehicles .row {
    row-gap: 20px;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    #vehicles .col-lg-4 {
        width: 50%;
    }

    .section-title {
        font-size: 2rem;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:576px) {

    #vehicles {
        padding: 55px 0;
    }

    #vehicles .col-lg-4 {
        width: 100%;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-desc {
        font-size: 14px;
    }

    .vehicle-card {
        border-radius: 18px;
        padding: 12px;
    }

    .vehicle-img-wrap {
        height: 180px;
    }

    .vehicle-body h4 {
        font-size: 1rem;
    }

    .vehicle-features li {
        font-size: .78rem;
    }

    .btn-book {
        height: 36px;
        font-size: .78rem;
    }

}

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
/* .why-card {
        background: #fff;
        border-radius: var(--radius);
        padding: 34px 28px;
        text-align: center;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        border: 2px solid transparent;
        height: 100%;
    }

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
        border-color: rgba(255, 122, 0, .3);
    }

    .why-icon {
        width: 72px;
        height: 72px;
        background: linear-gradient(135deg, rgba(255, 122, 0, .12), rgba(0, 123, 255, .08));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--orange);
        margin: 0 auto 20px;
        transition: var(--transition);
    }

    .why-card:hover .why-icon {
        background: var(--orange);
        color: #fff;
        transform: rotate(8deg) scale(1.08);
    }

    .why-card h5 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 10px;
    }

    .why-card p {
        font-size: .88rem;
        line-height: 1.7;
    } */
/* =========================================
   WHY CHOOSE US - MEDIUM CARD SIZE
========================================= */

#why {
    background: #f4f1eb;
    overflow: hidden;
    position: relative;
    padding: 80px 0;
}

/* ==============================
   AUTO SCROLL
============================== */

.why-scroll-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.why-scroll-track {
    display: flex;
    gap: 20px;

    width: max-content;

    animation: whyScroll 26s linear infinite;
}

.why-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes whyScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==============================
   CARD
============================== */

.why-card {
    width: 320px;

    min-height: 250px;

    background: rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 22px;

    padding: 26px;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.05);

    transition: all 0.35s ease;

    border: 1px solid rgba(255, 255, 255, 0.6);

    flex-shrink: 0;
}

.why-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.08);
}

/* ==============================
   NUMBER
============================== */

.why-number {
    position: absolute;

    top: 12px;
    right: 18px;

    font-size: 54px;

    font-weight: 800;

    color: rgba(140, 102, 255, 0.10);

    line-height: 1;
}

/* ==============================
   ICON
============================== */

.why-icon {
    width: 58px;
    height: 58px;

    border-radius: 16px;

    background: #f7f7f7;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.5rem;

    color: #2f3747;

    margin-bottom: 22px;

    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: #ff7a00;

    color: #fff;

    transform: scale(1.06);
}

/* ==============================
   TITLE
============================== */

.why-card h5 {
    font-size: 1.35rem;

    line-height: 1.4;

    font-weight: 700;

    color: #14213d;

    margin-bottom: 14px;

    font-family: 'DM Sans', sans-serif;
}

/* ==============================
   TEXT
============================== */

.why-card p {
    font-size: 0.94rem;

    line-height: 1.8;

    color: #5b6472;

    margin-bottom: 0;
}

/* ==============================
   MOBILE
============================== */

@media (max-width: 768px) {

    .why-card {
        width: 270px;
        min-height: 220px;

        padding: 22px;
    }

    .why-card h5 {
        font-size: 1.1rem;
    }

    .why-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .why-number {
        font-size: 42px;
    }

    .why-icon {
        width: 52px;
        height: 52px;

        font-size: 1.3rem;
    }
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */




/* ══════════════════════════════════════
   CONTACT / BOOKING FORM
══════════════════════════════════════ */
.booking-form-wrap {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-float {
    position: relative;
}

.form-float label {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: .85rem;
    color: var(--text);
    pointer-events: none;
    transition: var(--transition);
    background: #fff;
    padding: 0 4px;
}

.form-float .form-control:focus~label,
.form-float .form-control:not(:placeholder-shown)~label {
    top: -8px;
    left: 10px;
    font-size: .72rem;
    color: var(--orange);
}

.form-float .form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px;
    font-size: .9rem;
    transition: var(--transition);
    width: 100%;
    background: #fff;
}

.form-float .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(217, 95, 30, .08);
    outline: none;
}

.form-float select.form-control {
    cursor: pointer;
    appearance: none;
}

/* ══════════════════════════════════════
   CONTACT INFO (left column)
══════════════════════════════════════ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.contact-info-item i {
    color: var(--orange);
    font-size: 1.2rem;
    margin-top: 2px;
    width: 22px;
    text-align: center;
}

.contact-info-item strong {
    font-size: .85rem;
    color: var(--dark);
    display: block;
}

.contact-info-item p {
    font-size: .85rem;
    margin: 0;
}

.btn-submit {
    background: linear-gradient(135deg, var(--orange), #ff9d44);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, .4);
}

.btn-wa-form {
    background: var(--wa-green);
    color: #fff;
    border-radius: 50px;
    padding: 14px;
    font-weight: 600;
    font-size: .95rem;
    text-align: center;
    transition: var(--transition);
    display: block;
}

.btn-wa-form:hover {
    background: #1db954;
    transform: translateY(-2px);
    color: #fff;
}

/* ══════════════════════════════════════
   MAP SECTION
══════════════════════════════════════ */
.map-section {
    background: var(--light-bg);
}

.map-info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    height: 100%;
    border-left: 4px solid var(--orange);
}

.map-info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.map-info-card .brand-tag {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.map-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.map-detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--orange-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: .95rem;
    flex-shrink: 0;
}

.map-detail-row strong {
    font-size: .82rem;
    color: var(--dark);
    display: block;
}

.map-detail-row p {
    font-size: .85rem;
    color: var(--text);
    margin: 2px 0 0;
}

.map-detail-row a {
    color: var(--blue);
    font-weight: 600;
}

.map-detail-row a:hover {
    color: var(--orange);
}

.map-embed-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 420px;
    border: 3px solid #fff;
}

.map-embed-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    display: block;
}

/* Directions button */
.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: .88rem;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 20px;
}

.btn-directions:hover {
    background: var(--blue-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
    background: #f0f4f8;
    border-top: 1px solid var(--border);
    padding: 70px 0 0;
}

.footer-logo {
    height: 100px;
}

.footer-desc {
    font-size: .85rem;
    color: var(--text);
    line-height: 1.8;
}

.footer-heading {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    font-size: .9rem;
    letter-spacing: .5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    font-size: .85rem;
    color: var(--text);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 123, 255, .08);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact p {
    font-size: .82rem;
    color: var(--text);
    margin-bottom: 6px;
}

.footer-contact i {
    color: var(--orange);
    width: 16px;
}

.newsletter-form input.form-control {
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    padding: 10px 14px;
    font-size: .85rem;
}

.newsletter-form input.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(217, 95, 30, .1);
    outline: none;
}

.btn-nl {
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: .85rem;
    transition: var(--transition);
}

.btn-nl:hover {
    background: #c0521a;
    color: #fff;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid var(--border);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: .82rem;
    color: var(--text);
    margin: 0;
}

/* ══════════════════════════════════════
   FLOATING ACTION BUTTONS
══════════════════════════════════════ */
.fab-btn {
    position: fixed;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    transition: var(--transition);
    z-index: 999;
}

.fab-btn:hover {
    transform: translateY(-4px) scale(1.1);
}

.fab-wa {
    background: var(--wa-green);
    color: #fff;
    bottom: 160px;
    right: 22px;
}

.fab-call {
    background: var(--blue);
    color: #fff;
    bottom: 100px;
    right: 22px;
}

.fab-top {
    background: var(--orange);
    color: #fff;
    bottom: 40px;
    right: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.fab-top.visible {
    opacity: 1;
    pointer-events: all;
}

/* ── Success Toast ── */
.success-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #22c55e;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, .4);
    z-index: 9999;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.success-toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ── Modals ── */
.place-modal-content,
.review-modal-content {
    border-radius: var(--radius) !important;
}

.form-control.is-invalid {
    border-color: #ef4444 !important;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, .98);
        border-radius: var(--radius);
        padding: 20px;
        margin-top: 12px;
        box-shadow: var(--shadow-md);
    }

    #navbar:not(.scrolled) .nav-link {
        color: var(--dark);
    }

    .nav-btns {
        margin-top: 12px;
    }

    .hero-content {
        margin-left: 5vw;
        margin-right: 5vw;
    }

    .about-badge {
        left: 10px;
        bottom: -16px;
    }

    .about-float-card {
        right: 10px;
    }

    .map-embed-wrap {
        min-height: 320px;
    }

    .map-embed-wrap iframe {
        min-height: 320px;
    }

    .map-info-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 60px 0;
    }

    .about-main-img {
        height: 320px;
    }

    .booking-form-wrap {
        padding: 24px 16px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-btns .btn-hero-primary,
    .hero-btns .btn-hero-outline {
        padding: 12px 22px;
        font-size: .88rem;
    }

    .ibt-logo {
        height: 40px;
    }

    .map-embed-wrap,
    .map-embed-wrap iframe {
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 70px;
    }

    .hero-content p {
        font-size: .95rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .booking-form-wrap {
        padding: 20px 14px;
    }

    .btn-submit,
    .btn-wa-form {
        font-size: .88rem;
        padding: 12px;
    }

    .fab-wa {
        bottom: 145px;
        right: 14px;
    }

    .fab-call {
        bottom: 88px;
        right: 14px;
    }

    .fab-top {
        bottom: 30px;
        right: 14px;
    }

    .review-card {
        padding: 20px;
    }

    .map-info-card {
        padding: 22px 18px;
    }
}

/* =========================================
   NAVBAR
========================================= */

.custom-navbar {
    top: 18px;
    transition: all 0.4s ease;
    z-index: 999;
}

.custom-navbar .container {
    background: rgba(18, 30, 45, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 70px;

    padding: 0px 26px;

    transition: all 0.4s ease;

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15);
}


/* Scroll White Navbar */
.custom-navbar.scrolled .container {
    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(16px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);
}


/* =========================================
   LOGO
========================================= */

.ibt-logo {
    width: 172px;
    height: 62px;
    object-fit: contain;
    /* border-radius: 50%; */
}

.logo-text h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.logo-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: -2px;
}

/* Scroll Text Color */

.custom-navbar.scrolled .logo-text h5,
.custom-navbar.scrolled .nav-link {
    color: #111 !important;
}

.custom-navbar.scrolled .logo-text span {
    color: #666;
}


/* =========================================
   MENU
========================================= */

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 16px !important;
    transition: 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00c37a !important;
}


/* =========================================
   BOOK BUTTON
========================================= */

.book-btn {
    background: linear-gradient(135deg, #00c37a, #009d63);

    color: #fff;
    text-decoration: none;

    padding: 14px 32px;

    border-radius: 40px;

    font-weight: 700;
    font-size: 15px;

    transition: all 0.3s ease;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.book-btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 4px 10px rgba(0, 195, 122, 0.18);

    color: #fff;
}


/* =========================================
   HAMBURGER
========================================= */

.custom-toggler {
    border: none;
    box-shadow: none !important;
    padding: 0;
}

.custom-toggler span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 10px;
}

.custom-navbar.scrolled .custom-toggler span {
    background: #111;
}


/* =========================================
   MOBILE MENU
========================================= */

@media (max-width: 991px) {

    .custom-navbar .container {
        border-radius: 24px;
        padding: 14px 18px;
        border-radius: 50px;
    }

    .navbar-collapse {
        margin-top: 18px;

        background: rgba(18, 30, 45, 0.92);

        backdrop-filter: blur(20px);

        border-radius: 24px;

        padding: 20px;
    }

    .custom-navbar.scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.96);
    }

    .navbar-nav {
        gap: 2px;
        align-items: flex-start !important;
    }

    .nav-link {
        width: 100%;
        padding: 12px 0 !important;
    }

    .nav-btns {
        margin-top: 14px;
        width: 100%;
    }

    .book-btn {
        width: 100%;
    }

    .logo-text h5 {
        font-size: 18px;
    }

    .logo-text span {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .ibt-logo {
        width: 100px;
        height: 50px;
    }
}

/* =========================
   MOBILE NAVBAR FIX
========================= */

@media (max-width: 576px) {

    .custom-navbar {
        width: 100%;
        left: 0;
        right: 0;
        padding: 0 10px;
    }

    .custom-navbar .container {
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        margin: 0 auto;
        border-radius: 50px;
    }

    .navbar {
        overflow-x: hidden;
    }

    body,
    html {
        overflow-x: hidden;
    }

    .ibt-logo {
        width: 100px;
        height: 42px;
    }

    .navbar-collapse {
        width: 100%;
    }
}

/* tour section  */
/* =========================
   TOUR SECTION
========================= */

.tour-section {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}

/* =========================
   TOP HEADER
========================= */

.tour-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.tour-subtitle {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #eaf8ef;
    color: #1f9d55;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.tour-header h2 {
    font-size: 46px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.2;
}

.tour-header h2 span {
    color: #ff7a00;
}

.tour-header p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* =========================
   SLIDER
========================= */

.tour-slider {
    display: flex;
    gap: 24px;
    width: max-content;

    /* AUTO MOVING */
    animation: scrollTours 45s linear infinite;
}

/* STOP ON HOVER */
.tour-slider:hover {
    animation-play-state: paused;
}

/* =========================
   CARD
========================= */

.tour-card {
    position: relative;
    width: 290px;
    height: 380px;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
}

/* CARD HOVER */
.tour-card:hover {
    transform: translateY(-8px);
}

/* =========================
   IMAGE
========================= */

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.tour-card:hover img {
    transform: scale(1.08);
}

/* =========================
   DARK OVERLAY
========================= */

.tour-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.15));
}

/* =========================
   RATING BADGE
========================= */

.rating-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;

    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 8px 14px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* =========================
   CONTENT
========================= */

.tour-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0px;
    z-index: 5;
    transition: 0.4s ease;
}

/* GLASS BLUR BACKGROUND */

.tour-content::before {
    content: "";
    position: absolute;
    inset: -16px;

    background: rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 22px;

    opacity: 0;
    transition: 0.4s ease;

    z-index: -1;
}

/* SHOW BLUR ON HOVER */

.tour-card:hover .tour-content::before {
    opacity: 1;
}

/* =========================
   TITLE
========================= */

.tour-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #fff;
}

/* =========================
   DESCRIPTION
========================= */

.tour-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.92);

    opacity: 0;
    transform: translateY(20px);

    transition: 0.4s ease;
}

/* =========================
   BUTTON
========================= */

.tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #25D366;
    color: #fff;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    opacity: 0;
    transform: translateY(20px);

    transition: 0.4s ease;
}

/* =========================
   HOVER EFFECTS
========================= */

.tour-card:hover .tour-content {
    bottom: 26px;
}

.tour-card:hover .tour-content p,
.tour-card:hover .tour-btn {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   AUTO MOVING ANIMATION
========================= */

@keyframes scrollTours {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

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

@media(max-width:768px) {

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

    .tour-header h2 {
        font-size: 32px;
    }

    .tour-header p {
        font-size: 14px;
    }

    .tour-card {
        width: 240px;
        height: 320px;
    }

    .tour-content h2 {
        font-size: 21px;
    }

    .tour-content p {
        font-size: 13px;
    }

}

/* =========================
   TOUR SECTION
========================= */

.tour-section {
    width: 100%;
    padding: 40px 0 80px 0;
    /* top right bottom left */
    overflow: hidden;
    background: #fff;
    position: relative;
}

/* =========================
   HEADER
========================= */

.tour-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.tour-subtitle {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #eaf8ef;
    color: #1f9d55;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.tour-header h2 {
    font-size: 46px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.tour-header h2 span {
    color: #ff7a00;
}

.tour-header p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* =========================
   SLIDER
========================= */

.tour-slider {
    display: flex;
    gap: 24px;
    width: max-content;

    animation: scrollTours 45s linear infinite;
}

/* STOP ANIMATION ON HOVER */

.tour-slider:hover {
    animation-play-state: paused;
}

/* =========================
   CARD
========================= */

.tour-card {
    position: relative;
    width: 290px;
    height: 380px;

    border-radius: 28px;
    overflow: hidden;

    flex-shrink: 0;

    text-decoration: none;
    color: #fff;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    transition: 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
}

/* =========================
   IMAGE
========================= */

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

    transition: 0.6s ease;
}

.tour-card:hover img {
    transform: scale(1.08);
}

/* =========================
   OVERLAY
========================= */

.tour-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.15));
}

/* =========================
   RATING
========================= */

.rating-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;

    background: rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 8px 14px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* =========================
   CONTENT
========================= */

.tour-content {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: -10px;

    z-index: 5;
}

/* TITLE */

.tour-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #fff;
}

/* DESCRIPTION - ALWAYS SHOW */

.tour-content p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);

    margin-bottom: 0;

    display: block;
    opacity: 1;
    visibility: visible;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #25D366;
    color: #fff;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    margin-top: 15px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: 0.4s ease;
}

/* SHOW BUTTON ONLY ON HOVER */

.tour-card:hover .tour-btn {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

/* =========================
   AUTO SLIDER ANIMATION
========================= */

@keyframes scrollTours {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

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

    .tour-header h2 {
        font-size: 32px;
    }

    .tour-header p {
        font-size: 14px;
    }

    .tour-card {
        width: 240px;
        height: 320px;
    }

    .tour-content h2 {
        font-size: 21px;
    }

    .tour-content p {
        font-size: 13px;
    }

}

/* =========================
   INSTAGRAM SECTION
========================= */

/* ============================================================
   INSTAGRAM SECTION — insta-section.css
   Copy into your frontassets/css/ and link in layout
   ============================================================ */

/* ── SECTION ─────────────────────────────────────────────── */
.insta-section {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 45%, #0a2d6e 100%);
    padding: 90px 60px;
    overflow: hidden;
    position: relative;
}

.insta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 15%, rgba(255, 255, 255, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.insta-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}

/* ── LEFT PANEL ───────────────────────────────────────────── */
.insta-left {
    position: relative;
    z-index: 2;
}

/* Follow pill */
.insta-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 22px 8px 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: background 0.25s, transform 0.25s;
    backdrop-filter: blur(6px);
}

.insta-pill:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.insta-pill-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

/* Heading */
.insta-heading {
    margin: 40px 0 16px;
    font-size: 62px;
    line-height: 1.08;
    font-weight: 300;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -1px;
}

.insta-heading strong {
    font-weight: 700;
    display: block;
}

/* Sub text */
.insta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    max-width: 280px;
    margin-bottom: 40px;
}

/* Controls row */
.insta-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.insta-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s, color 0.22s, transform 0.18s;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.insta-btn:hover {
    background: #fff;
    color: #0d47a1;
    transform: scale(1.08);
}

.insta-btn:active {
    transform: scale(0.95);
}

.insta-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1px;
    min-width: 48px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

/* Dots */
.insta-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.insta-dot {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width 0.3s, background 0.3s;
    width: 6px;
}

.insta-dot.is-active {
    width: 22px;
    background: #fff;
}

/* ── RIGHT SLIDER ─────────────────────────────────────────── */
.insta-right {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* Edge fade masks */
.insta-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 4;
    pointer-events: none;
}

.insta-fade--left {
    left: 0;
    background: linear-gradient(90deg, rgba(13, 71, 161, 0.85), transparent);
}

.insta-fade--right {
    right: 0;
    background: linear-gradient(-90deg, rgba(10, 45, 110, 0.85), transparent);
}

/* Track */
.insta-track {
    display: flex;
    gap: 20px;
    width: max-content;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Cards */
.insta-card {
    width: 240px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

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

.insta-card:hover img {
    transform: scale(1.06);
}

/* Card overlay (shows on hover) */
.insta-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

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

.insta-card-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.insta-card-label i {
    color: #ee2a7b;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .insta-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .insta-left {
        text-align: center;
    }

    .insta-sub {
        max-width: 100%;
    }

    .insta-controls {
        justify-content: center;
    }

    .insta-dots {
        justify-content: center;
    }

    .insta-heading {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .insta-section {
        padding: 70px 24px;
    }

    .insta-heading {
        font-size: 42px;
        margin: 30px 0 12px;
    }

    .insta-card {
        width: 200px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .insta-heading {
        font-size: 34px;
    }

    .insta-card {
        width: 170px;
        height: 260px;
    }

    .insta-btn {
        width: 44px;
        height: 44px;
        font-size: 15px;
    }
}

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .insta-track {
        transition: none;
    }

    .insta-card img {
        transition: none;
    }
}
