/* Clean, validated stylesheet using the requested palette
   Palette: #777C6D, #B7B89F, #CBCBCB, #EEEEEE, #19183B, #A1C2BD
*/

:root {
    --tone: #777C6D;
    /* olive-gray */
    --secondary: #B7B89F;
    /* sand beige */
    --muted: #CBCBCB;
    /* light gray */
    --bg: #EEEEEE;
    /* page background */
    --primary: #19183B;
    /* deep dark */
    --accent: #A1C2BD;
    /* muted teal */
    --text: #19183B;
}

html,
body {
    height: 100%;
}

.brand{
    color:#19183B ;
}
body {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text) !important
}

.brand-icon {
    color: var(--accent)
}

/* ------------------------------------------------------------------ */
/* Hero / Landing                                                      */
/* ------------------------------------------------------------------ */
/* .hero-section {
    min-height: 500px;
    position: relative;
    overflow: hidden
}

.hero-landing {
    position: relative;
    padding: 70px 30px 40px
}

.hero-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px 0
}

.hero-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    min-height: 360px
}

.hero-left {
    flex: 1;
    z-index: 3
}

.hero-right {
    flex: 0 0 420px;
    max-width: 420px
}

.hero-right.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px
}

.hero-subtitle {
    color: rgba(25, 24, 59, 0.85);
    max-width: 720px
}

.hero-right .hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(10, 20, 30, 0.06);
    transform: translateY(-60px);
    transition: transform .2s ease, box-shadow .2s ease;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(6px)
}

.hero-right .hero-card:hover {
    transform: translateY(-66px);
    box-shadow: 0 18px 40px rgba(10, 20, 30, 0.12)
}

.hero-right .form-control {
    border-radius: 8px;
    padding: 10px 12px
} */

/* ------------------------------------------------------------------ */
/* Why Choose / Features                                                */
/* ------------------------------------------------------------------ */
/* .why-choose-section {
    padding: 60px 0;
    background: var(--bg)
}

.feature-compact {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 8px
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
    min-width: 110px
}

.pill .pill-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 60%);
    color: #fff;
    border-radius: 8px
}

.pill .pill-label {
    font-weight: 600;
    font-size: .95rem;
    color: var(--text)
}

.feature-details {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.feature-details .detail {
    padding: 10px 6px
}

@media(max-width:768px) {
    .feature-details {
        display: none
    }

    .feature-compact {
        justify-content: space-between
    }

    .pill {
        flex: 1 1 48%;
        justify-content: flex-start
    }

    .pill .pill-label {
        font-size: .9rem
    }
}

@media(min-width:769px) {
    .pill {
        background: transparent;
        border: none
    }
} */

/* ------------------------------------------------------------------ */
/* Plan steps (compact)                                                 */
/* ------------------------------------------------------------------ */
.plan-section {
    padding: 40px 0
}

.plan-compact {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center
}

.plan-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--muted);
    min-width: 150px
}

.plan-pill .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 60%);
    color: #fff;
    border-radius: 8px
}

.plan-pill .plan-label {
    font-weight: 700;
    color: var(--primary)
}

@media(max-width:768px) {
    .plan-pill {
        flex: 1 1 48%;
    }
}

/* ------------------------------------------------------------------ */
/* Booking / Tabs                                                       */
/* ------------------------------------------------------------------ */
.booking-section {
    padding: 60px 0
}

.tab-buttons {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden
}

.tab-btn {
    flex: 1;
    padding: 12px 18px;
    background: var(--muted);
    border: none;
    cursor: pointer;
    font-weight: 600
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff
}

.tab-content {
    display: none;
    background: #fff;
    padding: 18px;
    border-radius: 10px
}

.tab-content.active {
    display: block
}

.form-control {
    border-radius: 8px;
    border: 2px solid var(--muted);
    padding: 12px 15px
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .18rem rgba(25, 24, 59, 0.08)
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    color: #fff
}

/* ------------------------------------------------------------------ */
/* About & Footer                                                       */
/* ------------------------------------------------------------------ */
/* .about-section {
    padding: 60px 0;
    background: #f8f9fa
}

.footer {
    background: var(--primary);
    color: var(--secondary);
    padding: 40px 0;
    text-align: center
} */

/* ------------------------------------------------------------------ */
/* Responsive rules                                                      */
/* ------------------------------------------------------------------ */
@media(max-width:992px) {
    .hero-inner {
        flex-direction: column
    }

    .hero-right {
        width: 100%;
        order: 2
    }

    .hero-left {
        order: 1
    }

    .hero-right .hero-card {
        transform: translateY(-40px)
    }

    .feature-compact {
        gap: 8px
    }
}

@media(max-width:576px) {
    .hero-title {
        font-size: 1.6rem
    }

    .hero-right .hero-card {
        transform: translateY(-20px);
        padding: 14px
    }

    .plan-pill {
        width: 100%
    }

    .pill {
        flex: 1 1 100%;
    }

    .feature-compact {
        gap: 6px
    }
}