/* =========================================================
   GLOBAL
========================================================= */

:root {
    --primary: #e85d04;
    --primary-dark: #c94d00;
    --secondary: #ffba08;
    --dark: #172033;
    --text: #263142;
    --muted: #6b7280;
    --light: #fff8f1;
    --border: #ececec;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section {
    padding: 90px 0;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
}

.section-label {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-text {
    color: var(--muted);
    line-height: 1.8;
}


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

.top-bar {
    background: #111827;
    color: #fff;
    font-size: 13px;
    padding: 9px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
}

.top-bar i {
    color: #fb923c;
    margin-right: 6px;
}

.top-left,
.top-right {
    display: flex;
    gap: 25px;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-logo {
    width: 300px;
    height: 75px;
    object-fit: contain;
    display: block;
}

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

.main-navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}



.navbar-nav .nav-link {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    margin-left: 20px;
}

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

.nav-book {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 18px !important;
    border-radius: 9px;
}

.nav-book:hover {
    background: var(--primary-dark);
}


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

.hero {
    min-height: 680px;

    background:
        linear-gradient(
            90deg,
            rgba(11,18,32,.88) 0%,
            rgba(11,18,32,.70) 50%,
            rgba(11,18,32,.20) 100%
        ),

        url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=2200&q=85")
        center/cover no-repeat;

    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,.25);

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(10px);

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

    margin-bottom: 22px;
}

.hero-badge span {
    width: 7px;
    height: 7px;
    background: #fb923c;
    border-radius: 50%;
}

.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 7vw, 78px);

    line-height: 1;

    font-weight: 800;

    margin-bottom: 25px;

    letter-spacing: -2px;
}

.hero h1 span {
    color: #fb923c;
}

.hero p {
    color: rgba(255,255,255,.86);

    font-size: 18px;

    max-width: 600px;

    line-height: 1.7;

    margin-bottom: 30px;
}

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

    background: var(--primary);

    color: #fff;

    padding: 13px 22px;

    border-radius: 10px;

    font-weight: 700;

    border: none;

    transition: .2s;
}

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

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

    color: #fff;

    padding: 12px 22px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,.4);

    background: rgba(255,255,255,.08);

    margin-left: 8px;

    font-weight: 700;
}

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


/* =========================================================
   SERVICE CARDS
========================================================= */

.services {
    background: var(--light);
}

.service-card {
    background: #fff;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 30px;

    height: 100%;

    transition: .3s;
}

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

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
}

.service-icon {
    width: 55px;
    height: 55px;

    border-radius: 15px;

    background: #fff0e5;

    color: var(--primary);

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

    font-size: 24px;

    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 19px;
    font-weight: 800;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* =========================================================
   PACKAGE CARDS
========================================================= */

.package-card {
    background: #fff;

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    height: 100%;

    transition: .3s;
}

.package-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);
}

.package-image {
    height: 220px;

    position: relative;

    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

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

.package-body {
    padding: 23px;
}

.package-body h4 {
    font-size: 19px;
    font-weight: 800;

    margin-bottom: 8px;
}

.package-body p {
    color: var(--muted);
    font-size: 14px;

    margin-bottom: 18px;
}

.package-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   CAR RENTAL
========================================================= */

.car-section {
    background: #f8fafc;
}

.car-card {
    background: #fff;

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    transition: .3s;
}

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

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
}

.car-image {
    height: 200px;
    background: #f8fafc;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s;
}

.car-card:hover .car-image img {
    transform: scale(1.04);
}

.car-body {
    padding: 20px;
}

.car-body h4 {
    font-size: 18px;
    font-weight: 800;
}

.car-info {
    display: flex;
    justify-content: space-between;

    color: var(--muted);

    font-size: 13px;

    margin: 10px 0 16px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-image {
    min-height: 500px;

    border-radius: 25px;

    overflow: hidden;

    background:
        url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1200&q=85")
        center/cover;

    position: relative;
}

.about-badge {
    position: absolute;

    bottom: 25px;
    left: 25px;

    background: #fff;

    padding: 18px 22px;

    border-radius: 15px;

    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.about-badge strong {
    display: block;

    font-size: 25px;

    color: var(--primary);
}

.about-list {
    list-style: none;

    padding: 0;

    margin: 25px 0;
}

.about-list li {
    margin-bottom: 13px;

    font-weight: 600;

    font-size: 14px;
}

.about-list i {
    color: var(--primary);

    margin-right: 8px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    background: var(--light);
}

.why-card {
    background: #fff;

    padding: 28px;

    border-radius: 18px;

    border: 1px solid var(--border);

    height: 100%;
}

.why-number {
    color: var(--primary);

    font-size: 35px;

    font-weight: 800;

    margin-bottom: 10px;
}

.why-card h4 {
    font-weight: 800;
    font-size: 18px;
}

.why-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 0;
}


/* =========================================================
   RATE CARD IMAGE
========================================================= */

.rate-card-image {
    background: #fff;

    padding: 10px;

    border-radius: 20px;

    border: 1px solid #e8e8e8;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.08);

    overflow: hidden;

    max-width: 1100px;

    margin: 0 auto;
}

.rate-card-image img {
    display: block;

    width: 100%;

    height: auto;

    border-radius: 12px;
}


/* Mobile */

@media (max-width: 576px) {

    .rate-card-image {
        padding: 4px;

        border-radius: 12px;
    }

    .rate-card-image img {
        border-radius: 8px;
    }

}
/* =========================================================
   RATE CHART MODAL
========================================================= */

.rate-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.rate-modal .modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.rate-modal .modal-title {
    font-weight: 800;
    color: var(--dark);
}

.rate-modal .modal-body {
    padding: 15px;
    background: #f8f9fa;
}

.rate-modal-image {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
}

.rate-modal .modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
}


/* Mobile */

@media (max-width: 576px) {

    .rate-modal .modal-header {
        padding: 15px;
    }

    .rate-modal .modal-body {
        padding: 5px;
    }

    .rate-modal-image {
        max-height: 70vh;
    }

}

/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding-top: 20px;
}

.cta-box {
    padding: 65px;

    border-radius: 28px;

    color: #fff;

    background:
        linear-gradient(
            110deg,
            rgba(17,24,39,.95),
            rgba(17,24,39,.65)
        ),

        url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1800&q=85")
        center/cover;
}

.cta-box h2 {
    font-family: "Playfair Display", serif;

    font-size: 48px;

    font-weight: 800;

    margin-bottom: 12px;
}

.cta-box p {
    color: rgba(255,255,255,.75);

    max-width: 650px;
}


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

footer {
    background: #0d1524;

    color: #fff;

    padding: 60px 0 25px;

    margin-top: 90px;
}

.footer-logo {
    font-size: 20px;

    font-weight: 800;
}

.footer-text {
    color: #98a2b3;

    font-size: 14px;

    line-height: 1.8;

    max-width: 380px;
}

.footer-title {
    font-size: 14px;

    font-weight: 800;

    margin-bottom: 18px;
}

.footer-links {
    list-style: none;

    padding: 0;

    margin: 0;
}

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

.footer-links a {
    color: #98a2b3;

    font-size: 13px;
}

.footer-links a:hover {
    color: #fb923c;
}

.footer-contact {
    color: #98a2b3;

    font-size: 13px;

    margin-bottom: 10px;
}

.footer-contact i {
    color: #fb923c;

    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);

    margin-top: 40px;

    padding-top: 20px;

    color: #667085;

    font-size: 12px;

    display: flex;

    justify-content: space-between;
}


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

.whatsapp-button {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #25D366;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    z-index: 999;

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

.whatsapp-button:hover {
    color: #fff;

    transform: scale(1.06);
}


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

@media (max-width: 991px) {

    .top-left,
    .top-right {
        gap: 12px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
    }

    .hero {
        min-height: 650px;
    }

    .about-image {
        min-height: 420px;
    }

}

@media (max-width: 767px) {

    .top-bar-content {
        flex-direction: column;

        gap: 5px;

        align-items: flex-start;
    }

    .top-left,
    .top-right {
        flex-wrap: wrap;

        gap: 10px;
    }

    .hero {
        min-height: 650px;

        padding: 80px 0;
    }

    .hero h1 {
        font-size: 52px;
    }

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

    .btn-outline {
        margin-left: 0;

        margin-top: 10px;
    }

    .section {
        padding: 65px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-box h2 {
        font-size: 38px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}
