/* =========================================
   DILEEP TOURS & TRAVELS
   MAIN STYLESHEET
========================================= */


/* =========================================
   ROOT
========================================= */

:root {

    --navy: #0b1220;

    --navy-light: #111b2e;

    --gold: #c7a56a;

    --gold-light: #dfc28b;

    --white: #ffffff;

    --off-white: #f6f5f2;

    --text: #161616;

    --muted: #6b7280;

    --border: rgba(255,255,255,0.14);

    --container: 1280px;

    --transition: 0.35s ease;

}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Manrope", sans-serif;

    color: var(--text);

    background: var(--off-white);

    line-height: 1.6;

    overflow-x: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
select {

    font: inherit;

}


/* =========================================
   CONTAINER
========================================= */

.container {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

}


/* =========================================
   HEADER
========================================= */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    color: var(--white);

    transition:
        background var(--transition),
        backdrop-filter var(--transition),
        box-shadow var(--transition);

}


.site-header.scrolled {

    background: rgba(11, 18, 32, 0.94);

    backdrop-filter: blur(16px);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.15);

}


.header-container {

    min-height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


/* =========================================
   BRAND
========================================= */

.brand {

    display: flex;

    flex-direction: column;

    line-height: 1;

    flex-shrink: 0;

}


.brand-main {

    font-size: 25px;

    font-weight: 800;

    letter-spacing: 0.16em;

}


.brand-sub {

    margin-top: 7px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.28em;

    color: var(--gold-light);

}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

}


.main-nav a {

    position: relative;

    font-size: 13px;

    font-weight: 600;

    color: rgba(255,255,255,0.84);

    transition: color var(--transition);

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--gold);

    transition: width var(--transition);

}


.main-nav a:hover {

    color: var(--white);

}


.main-nav a:hover::after {

    width: 100%;

}


/* =========================================
   HEADER CTA
========================================= */

.header-cta {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 20px;

    background: var(--gold);

    color: var(--navy);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    transition:
        transform var(--transition),
        background var(--transition);

}


.header-cta:hover {

    background: var(--gold-light);

    transform: translateY(-2px);

}


.header-cta .arrow {

    font-size: 17px;

}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-button {

    display: none;

    width: 42px;

    height: 42px;

    border: 1px solid rgba(255,255,255,0.2);

    background: rgba(0,0,0,0.15);

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.mobile-menu-button span {

    width: 18px;

    height: 1px;

    background: var(--white);

}


/* =========================================
   MOBILE NAV
========================================= */

.mobile-nav {

    display: none;

}


/* =========================================
   HERO
========================================= */

.hero {

    position: relative;

    min-height: 92vh;

    display: flex;

    align-items: center;

    color: var(--white);

    overflow: hidden;

}


.hero-background {

    position: absolute;

    inset: 0;

    background-image:
        url("../assets/images/hero/dileep-tours-hero.webp");

    background-size: cover;

    background-position: center center;

    transform: scale(1.02);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,10,18,0.94) 0%,
            rgba(5,10,18,0.76) 34%,
            rgba(5,10,18,0.20) 72%,
            rgba(5,10,18,0.12) 100%
        );

}


.hero-container {

    position: relative;

    z-index: 2;

    padding-top: 120px;

    padding-bottom: 90px;

}


.hero-content {

    max-width: 700px;

}


/* =========================================
   EYEBROW
========================================= */

.eyebrow {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.18em;

}


.eyebrow-line {

    width: 42px;

    height: 1px;

    background: var(--gold);

}


/* =========================================
   HERO TITLE
========================================= */

.hero h1 {

    max-width: 760px;

    font-family: "DM Serif Display", serif;

    font-size: clamp(
        56px,
        7vw,
        94px
    );

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.035em;

}


.hero h1 span {

    color: var(--gold-light);

}


/* =========================================
   HERO DESCRIPTION
========================================= */

.hero-description {

    max-width: 570px;

    margin-top: 30px;

    color: rgba(255,255,255,0.78);

    font-size: 17px;

    line-height: 1.75;

}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 38px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    min-height: 54px;

    padding: 0 25px;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);

}


.btn span {

    font-size: 18px;

}


.btn-primary {

    background: var(--gold);

    color: var(--navy);

}


.btn-primary:hover {

    background: var(--gold-light);

    transform: translateY(-2px);

}


.btn-outline {

    border: 1px solid rgba(255,255,255,0.45);

    color: var(--white);

    background: rgba(255,255,255,0.04);

    backdrop-filter: blur(8px);

}


.btn-outline:hover {

    background: var(--white);

    color: var(--navy);

    transform: translateY(-2px);

}


/* =========================================
   HERO TRUST
========================================= */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 60px;

}


.trust-item {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.trust-item strong {

    font-size: 17px;

    font-weight: 800;

}


.trust-item span {

    font-size: 10px;

    color: rgba(255,255,255,0.6);

    text-transform: uppercase;

    letter-spacing: 0.08em;

}


.trust-divider {

    width: 1px;

    height: 34px;

    background: rgba(255,255,255,0.2);

}


/* =========================================
   HERO SCROLL
========================================= */

.hero-scroll {

    position: absolute;

    right: 40px;

    bottom: 35px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 14px;

    transform: rotate(90deg);

    transform-origin: right center;

    font-size: 9px;

    letter-spacing: 0.18em;

    color: rgba(255,255,255,0.55);

}


.scroll-line {

    width: 45px;

    height: 1px;

    background: var(--gold);

}


/* =========================================
   BOOKING SECTION
========================================= */

.booking-section {

    position: relative;

    z-index: 10;

    margin-top: -65px;

}


.booking-card {

    padding: 32px;

    background: var(--white);

    box-shadow:
        0 25px 70px rgba(11,18,32,0.14);

    border: 1px solid rgba(11,18,32,0.06);

}


.booking-heading {

    margin-bottom: 25px;

}


.booking-label {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.18em;

}


.booking-heading h2 {

    margin-top: 5px;

    font-family: "DM Serif Display", serif;

    font-size: 34px;

    font-weight: 400;

    line-height: 1.1;

}


.booking-heading p {

    margin-top: 6px;

    color: var(--muted);

    font-size: 13px;

}


.booking-form {

    display: grid;

    grid-template-columns:
        1.2fr
        1.2fr
        0.8fr
        0.7fr
        auto;

    gap: 12px;

    align-items: end;

}


.form-field {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.form-field label {

    font-size: 10px;

    font-weight: 800;

    color: #4b5563;

    text-transform: uppercase;

    letter-spacing: 0.08em;

}


.form-field input,
.form-field select {

    width: 100%;

    height: 52px;

    padding: 0 15px;

    border: 1px solid #e5e7eb;

    background: #fafafa;

    color: var(--text);

    outline: none;

    transition:
        border-color var(--transition),
        background var(--transition);

}


.form-field input:focus,
.form-field select:focus {

    border-color: var(--gold);

    background: var(--white);

}


.form-field input::placeholder {

    color: #9ca3af;

}


.booking-submit {

    height: 52px;

    padding: 0 23px;

    border: none;

    background: var(--navy);

    color: var(--white);

    cursor: pointer;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    white-space: nowrap;

    transition:
        background var(--transition),
        transform var(--transition);

}


.booking-submit span {

    margin-left: 10px;

    font-size: 16px;

}


.booking-submit:hover {

    background: #17243a;

    transform: translateY(-2px);

}


/* =========================================
   TEMPORARY COMING SECTION
========================================= */

.coming-section {

    min-height: 400px;

    padding: 130px 0;

    background: var(--navy);

    color: var(--white);

}


.coming-section span {

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.18em;

}


.coming-section h2 {

    max-width: 700px;

    margin-top: 15px;

    font-family: "DM Serif Display", serif;

    font-size: 60px;

    font-weight: 400;

    line-height: 1;

}

/* =========================
   CHOOSE YOUR JOURNEY
========================= */

.journey-section {
    background: #f6f5f2;
    padding: 120px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-heading .eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #b18b4d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0 0 18px;
    color: #0b1220;
    font-family: "DM Serif Display", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    font-weight: 400;
}

.section-heading p {
    max-width: 620px;
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.journey-card {
    min-height: 310px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 38px;
    background: #0b1220;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-card-large {
    grid-row: span 2;
    min-height: 638px;
}

.journey-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(11,18,32,0.05) 20%,
            rgba(11,18,32,0.95) 100%
        );
}

.journey-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(11,18,32,0.15);
}

.journey-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.journey-content span {
    display: block;
    margin-bottom: 35px;
    color: #d5b477;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.journey-content h3 {
    margin: 0 0 12px;
    font-family: "DM Serif Display", serif;
    font-size: 34px;
    font-weight: 400;
}

.journey-content p {
    max-width: 430px;
    margin: 0 0 24px;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.7;
}

.journey-content strong {
    color: #d5b477;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================
   AIRPORT TRANSFER
========================= */

.airport-section {
    background: #ffffff;
    padding: 130px 0;
}

.airport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.airport-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #0b1220;
}

.airport-image img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    display: block;
    object-fit: cover;
}

.airport-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    padding: 22px 28px;
    background: #c7a56a;
    color: #0b1220;
    display: flex;
    flex-direction: column;
}

.airport-badge strong {
    font-family: "DM Serif Display", serif;
    font-size: 34px;
    font-weight: 400;
}

.airport-badge span {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.airport-content .eyebrow {
    color: #b18b4d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.airport-content h2 {
    max-width: 600px;
    margin: 22px 0;
    color: #0b1220;
    font-family: "DM Serif Display", serif;
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.05;
    font-weight: 400;
}

.airport-content > p {
    max-width: 580px;
    margin-bottom: 45px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.airport-features {
    border-top: 1px solid #ddd;
}

.airport-features > div {
    display: grid;
    grid-template-columns: 45px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.airport-features span {
    color: #b18b4d;
    font-size: 11px;
    font-weight: 800;
}

.airport-features strong {
    color: #0b1220;
    font-size: 15px;
}

.airport-features p {
    grid-column: 2;
    margin: 5px 0 0;
    color: #777;
    font-size: 13px;
}

.text-link {
    display: inline-block;
    margin-top: 35px;
    color: #0b1220;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #c7a56a;
    padding-bottom: 7px;
}

/* =========================
   FLEET SHOWCASE
========================= */

.fleet-section {
    background: #0b1220;
    padding: 130px 0;
}

.fleet-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}

.fleet-heading .eyebrow {
    color: #c7a56a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.fleet-heading h2 {
    margin: 20px 0 0;
    color: #fff;
    font-family: "DM Serif Display", serif;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1;
    font-weight: 400;
}

.fleet-heading > p {
    max-width: 480px;
    margin: 0 0 5px;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.8;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.fleet-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: #151d2c;
    text-decoration: none;
}

.fleet-card-large {
    grid-row: span 2;
    min-height: 736px;
}

.fleet-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.fleet-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11,18,32,0.05) 25%,
        rgba(11,18,32,0.9) 100%
    );
}

.fleet-card:hover img {
    transform: scale(1.05);
}

.fleet-info {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 30px;
    z-index: 2;
}

.fleet-info span {
    display: block;
    margin-bottom: 12px;
    color: #d5b477;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.fleet-info h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: "DM Serif Display", serif;
    font-size: 34px;
    font-weight: 400;
}

.fleet-info p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

.fleet-bottom {
    margin-top: 45px;
    text-align: center;
}

.fleet-button {
    display: inline-block;
    padding: 17px 28px;
    border: 1px solid #c7a56a;
    color: #c7a56a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.fleet-button:hover {
    background: #c7a56a;
    color: #0b1220;
}

/* =========================
   POPULAR ROUTES
========================= */

.routes-section {
    background: #f6f5f2;
    padding: 130px 0;
}

.routes-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}

.routes-heading .eyebrow {
    color: #a78345;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.routes-heading h2 {
    margin: 20px 0 0;
    color: #0b1220;
    font-family: "DM Serif Display", serif;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1;
    font-weight: 400;
}

.routes-heading > p {
    max-width: 480px;
    margin: 0 0 5px;
    color: #5f6570;
    font-size: 15px;
    line-height: 1.8;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.route-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    background: #151d2c;
    text-decoration: none;
}

.route-card-large {
    grid-row: span 2;
    min-height: 676px;
}

.route-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.route-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11,18,32,0.05) 25%,
        rgba(11,18,32,0.88) 100%
    );
}

.route-card:hover img {
    transform: scale(1.05);
}

.route-info {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 30px;
    z-index: 2;
}

.route-info span {
    display: block;
    margin-bottom: 12px;
    color: #d5b477;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.route-info h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: "DM Serif Display", serif;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 400;
}

.route-info p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
}

.routes-bottom {
    margin-top: 45px;
    text-align: center;
}

.routes-button {
    display: inline-block;
    padding: 17px 28px;
    border: 1px solid #a78345;
    color: #8a6933;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.routes-button:hover {
    background: #a78345;
    color: #fff;
}