@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ================================================================
   MADEKAR'S GOA — style.css
   Brand color: Cyan #00C8C8
================================================================ */

:root {
    --white: #FFFFFF;
    --off-white: #F4FAFA;
    --surface: #EAF7F7;
    --border: #D0ECEC;
    --black: #0D0D0D;
    --charcoal: #1A1A1A;
    --text: #1C1C1C;
    --muted: #3D5050;
    --faint: #7A9898;

    /* --red:          #00C8C8; */
    --red: #09a8a8;
    --red-dark: #00A3A3;
    --red-soft: #E8FAFA;
    --red-border: rgba(0, 200, 200, 0.18);
    --sh-r: 0 4px 16px rgba(0, 200, 200, 0.28);

    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-7: 32px;
    --sp-8: 40px;
    --sp-9: 48px;
    --sp-10: 64px;
    --sp-11: 30px;

    --ff-d: 'Roboto', sans-serif;
    --ff-b: 'Lora', sans-serif;

    --r-sm: 6px;
    --r: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --t: 0.26s cubic-bezier(.4, 0, .2, 1);

    --sh-xs: 0 1px 4px rgba(0, 0, 0, .06);
    --sh-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --sh-md: 0 4px 18px rgba(0, 0, 0, .10);
    --sh-lg: 0 8px 32px rgba(0, 0, 0, .13);
}

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--ff-b);
    background: var(--white);
    color: var(--text);
    max-width: 100vw;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

/* ── Sections ─────────────────────────────────────────────── */
.sec {
    padding: var(--sp-11) 0
}

.sec-sm {
    padding: var(--sp-9) 0
}

.sec-bg {
    background: var(--off-white)
}

.sec-dark {
    background: var(--charcoal)
}

/* ── Label ─────────────────────────────────────────────────── */
.label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
    color: var(--red);
    font-family: var(--ff-d)
}

.label::before {
    content: '';
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--red);
    flex-shrink: 0
}

/* ── Titles ─────────────────────────────────────────────────── */
.sec-title {
    font-family: var(--ff-d);
    font-weight: 800;
    font-size: clamp(1.7rem, 3.8vw, 2.6rem);
    line-height: 1.06;
    text-transform: uppercase;
    letter-spacing: -.3px;
    color: var(--black)
}

.sec-title .r {
    color: var(--red)
}

.sec-body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.72;
    margin-top: var(--sp-3)
}

.sec-body.ctr {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.title-rule {
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: var(--red);
    margin-top: var(--sp-4)
}

.title-rule.ctr {
    margin-left: auto;
    margin-right: auto
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-r {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--ff-d);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 22px;
    background: var(--red);
    border: 2px solid var(--red);
    border-radius: var(--r);
    color: var(--white);
    transition: var(--t);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1
}

.btn-r:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    box-shadow: var(--sh-r);
    transform: translateY(-1px)
}

.btn-k {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--ff-d);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 2px solid var(--white);
    border-radius: var(--r);
    color: var(--white);
    background: transparent;
    transition: var(--t);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1
}

.btn-k:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-1px)
}

.btn-w {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--ff-d);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--white);
    border-radius: var(--r);
    color: var(--black);
    transition: var(--t);
    cursor: pointer;
    line-height: 1
}

.btn-w:hover {
    background: var(--off-white);
    transform: translateY(-1px)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    font-family: var(--ff-d);
    text-transform: uppercase;
    letter-spacing: .5px;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--t);
    padding: 0
}

.btn-ghost:hover {
    color: var(--red-dark);
    gap: 9px
}

/* ── Scroll reveal ─────────────────────────────────────────── */
.fu {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s, transform .55s
}

.fu.vis {
    opacity: 1;
    transform: translateY(0)
}

#btt {
    opacity: 0
}

.d1 {
    transition-delay: .07s
}

.d2 {
    transition-delay: .14s
}

.d3 {
    transition-delay: .21s
}

.d4 {
    transition-delay: .28s
}

.d5 {
    transition-delay: .35s
}

.d6 {
    transition-delay: .42s
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
#nav {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    transition: box-shadow var(--t);
    z-index: 1000;
    width: 100%
}

#nav.scrolled {
    box-shadow: var(--sh-md)
}

.navbar-brand img {
    height: 50px;
    width: auto
}

.navbar-nav .nav-link {
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text) !important;
    padding: 22px 13px !important;
    position: relative;
    transition: color var(--t)
}

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

.navbar-nav .nav-link:hover {
    color: var(--black) !important
}

.navbar-nav .nav-link.active {
    color: var(--red) !important
}

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

.navbar-toggler {
    border: 1.5px solid var(--border);
    padding: 5px 9px;
    border-radius: var(--r-sm)
}

.navbar-toggler:focus {
    box-shadow: none
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817,17,17,.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

@media(max-width:991px) {
    .navbar-collapse {
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: var(--sp-4)
    }

    .navbar-nav .nav-link {
        padding: 10px 8px !important
    }

    .navbar-nav .nav-link::after {
        bottom: 2px;
        left: 8px;
        right: 8px
    }
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
#hero {
    margin-top: 73px;
    overflow: hidden
}

.hero-slide {
    position: relative;
    height: calc(100svh - 73px);
    min-height: 480px;
    max-height: 680px;
    display: flex;
    align-items: center;
    width: 100%
}

.slide-bg,
.slide-overlay {
    position: absolute;
    inset: 0
}

.slide-bg {
    background-size: cover;
    background-position: center
}

.slide-overlay {
    background: linear-gradient(110deg,
            rgba(0, 0, 0, 0.80) 0,
            rgba(0, 0, 0, 0.40) 44%,
            rgba(0, 0, 0, 0.01) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    width: 100%
}

.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    font-family: var(--ff-d);
    text-transform: uppercase;
    margin-bottom: var(--sp-4);
    color: var(--red)
}

.slide-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px
}

.slide-title {
    font-family: var(--ff-d);
    font-weight: 900;
    font-size: clamp(2.1rem, 5vw, 3rem);
    line-height: .97;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: -.5px;
    margin-bottom: var(--sp-4)
}

.slide-title .r {
    color: var(--red)
}

.slide-sub {
    font-size: 15px;
    color: var(--white);
    line-height: 1.72;
    margin-bottom: var(--sp-7);
    max-width: 420px
}

.slide-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap
}

/* Trust strip */
.trust-strip {
    display: flex;
    gap: var(--sp-5);
    flex-wrap: wrap;
    margin-top: var(--sp-6);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border)
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--ff-d);
    text-transform: uppercase;
    letter-spacing: .5px
}

.trust-item i {
    color: var(--red);
    font-size: 13px
}

/* Booking form card */
.hero-form-wrap {
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-6);
    box-shadow: var(--sh-lg);
    max-width: 360px
}

.hero-form-wrap h4 {
    font-family: var(--ff-d);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-4)
}

/* Carousel controls */
.carousel-control-next,
.carousel-control-prev {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--sh-sm);
    opacity: 1;
    transition: var(--t)
}

.carousel-control-prev {
    left: var(--sp-5)
}

.carousel-control-next {
    right: var(--sp-5)
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    background: var(--red);
    border-color: var(--red)
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 14px;
    height: 14px;
    filter: invert(1) brightness(0);
    transition: filter var(--t)
}

.carousel-control-next:hover .carousel-control-next-icon,
.carousel-control-prev:hover .carousel-control-prev-icon {
    filter: brightness(100)
}

.carousel-indicators {
    bottom: var(--sp-5);
    margin: 0;
    gap: 5px
}

.carousel-indicators [data-bs-target] {
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: rgba(0, 0, 0, .18);
    border: none;
    opacity: 1;
    transition: var(--t)
}

.carousel-indicators .active {
    width: 42px;
    background: var(--red)
}

/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */
.about-img-wrap {
    position: relative;
    padding: 0 var(--sp-7) var(--sp-7) 0
}

.about-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--r-xl);
    display: block
}

.about-pill {
    position: absolute;
    top: var(--sp-6);
    left: calc(-1 * var(--sp-5));
    background: var(--red);
    color: var(--white);
    border-radius: var(--r-lg);
    padding: var(--sp-4) var(--sp-5);
    text-align: center;
    box-shadow: var(--sh-r)
}

.about-pill .n {
    font-family: var(--ff-d);
    font-size: 32px;
    font-weight: 900;
    line-height: 1
}

.about-pill .l {
    font-family: var(--ff-d);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .9;
    margin-top: 2px
}

.about-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    margin-top: var(--sp-6)
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    padding: var(--sp-4);
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: var(--t)
}

.about-feat:hover {
    border-color: var(--red-border);
    box-shadow: var(--sh-sm)
}

.af-ic {
    width: 34px;
    height: 34px;
    background: var(--red-soft);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 15px;
    flex-shrink: 0;
    transition: var(--t)
}

.about-feat:hover .af-ic {
    background: var(--red);
    color: var(--white)
}

.af-t {
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black)
}

.af-d {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.5
}

@media(max-width:767px) {
    .about-main {
        height: 260px
    }

    .about-pill {
        display: none
    }

    .about-img-wrap {
        padding: 0 var(--sp-4) var(--sp-4) 0
    }
}

@media(max-width:480px) {
    .about-feats {
        grid-template-columns: 1fr
    }
}

/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--t)
}

.svc-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
    border-color: var(--red-border)
}

.svc-img {
    width: 100%;
    height: 185px;
    flex-shrink: 0;
    overflow: hidden
}

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

.svc-card:hover .svc-img img {
    transform: scale(1.05)
}

.svc-body {
    padding: var(--sp-5);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--sp-3)
}

.svc-head {
    display: flex;
    align-items: center;
    gap: var(--sp-3)
}

.svc-ic {
    width: 36px;
    height: 36px;
    background: var(--red-soft);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 17px;
    flex-shrink: 0;
    transition: var(--t)
}

.svc-card:hover .svc-ic {
    background: var(--red);
    color: var(--white)
}

.svc-title {
    font-family: var(--ff-d);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black)
}

.svc-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.68;
    flex: 1
}

/* ════════════════════════════════════════════════════════════
   FLEET
════════════════════════════════════════════════════════════ */
.fleet-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: var(--sp-7);
    padding: 0 var(--sp-3)
}

.fleet-tabs {
    display: inline-flex;
    gap: 4px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    flex-wrap: wrap;
    justify-content: center
}

.f-btn {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--ff-d);
    padding: 7px 18px;
    border-radius: 50px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--muted);
    transition: var(--t);
    line-height: 1
}

.f-btn.active {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--sh-r)
}

.f-btn:hover:not(.active) {
    color: var(--black)
}

.v-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--t)
}

.v-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-4px);
    border-color: var(--red-border)
}

.v-img-wrap {
    position: relative;
    height: 160px;
    flex-shrink: 0;
    background: var(--off-white);
    overflow: hidden
}

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

.v-card:hover .v-img {
    transform: scale(1.05)
}

.v-badge {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-3);
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
    background: var(--black);
    color: var(--white)
}

.v-badge.sc {
    background: #6f42c1
}

.v-badge.bk {
    background: #198754
}

.v-badge.lux {
    background: linear-gradient(135deg, #b8860b, #daa520)
}

.v-body {
    padding: var(--sp-4);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--sp-2)
}

.v-name {
    font-family: var(--ff-d);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1
}

.v-type {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600
}

.v-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 6px;
    padding: var(--sp-2) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.v-spec {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--text);
    font-weight: 600
}

.v-spec i {
    color: var(--red);
    font-size: 10px;
    flex-shrink: 0
}

.v-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-2);
    margin-top: auto;
    width: 100%
}

.v-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    background: var(--red);
    color: var(--white);
    font-family: var(--ff-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 8px 12px;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap
}

.v-book:hover {
    background: var(--red-dark);
    box-shadow: var(--sh-r);
    transform: translateY(-1px)
}

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════════════════ */
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-6);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--t)
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--t)
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--red-border)
}

.why-card:hover::after {
    transform: scaleX(1)
}

.why-ic {
    width: 54px;
    height: 54px;
    background: var(--red-soft);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 23px;
    margin: 0 auto var(--sp-5);
    transition: var(--t)
}

.why-card:hover .why-ic {
    background: var(--red);
    color: var(--white)
}

.why-card h5 {
    font-family: var(--ff-d);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-2);
    letter-spacing: .3px
}

.why-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65
}

/* ════════════════════════════════════════════════════════════
   NORTH / SOUTH GOA + LUXURY
════════════════════════════════════════════════════════════ */
.region-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 100%;
    transition: var(--t)
}

.region-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: var(--red-border)
}

.region-img {
    height: 220px;
    overflow: hidden
}

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

.region-card:hover .region-img img {
    transform: scale(1.05)
}

.region-body {
    padding: var(--sp-6)
}

.region-body h3 {
    font-family: var(--ff-d);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-3)
}

.region-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: var(--sp-4)
}

.region-highlights {
    list-style: none;
    padding: 0;
    margin: 0
}

.region-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
    line-height: 1.5
}

.region-highlights li i {
    color: var(--red);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0
}

/* Luxury section */
.luxury-wrap {
    background: linear-gradient(135deg, var(--charcoal) 0, #0a2020 100%);
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    overflow: hidden;
    position: relative
}

.luxury-wrap::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 200, 200, .12) 0, transparent 70%);
    pointer-events: none
}

.luxury-wrap .sec-title {
    color: var(--white)
}

.luxury-wrap .sec-body {
    color: rgba(255, 255, 255, .7)
}

.luxury-wrap .label {
    color: var(--red)
}

/* How-to-book */
.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-6);
    text-align: center;
    height: 100%;
    transition: var(--t);
    position: relative;
    overflow: hidden
}

.step-card::before {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    right: 10px;
    font-family: var(--ff-d);
    font-size: 80px;
    font-weight: 900;
    color: var(--red-soft);
    line-height: 1;
    pointer-events: none
}

.step-card:hover {
    box-shadow: var(--sh-md);
    border-color: var(--red-border);
    transform: translateY(-3px)
}

.step-ic {
    width: 52px;
    height: 52px;
    background: var(--red);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    margin: 0 auto var(--sp-4)
}

.step-card h5 {
    font-family: var(--ff-d);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-2)
}

.step-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65
}

/* Docs required */
.doc-item {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 600;
    color: var(--black)
}

.doc-item i {
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0
}

/* ════════════════════════════════════════════════════════════
   THINGS TO DO
════════════════════════════════════════════════════════════ */
.activity-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 100%;
    transition: var(--t)
}

.activity-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: var(--red-border)
}

.activity-img {
    height: 180px;
    overflow: hidden;
    position: relative
}

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

.activity-card:hover .activity-img img {
    transform: scale(1.07)
}

.activity-body {
    padding: var(--sp-4) var(--sp-5)
}

.activity-body h4 {
    font-family: var(--ff-d);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-2)
}

.activity-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65
}

/* ════════════════════════════════════════════════════════════
   LOCATIONS
════════════════════════════════════════════════════════════ */
.loc-group h4 {
    font-family: var(--ff-d);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-4);
    display: flex;
    align-items: center;
    gap: 8px
}

.loc-group h4 i {
    color: var(--red)
}

.loc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.loc-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    background: var(--red-soft);
    border: 1px solid var(--red-border);
    border-radius: 50px;
    color: var(--red);
    font-family: var(--ff-d);
    transition: var(--t);
    cursor: default
}

.loc-tag:hover {
    background: var(--red);
    color: var(--white)
}

.loc-tag i {
    font-size: 10px
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testi-set {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    padding: 4px
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-5);
    position: relative;
    overflow: hidden;
    transition: var(--t)
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-5);
    font-size: 60px;
    line-height: 1;
    color: var(--red);
    opacity: .1;
    font-family: Georgia, serif
}

.testi-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
    border-color: var(--red-border)
}

.t-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--sp-3)
}

.t-stars i {
    color: #f59e0b;
    font-size: 12px
}

.t-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.72;
    font-style: italic;
    margin-bottom: var(--sp-5)
}

.t-author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    border-top: 1px solid var(--border);
    padding-top: var(--sp-4)
}

.t-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: var(--ff-d);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.t-name {
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black)
}

.t-loc {
    font-size: 11px;
    color: var(--muted)
}

#testiCarousel .carousel-indicators {
    position: relative;
    bottom: auto;
    margin: var(--sp-6) 0 0;
    gap: 5px
}

#testiCarousel .carousel-indicators [data-bs-target] {
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: var(--border);
    border: none;
    opacity: 1;
    transition: var(--t)
}

#testiCarousel .carousel-indicators .active {
    width: 38px;
    background: var(--red)
}

@media(max-width:991px) {
    .testi-set {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:576px) {
    .testi-set {
        grid-template-columns: 1fr
    }
}

/* ════════════════════════════════════════════════════════════
   CTA BAR
════════════════════════════════════════════════════════════ */
.cta-bar {
    background: var(--black);
    border-radius: var(--r-xl);
    padding: var(--sp-7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-5);
    flex-wrap: wrap;
    margin-bottom: var(--sp-8);
    overflow: hidden;
    position: relative;
    width: 100%
}

.cta-bar::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 200, 200, .15) 0, transparent 70%);
    pointer-events: none
}

.cta-bar h3 {
    font-family: var(--ff-d);
    font-weight: 800;
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px
}

.cta-bar p {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin: 0
}

.cta-acts {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap
}

@media(max-width:767px) {
    .cta-bar {
        flex-direction: column;
        text-align: center;
        padding: var(--sp-6) var(--sp-5)
    }

    .cta-acts {
        justify-content: center;
        width: 100%
    }

    .cta-acts .btn-r,
    .cta-acts .btn-w {
        flex: 1;
        justify-content: center;
        min-width: 140px
    }
}

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.ci-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-7);
    height: 100%
}

.ci-card h4,
.cf-card h4 {
    font-family: var(--ff-d);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-6)
}

.ci-card h4 span,
.cf-card h4 span {
    color: var(--red)
}

.ci-item {
    display: flex;
    gap: var(--sp-4);
    margin-bottom: var(--sp-5)
}

.ci-item:last-of-type {
    margin-bottom: 0
}

.ci-ic {
    width: 42px;
    height: 42px;
    background: var(--red-soft);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 17px;
    flex-shrink: 0
}

.ci-item h6 {
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px
}

.ci-item a,
.ci-item p {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    line-height: 1.5
}

.ci-item a:hover {
    color: var(--red)
}

.soc-row {
    display: flex;
    gap: var(--sp-3);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border);
    margin-top: var(--sp-5);
    flex-wrap: wrap
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-d);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 14px;
    border-radius: var(--r-sm);
    color: var(--white);
    flex: 1;
    justify-content: center;
    transition: var(--t)
}

.soc-btn:hover {
    transform: translateY(-2px);
    color: var(--white)
}

.soc-btn.fb {
    background: #1877f2
}

.soc-btn.ig {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af)
}

.soc-btn.wa {
    background: #25d366
}

.cf-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-7)
}

.form-label {
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 5px;
    display: block
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 9px 13px;
    font-family: var(--ff-b);
    font-size: 14px;
    color: var(--black);
    background: var(--off-white);
    transition: border-color var(--t), box-shadow var(--t)
}

.form-control:focus,
.form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(0, 200, 200, .12);
    background: var(--white);
    outline: 0
}

.form-control::placeholder {
    color: var(--faint)
}

.invalid-feedback {
    font-size: 11px;
    font-weight: 500
}

/* ════════════════════════════════════════════════════════════
   QUICK BOOKING FORM (HERO)
════════════════════════════════════════════════════════════ */
.quick-booking-form {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: #333;
    max-width: 400px;
    margin-left: auto;
}

.quick-booking-form .form-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-d);
    text-transform: uppercase;
}

.quick-booking-form .form-title i {
    color: #ff5e00;
}

.quick-booking-form .form-label {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: var(--ff-d);
}

.quick-booking-form .form-control, 
.quick-booking-form .form-select {
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 10px 15px;
    font-size: 14px;
    background: #fdfdfd;
}

.quick-booking-form .btn-booking {
    background: #ff5e00;
    color: #fff;
    border: none;
    padding: 12px;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, background 0.3s ease;
}

.quick-booking-form .btn-booking:hover {
    background: #e05200;
    transform: translateY(-2px);
    color: #fff;
}

.quick-booking-form .whatsapp-link {
    color: #25d366;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.quick-booking-form .whatsapp-link:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .quick-booking-form {
        margin: 30px auto 0;
        max-width: 100%;
    }
    
    .hero-slide {
        height: auto;
        min-height: 800px;
        padding: 50px 0;
    }
}
.accordion-button {
    font-family: var(--ff-d);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--black);
    background: var(--white)
}

.accordion-button:not(.collapsed) {
    color: var(--red);
    background: var(--red-soft);
    box-shadow: none
}

.accordion-button::after {
    filter: none
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border)
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--r) !important;
    margin-bottom: var(--sp-3);
    overflow: hidden
}

.accordion-body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.72
}

/* ════════════════════════════════════════════════════════════
   MAP
════════════════════════════════════════════════════════════ */
.map-full-wrap {
    width: 100%;
    line-height: 0
}

.map-full-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block
}

@media(max-width:991px) {
    .map-full-wrap iframe {
        height: 340px
    }
}

@media(max-width:575px) {
    .map-full-wrap iframe {
        height: 300px
    }
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
footer {
    background: var(--black);
    padding-top: var(--sp-11)
}

.f-brand img {
    height: 48px;
    margin-bottom: var(--sp-4)
}

.f-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    max-width: 260px
}

.f-soc {
    display: flex;
    gap: var(--sp-2);
    margin-top: var(--sp-5)
}

.f-sb {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .15);
    transition: var(--t)
}

.f-sb:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px)
}

.f-col-title {
    font-family: var(--ff-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--sp-5);
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

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

.f-links li {
    margin-bottom: var(--sp-3)
}

.f-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    transition: color var(--t)
}

.f-links a i {
    font-size: 9px
}

.f-links a:hover {
    color: var(--red)
}

.f-ci {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-bottom: var(--sp-3)
}

.f-ci i {
    color: var(--red);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0
}

.f-ci a,
.f-ci span {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.5
}

.f-ci a:hover {
    color: var(--red)
}

.f-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: var(--sp-9);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: var(--sp-5) 0
}

.f-bottom p,
.f-bottom a {
    font-size: 12px;
    color: rgba(255, 255, 255, .38);
    margin: 0
}

.f-bottom a:hover {
    color: var(--red)
}

/* ════════════════════════════════════════════════════════════
   FLOATING ELEMENTS
════════════════════════════════════════════════════════════ */
.wa-btn {
    position: fixed;
    right: var(--sp-7);
    bottom: var(--sp-7);
    z-index: 999;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, .38);
    animation: pulse-g 3s ease-in-out infinite;
    transition: transform var(--t)
}

.wa-btn:hover {
    transform: scale(1.08);
    color: var(--white)
}

@keyframes pulse-g {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(37, 211, 102, .38)
    }

    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, .6), 0 0 0 8px rgba(37, 211, 102, .1)
    }
}

#btt {
    position: fixed;
    right: var(--sp-7);
    bottom: 96px;
    z-index: 998;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: none;
    cursor: pointer;
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
    opacity: 0
}

#btt.show {
    opacity: 1;
    pointer-events: all
}

#btt:hover {
    background: var(--red);
    transform: translateY(-2px)
}

@media(max-width:575px) {

    .wa-btn,
    #btt {
        right: var(--sp-5)
    }

    .wa-btn {
        bottom: var(--sp-5)
    }

    .wa-btn {
        width: 48px;
        height: 48px
    }
}

/* ════════════════════════════════════════════════════════════
   TOAST
════════════════════════════════════════════════════════════ */
.toast-container {
    z-index: 1100
}

.toast {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-size: 13px
}

.toast.bg-success {
    background: #198754 !important
}

/* ════════════════════════════════════════════════════════════
   PRICE SECTION
════════════════════════════════════════════════════════════ */
.price-intro p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8
}

.rental-plan-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-top: var(--sp-6)
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--red-soft);
    border: 1px solid var(--red-border);
    border-radius: 50px;
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .5px
}

.plan-badge i {
    font-size: 14px
}

/* ════════════════════════════════════════════════════════════
   HERO FORM
════════════════════════════════════════════════════════════ */
.hero-form-wrap {
    background: rgba(255, 255, 255, .97);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-6);
    box-shadow: var(--sh-lg);
    width: 340px;
    max-width: 100%
}

.hero-form-wrap h4 {
    font-family: var(--ff-d);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-4);
    letter-spacing: .5px
}

@media(max-width:1199px) {
    .hero-form-wrap {
        width: 300px
    }
}

@media(max-width:991px) {
    .hero-form-wrap {
        width: 100%;
        max-width: 480px
    }
}

/* ════════════════════════════════════════════════════════════
   MISC
════════════════════════════════════════════════════════════ */
section,
container,
container-fluid {
    max-width: 100%
}


/* Refined Process Styles */
.bg-gradient-dark {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.process-item {
    padding: 15px;
    border-radius: var(--r);
    transition: var(--t);
    border: 1px solid transparent;
}

.process-item:hover {
    background: var(--off-white);
    border-color: var(--red-border);
    transform: translateX(8px);
}

.step-number {
    font-family: var(--ff-d);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    opacity: 0.3;
    transition: var(--t);
    line-height: 1;
}

.process-item:hover .step-number {
    opacity: 1;
    transform: scale(1.1);
}

.rounded-4 {
    border-radius: 1.5rem !important;
}

/* Region Refinements */
.region-img-wrap {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.region-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-family: var(--ff-d);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Luxury Wrap Overrides */
.luxury-wrap {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.luxury-wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 200, 0.1) 0%, transparent 70%);
}

/* Spacing and Border Radius Utility */
.rounded-4 {
    border-radius: 1.5rem !important;
}

/* Location Section Refinements */
.loc-tag {
    background: var(--off-white);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
}

.loc-tag:hover {
    border-color: var(--red);
    color: var(--black);
    background: var(--white);
    transform: translateY(-2px);
}

.loc-tag i {
    font-size: 14px;
    color: var(--red);
}

/* Special styling for Airports/Stations */
.active-hub {
    border-color: var(--red-border);
    background: var(--red-soft);
    font-weight: 700;
    color: var(--red);
}

.rounded-4 {
    border-radius: 1.25rem !important;
}

/* Pricing Overlay Styles */
.pricing-overlay-card {
    min-height: 400px;
    display: flex;
    align-items: center;
}

.overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.position-relative.p-4 {
    z-index: 2;
    /* Ensures text stays above overlay */
}

/* Glassmorphism effect for the document card */
.doc-card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-ghost-white:hover {
    background: white;
    color: black;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Kanchi Line Styling */
.kanchi-line {
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 5px;
    background: var(--red); /* Uses your existing red variable */
    border-radius: 0 5px 5px 0;
}

/* Rounded Utility if not already in your file */
.rounded-4 { 
    border-radius: 1.25rem !important; 
}

/* Card Hover Effect */
#flexible-plans .border {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#flexible-plans .border:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}


.rounded-4 { 
    border-radius: 1.5rem !important; 
}

.border-danger {
    border-color: var(--red) !important;
}

#pricing-detail img {
    transition: transform 0.5s ease;
}

#pricing-detail:hover img {
    transform: scale(1.02);
}

#hero {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-row {
    min-height: 100%;
    align-items: center;
}

.slide-content {
    color: #fff;
    padding-right: 30px;
}

.slide-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 102, 0, 0.18);
    border: 1px solid rgba(255, 102, 0, 0.5);
    color: #ff8a00;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-size: 13px;
}

.slide-title {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 18px;
}

.slide-title .r {
    color: #ff6a00;
}

.slide-sub {
    font-size: 1.05rem;
    max-width: 620px;
    opacity: 0.95;
    margin-bottom: 24px;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 14px;
}

.slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-r, .btn-k {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.btn-r {
    background: #ff6a00;
    color: #fff;
}

.btn-k {
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.hero-form-wrap {
    background: rgba(255,255,255,0.96);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
    max-width: 470px;
    margin-left: auto;
}

.hero-form-wrap h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 22px;
    color: #111;
}

.hero-form-wrap .form-label {
    font-size: 13px;
    font-weight: 700;
    color: #7b7b7b;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-form-wrap .form-control,
.hero-form-wrap .form-select {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e4e4e4;
    box-shadow: none;
}

.bsub {
    width: 100%;
    border: none;
    background: #ff6a00;
    color: #fff;
    font-weight: 700;
    height: 50px;
    border-radius: 12px;
}

.wa-lnk {
    display: block;
    text-align: center;
    margin-top: 14px;
    color: #19b84a;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 991px) {
    .hero-slide {
        min-height: auto;
        padding: 120px 0 50px;
    }

    .slide-content {
        padding-right: 0;
        margin-bottom: 24px;
        text-align: center;
    }

    .trust-strip,
    .slide-actions {
        justify-content: center;
    }

    .hero-form-wrap {
        max-width: 100%;
    }
}
.why-best {
  padding: 60px 20px;
  background: #f9f9f9;
}

.sec-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00a86b;
  font-weight: bold;
  font-size: 18px;
}

/* Image Styling */
.why-img {
  border-radius: 12px;
  max-height: 400px;
  object-fit: cover;
}

/* Mobile Responsive */
@media(max-width: 768px){
  .why-img {
    margin-top: 30px;
  }
}