/* =========================================================
   GAGAN HOLIDAYS — COMPLETE SITE CSS
   ========================================================= */

:root {
    --green: #123f35;
    --green-dark: #0b3029;
    --green-light: #1d5a4c;
    --cream: #f7f3e9;
    --cream-dark: #eee8da;
    --white: #ffffff;
    --text: #172723;
    --muted: #66736e;
    --gold: #e99a62;
    --border: #dedbd2;
    --shadow: 0 14px 35px rgba(15, 48, 41, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   TOP BAR
   ========================================================= */

.topbar {
    background: var(--green-dark);
    color: #fff;
    font-size: 12.5px;
    padding: 8px 0;
    letter-spacing: .04em;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-inner span {
    text-transform: uppercase;
    font-weight: 600;
    opacity: .85;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: .02em;
}

/* =========================================================
   HEADER — single clean version
   ========================================================= */

.site-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e0d6;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 14px rgba(13,38,32,.06);
}

.site-header .nav-wrap {
    max-width: 1180px;
    width: calc(100% - 40px);
    margin: 0 auto;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* LOGO */
.site-header .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    text-decoration: none;
    white-space: nowrap;
}

.site-header .brand-mark {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0d2620;
    border-radius: 2px;
    color: #0d2620;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.site-header .brand-name,
.site-header .brand > span:last-child {
    color: #0d2620;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

/* NAV */
.site-header .nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    flex: 1 1 auto;
    margin-left: 26px;
    padding: 0;
}

.site-header .nav > a,
.site-header .nav .has-dropdown > a {
    display: flex;
    align-items: center;
    height: 84px;
    padding: 0;
    margin: 0;
    position: relative;
    color: #0d2620;
    font-family: "DM Sans", sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s ease;
}

.site-header .nav > a::after,
.site-header .nav .has-dropdown > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    height: 2px;
    background: #0d2620;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.site-header .nav > a:hover::after,
.site-header .nav .has-dropdown > a:hover::after {
    transform: scaleX(1);
}

.site-header .has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 84px;
    flex: 0 0 auto;
}

.site-header .has-dropdown > a::after {
    content: none;
}

/* DROPDOWN */
.site-header .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #e5e0d6;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    display: none;
    z-index: 9999;
}

.site-header .has-dropdown:hover .dropdown {
    display: block;
}

.site-header .dropdown a {
    display: block;
    padding: 10px 16px;
    color: #17241f;
    font-family: "DM Sans", sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background .12s ease, padding-left .12s ease;
}

.site-header .dropdown a:hover {
    background: #f5f2eb;
    color: #0d2620;
    padding-left: 20px;
}

/* GET QUOTE BUTTON */
.site-header .nav-cta {
    flex: 0 0 auto;
    margin-left: auto;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    background: #0d2620;
    color: #fff;
    border-radius: 3px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
}

.site-header .nav-cta:hover {
    background: #123f35;
    transform: translateY(-1px);
}

/* MOBILE TOGGLE BUTTON */
.site-header .menu-toggle {
    display: none;
    border: 1px solid #0d2620;
    background: #fff;
    color: #0d2620;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 1250px) {
    .site-header .nav {
        display: none;
    }
    .site-header .menu-toggle {
        display: flex;
    }
    .site-header .nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        padding: 14px 20px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        margin-left: 0;
        border-top: 1px solid #e5e0d6;
        box-shadow: 0 12px 25px rgba(0,0,0,.12);
        z-index: 2000;
    }
    .site-header .nav.active > a,
    .site-header .nav.active .has-dropdown > a {
        height: auto;
        padding: 13px 4px;
        justify-content: space-between;
    }
    .site-header .nav.active > a::after {
        content: none;
    }
    .site-header .nav.active .has-dropdown {
        height: auto;
        flex-direction: column;
        align-items: stretch;
    }
    .site-header .nav.active .dropdown {
        position: static;
        box-shadow: none;
        border: 0;
        padding: 0 0 6px 14px;
    }
    .site-header .nav.active .nav-cta {
        margin: 10px 0 0;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .site-header .nav-wrap {
        min-height: 70px;
        gap: 14px;
    }
    .site-header .brand-name,
    .site-header .brand > span:last-child {
        font-size: 21px;
    }
    .site-header .brand-mark {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
}

/* =========================================================
   ALERT
   ========================================================= */

.alert {
    margin: 18px auto;
    padding: 14px 18px;
    background: #e5f2ec;
    border: 1px solid #b8d6c8;
    color: var(--green-dark);
    border-radius: 5px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 610px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(5, 35, 29, .92) 0%,
            rgba(5, 35, 29, .72) 42%,
            rgba(5, 35, 29, .22) 75%,
            rgba(5, 35, 29, .15) 100%
        ),
        url("../images/hero.jpg") center center / cover no-repeat;
}

.hero-content {
    padding: 90px 0;
    color: #fff;
    max-width: 780px;
}

.eyebrow {
    margin-bottom: 18px;
    color: #f0a36b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 24px;
    max-width: 760px;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -2px;
}

.hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero p {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.88);
    font-size: 18px;
}

.actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.btn-primary {
    background: #fff;
    color: var(--green);
}

.btn-primary:hover {
    background: var(--cream);
}

.btn-dark {
    background: var(--green);
    color: #fff;
}

.btn-dark:hover {
    background: var(--green-dark);
}

.btn-outline {
    background: transparent;
    border-color: var(--green);
    color: var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: #fff;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 80px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 35px;
}

.kicker {
    margin-bottom: 7px;
    color: var(--green-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.section h2 {
    margin: 0;
    color: var(--green-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
}

.section-intro {
    max-width: 650px;
    color: var(--muted);
}

/* =========================================================
   FORM
   ========================================================= */

.form-wrap {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.field label {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    background: #fff;
    color: var(--text);
    border: 1px solid #d5d3cb;
    border-radius: 3px;
    outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green);
}

/* =========================================================
   CARDS / GRIDS
   ========================================================= */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.card {
    display: block;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(0,0,0,.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.card > img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.card .pad {
    padding: 23px;
}

.card h3 {
    margin: 7px 0 10px;
    color: var(--green-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    line-height: 1.2;
}

.card p {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 14px;
}

.meta {
    color: var(--green-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}

.mini-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
}

.mini-btn.primary {
    color: var(--green);
}

/* =========================================================
   DARK SECTIONS
   ========================================================= */

.dark-band {
    background: var(--green-dark);
    color: #fff;
}

.dark-band .kicker {
    color: #f0a36b;
}

.dark-band h2 {
    color: #fff;
}

.dark-band .card {
    background: #123f35;
    border-color: rgba(255,255,255,.12);
}

.dark-band .card h3 {
    color: #fff;
}

.dark-band .card p {
    color: #c7d3ce;
}

.dark-band .card .meta {
    color: #f0a36b;
}

.dark-band .mini-btn.primary {
    color: #fff;
}

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

.feature {
    display: flex;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 5px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.feature h3 {
    margin: 0 0 5px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 21px;
}

.feature p {
    margin: 0;
}

/* =========================================================
   GENERAL PAGE CONTENT
   ========================================================= */

.page-hero {
    padding: 80px 0;
    background: var(--green-dark);
    color: #fff;
}

.page-hero h1 {
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 700px;
    margin: 18px 0 0;
    color: #d1ddd8;
}

.content {
    max-width: 850px;
}

.content h2,
.content h3 {
    color: var(--green-dark);
    font-family: "Playfair Display", Georgia, serif;
}

.content p {
    color: var(--muted);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 75px 0 25px;
    background: var(--green-dark);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
}

.site-footer p {
    color: #bdcbc6;
}

.site-footer a {
    color: #d7e0dc;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    color: #b8c7c1;
    font-size: 13px;
}

/* =========================================================
   TABLES
   ========================================================= */

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

th,
td {
    padding: 13px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--cream-dark);
    color: var(--green-dark);
}

/* =========================================================
   RESPONSIVE (page sections, not header — header handled above)
   ========================================================= */

@media (max-width: 1200px) {
    .container {
        width: min(1160px, calc(100% - 32px));
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 560px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .container {
        width: calc(100% - 28px);
    }

    .topbar {
        font-size: 11px;
    }

    .topbar-inner span {
        display: none;
    }

    .hero {
        min-height: 520px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 55px 0;
    }

    .section-head {
        display: block;
    }

    .section-head .btn {
        margin-top: 18px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-wrap {
        padding: 20px;
    }

    .card > img {
        height: 230px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        display: block;
    }
}/* =========================================================
   GAGAN HOLIDAYS - FINAL HEADER FIX
   ========================================================= */

.site-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e0d6;
    position: relative;
    z-index: 1000;
}

.site-header .nav-wrap {
    max-width: 1380px;
    width: calc(100% - 60px);
    min-height: 84px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

/* LOGO */
.site-header .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 245px;
    margin: 0;
    padding: 0;
    text-decoration: none;
    white-space: nowrap;
}

.site-header .brand-mark {
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #123f35;
    color: #123f35;
    font-size: 12px;
    font-weight: 700;
}

.site-header .brand-name,
.site-header .brand > span:last-child,
.site-header .brand span:last-child {
    color: #123f35;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

/* NAVIGATION */
.site-header .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.site-header .nav > a,
.site-header .nav > .has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    padding: 0;
    margin: 0;
    color: #172723;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

/* DROPDOWN WRAPPER */
.site-header .has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 84px;
    flex: 0 0 auto;
}

/* REMOVE ARROW/SYMBOL FROM DESTINATIONS & CORBETT SAFARI */
.site-header .has-dropdown > a {
    font-size: 13px;
}

/* DROPDOWN */
.site-header .dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    width: 230px;
    padding: 10px 0;
    background: #fff;
    border: 1px solid #e5e0d6;
    box-shadow: 0 12px 30px rgba(13, 38, 32, .12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.site-header .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-header .dropdown a {
    display: block;
    padding: 11px 18px;
    color: #172723;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
}

.site-header .dropdown a:hover {
    background: #f7f3e9;
    color: #123f35;
}

/* GET QUOTE */
.site-header .nav .nav-cta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 101px;
    height: 52px;
    padding: 0 20px;
    margin: 0 0 0 4px;
    background: #123f35;
    color: #fff;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

.site-header .nav .nav-cta:hover {
    background: #0b3029;
    color: #fff;
}

/* MENU BUTTON */
.site-header .menu-toggle {
    display: none;
}

/* TABLET */
@media (max-width: 1200px) {
    .site-header .nav-wrap {
        width: calc(100% - 40px);
        gap: 20px;
    }

    .site-header .brand {
        min-width: 220px;
    }

    .site-header .nav {
        gap: 16px;
    }

    .site-header .nav > a,
    .site-header .nav > .has-dropdown > a {
        font-size: 12px;
    }

    .site-header .nav .nav-cta {
        min-width: 92px;
        padding: 0 14px;
    }
}

/* MOBILE */
@media (max-width: 900px) {
    .site-header .nav-wrap {
        min-height: 70px;
        width: calc(100% - 30px);
    }

    .site-header .brand {
        min-width: 0;
    }

    .site-header .brand-name,
    .site-header .brand > span:last-child,
    .site-header .brand span:last-child {
        font-size: 23px;
    }

    .site-header .brand-mark {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .site-header .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid #123f35;
        background: #fff;
        color: #123f35;
        font-size: 20px;
        cursor: pointer;
    }

    .site-header .nav {
        display: none;
    }
}/* ===== NAV TEXT SIZE & BOLD FIX ===== */

.site-header .nav > a,
.site-header .nav > .has-dropdown > a {
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

/* Navigation ke beech proper gap */
.site-header .nav {
    gap: 24px !important;
}

/* Get Quote bhi same size aur bold */
.site-header .nav .nav-cta {
    font-size: 15px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}