/* =========================================================
   BOOK-RESERVATIONS.ONLINE
   COMMON WEBSITE STYLESHEET
   Reservations LLC
   ========================================================= */

/* ---------- ROOT VARIABLES ---------- */

:root {
    --navy: #10233f;
    --navy-dark: #08172b;
    --blue: #1769e0;
    --blue-dark: #0d4fae;
    --orange: #f59e0b;
    --green: #16803c;

    --light: #f5f8fc;
    --light-blue: #edf5ff;

    --border: #dfe6ef;
    --text: #1c2735;
    --muted: #5d6877;

    --white: #ffffff;

    --shadow:
        0 12px 35px rgba(16, 35, 63, 0.10);

    --radius: 14px;

    --container: 1180px;
}


/* ---------- RESET ---------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    padding-bottom: 72px;

    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.top-header {
    background: var(--white);

    border-bottom:
        1px solid var(--border);

    position: sticky;

    top: 0;

    z-index: 1000;
}

.header-inner {
    width: 100%;

    max-width: var(--container);

    min-height: 72px;

    margin: 0 auto;

    padding: 0 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* Website URL / Name - LEFT */

.website-name {
    color: var(--navy);

    font-size: 20px;

    font-weight: 800;

    letter-spacing: -0.3px;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.website-name:hover {
    color: var(--blue);
}


/* Phone - RIGHT */

.header-phone {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: #eef5ff;

    color: var(--blue-dark);

    padding: 11px 17px;

    border-radius: 8px;

    font-size: 16px;

    font-weight: 800;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.header-phone:hover {
    background: #e1edff;

    transform: translateY(-1px);
}

.header-phone span {
    font-size: 18px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

nav {
    background: var(--navy);

    width: 100%;
}

.nav-inner {
    width: 100%;

    max-width: var(--container);

    min-height: 48px;

    margin: 0 auto;

    padding: 0 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 28px;
}

.nav-inner a {
    color: var(--white);

    font-size: 14px;

    font-weight: 600;

    padding: 14px 0;

    position: relative;

    opacity: 0.96;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.nav-inner a:hover {
    color: #bcd8ff;

    opacity: 1;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
    background:
        linear-gradient(
            110deg,
            rgba(8, 23, 43, 0.98),
            rgba(16, 47, 82, 0.92)
        );

    color: var(--white);

    padding: 72px 22px 76px;
}

.hero-inner {
    width: 100%;

    max-width: var(--container);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, 0.8fr);

    gap: 55px;

    align-items: center;
}


/* Hero Label */

.eyebrow {
    display: inline-block;

    background:
        rgba(255, 255, 255, 0.12);

    border:
        1px solid rgba(255, 255, 255, 0.20);

    padding: 7px 13px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 18px;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* Hero Heading */

.hero h1 {
    font-size:
        clamp(34px, 5vw, 57px);

    line-height: 1.08;

    margin-bottom: 20px;

    letter-spacing: -1.5px;
}

.hero h1 span {
    color: #8fc0ff;
}


/* Hero Paragraph */

.hero p {
    color: #d9e4f2;

    max-width: 680px;

    font-size: 18px;

    margin-bottom: 28px;
}


/* Hero Buttons */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-height: 50px;

    padding:
        0 23px;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 800;

    border: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        filter 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--orange);

    color: #17202c;
}

.btn-primary:hover {
    filter: brightness(0.97);
}

.btn-secondary {
    background: transparent;

    color: var(--white);

    border:
        1px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
    background:
        rgba(255, 255, 255, 0.08);
}


/* =========================================================
   HERO INFORMATION CARD
   ========================================================= */

.hero-card {
    background: var(--white);

    color: var(--text);

    padding: 27px;

    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.20);
}

.hero-card h3 {
    color: var(--navy);

    margin-bottom: 17px;

    font-size: 21px;
}

.hero-card-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 13px 0;

    border-bottom:
        1px solid var(--border);
}

.hero-card-row:last-child {
    border-bottom: none;
}

.hero-card-row strong {
    color: var(--blue-dark);

    white-space: nowrap;
}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.section {
    padding: 70px 22px;
}

.section-light {
    background: var(--light);
}

.container {
    width: 100%;

    max-width: var(--container);

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    max-width: 760px;

    margin:
        0 auto 42px;

    text-align: center;
}

.section-heading h2 {
    color: var(--navy);

    font-size: 34px;

    line-height: 1.2;

    margin-bottom: 12px;

    letter-spacing: -0.5px;
}

.section-heading p {
    color: var(--muted);

    font-size: 16px;
}


/* =========================================================
   CAR RENTAL DEAL GRID
   ========================================================= */

.deal-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* Deal Card */

.deal-card {
    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    padding: 26px;

    box-shadow: var(--shadow);

    position: relative;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.deal-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 42px rgba(16, 35, 63, 0.14);
}


/* Featured Card */

.deal-card.featured {
    border:
        2px solid var(--blue);
}


/* Deal Badge */

.deal-badge {
    display: inline-block;

    background: var(--blue);

    color: var(--white);

    padding: 5px 10px;

    font-size: 11px;

    font-weight: 800;

    border-radius: 5px;

    margin-bottom: 12px;

    text-transform: uppercase;

    letter-spacing: 0.3px;
}


/* Car Icon */

.car-icon {
    width: 58px;

    height: 58px;

    background: #eef5ff;

    border-radius: 12px;

    display: grid;

    place-items: center;

    font-size: 29px;

    margin-bottom: 17px;
}


/* Deal Heading */

.deal-card h3 {
    color: var(--navy);

    font-size: 21px;

    margin-bottom: 7px;
}


/* Category */

.category {
    color: var(--muted);

    font-size: 14px;

    margin-bottom: 19px;
}


/* Price Label */

.price-label {
    font-size: 12px;

    color: var(--muted);

    text-transform: uppercase;

    font-weight: 700;

    letter-spacing: 0.3px;
}


/* Price */

.price {
    font-size: 31px;

    color: var(--navy);

    font-weight: 900;

    margin:
        1px 0 4px;
}

.price small {
    font-size: 13px;

    font-weight: 600;

    color: var(--muted);
}


/* Deal Note */

.deal-note {
    color: var(--muted);

    font-size: 12px;

    margin-top: 8px;
}


/* Card Button */

.card-button {
    display: block;

    width: 100%;

    text-align: center;

    margin-top: 20px;

    background: var(--blue);

    color: var(--white);

    padding: 12px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.card-button:hover {
    background: var(--blue-dark);

    transform: translateY(-1px);
}


/* =========================================================
   DISCLOSURE
   ========================================================= */

.disclosure {
    background: #fff8e8;

    border:
        1px solid #f2d38a;

    border-radius: 12px;

    padding: 23px;

    color: #55451f;

    font-size: 13px;

    margin-top: 35px;
}

.disclosure strong {
    color: #34270e;
}


/* =========================================================
   SERVICE GRID
   ========================================================= */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.service {
    border:
        1px solid var(--border);

    border-radius: 12px;

    padding: 25px;

    background: var(--white);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.service:hover {
    transform: translateY(-3px);

    box-shadow: var(--shadow);
}

.service-icon {
    font-size: 28px;

    margin-bottom: 12px;
}

.service h3 {
    color: var(--navy);

    font-size: 18px;

    margin-bottom: 8px;
}

.service p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   PROCESS / HOW IT WORKS
   ========================================================= */

.process {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.process-card {
    padding: 28px;

    border-radius: 13px;

    background: var(--white);

    border:
        1px solid var(--border);

    text-align: center;
}

.number {
    width: 43px;

    height: 43px;

    display: grid;

    place-items: center;

    margin:
        0 auto 15px;

    border-radius: 50%;

    background: var(--blue);

    color: var(--white);

    font-weight: 900;
}

.process-card h3 {
    color: var(--navy);

    margin-bottom: 7px;
}

.process-card p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   TRUST SECTION
   ========================================================= */

.trust {
    background: var(--navy);

    color: var(--white);

    padding: 58px 22px;
}

.trust-grid {
    max-width: var(--container);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.trust-item {
    padding: 10px;
}

.trust-item h3 {
    margin-bottom: 7px;

    font-size: 18px;
}

.trust-item p {
    color: #c9d5e5;

    font-size: 14px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq {
    max-width: 900px;

    margin: 0 auto;
}

details {
    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 9px;

    margin-bottom: 12px;

    padding:
        0 20px;
}

summary {
    cursor: pointer;

    padding: 18px 0;

    color: var(--navy);

    font-weight: 800;

    list-style-position: inside;
}

details p {
    padding:
        0 0 18px;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   CTA SECTION
   ========================================================= */

.cta {
    background: var(--light-blue);

    padding: 58px 22px;

    text-align: center;
}

.cta h2 {
    color: var(--navy);

    font-size: 34px;

    margin-bottom: 10px;
}

.cta p {
    color: var(--muted);

    margin-bottom: 23px;
}

.cta-phone {
    font-size: 29px;

    font-weight: 900;

    color: var(--blue-dark);

    display: inline-block;

    margin-bottom: 18px;

    transition: color 0.2s ease;
}

.cta-phone:hover {
    color: var(--blue);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background: var(--navy-dark);

    color: #d5deea;

    padding:
        45px 22px 100px;
}

.footer-grid {
    max-width: var(--container);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 35px;
}

footer h3 {
    color: var(--white);

    margin-bottom: 13px;

    font-size: 18px;
}

footer p,
footer li,
footer a {
    font-size: 13px;

    color: #bac7d8;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 7px;
}

footer a:hover {
    color: var(--white);
}

.copyright {
    max-width: var(--container);

    margin:
        30px auto 0;

    padding-top: 22px;

    border-top:
        1px solid rgba(255,255,255,.12);

    text-align: center;

    font-size: 12px;

    color: #9eacbd;
}


/* =========================================================
   STICKY TFN BAR
   ========================================================= */

.sticky-call {
    position: fixed;

    left: 0;

    right: 0;

    bottom: 0;

    z-index: 9999;

    background: var(--navy-dark);

    border-top:
        2px solid var(--orange);

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        9px 20px;

    box-shadow:
        0 -7px 25px rgba(0,0,0,.18);
}

.sticky-call-inner {
    width: 100%;

    max-width: 1000px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;
}

.sticky-text {
    color: var(--white);

    font-size: 15px;

    font-weight: 700;
}

.sticky-phone {
    background: var(--orange);

    color: #151c26;

    padding:
        12px 25px;

    border-radius: 7px;

    font-size: 18px;

    font-weight: 900;

    white-space: nowrap;

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.sticky-phone:hover {
    transform: translateY(-1px);

    filter: brightness(.95);
}


/* =========================================================
   FORM ELEMENTS
   Useful for booking/contact pages
   ========================================================= */

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--navy);

    font-size: 14px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border:
        1px solid var(--border);

    background: var(--white);

    color: var(--text);

    border-radius: 7px;

    padding:
        12px 13px;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    min-height: 130px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(23,105,224,.10);
}


/* =========================================================
   GENERAL CONTENT
   Useful for About / Terms / Privacy / Disclaimer
   ========================================================= */

.content-box {
    max-width: 900px;

    margin: 0 auto;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    padding: 35px;

    box-shadow: var(--shadow);
}

.content-box h1,
.content-box h2,
.content-box h3 {
    color: var(--navy);

    margin-bottom: 12px;
}

.content-box h1 {
    font-size: 36px;
}

.content-box h2 {
    font-size: 25px;

    margin-top: 28px;
}

.content-box h3 {
    font-size: 19px;

    margin-top: 20px;
}

.content-box p {
    color: var(--muted);

    font-size: 15px;

    margin-bottom: 14px;
}

.content-box ul,
.content-box ol {
    margin:
        0 0 18px 22px;

    color: var(--muted);

    font-size: 15px;
}

.content-box li {
    margin-bottom: 7px;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .hero-card {
        max-width: 650px;
    }

    .deal-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .service-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .trust-grid {
        grid-template-columns:
            1fr;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 650px) {

    body {
        padding-bottom: 65px;
    }


    /* Header */

    .header-inner {
        min-height: 62px;

        padding:
            0 15px;

        gap: 10px;
    }

    .website-name {
        font-size: 15px;
    }

    .header-phone {
        padding:
            9px 11px;

        font-size: 13px;

        gap: 5px;
    }

    .header-phone span {
        font-size: 15px;
    }


    /* Navigation */

    .nav-inner {
        min-height: 45px;

        gap: 18px;

        padding:
            0 15px;

        overflow-x: auto;

        justify-content: flex-start;

        scrollbar-width: none;
    }

    .nav-inner::-webkit-scrollbar {
        display: none;
    }

    .nav-inner a {
        white-space: nowrap;

        font-size: 12px;

        padding:
            13px 0;
    }


    /* Hero */

    .hero {
        padding:
            50px 18px 55px;
    }

    .hero h1 {
        font-size:
            clamp(32px, 10vw, 45px);
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-card {
        padding: 22px;
    }


    /* Sections */

    .section {
        padding:
            50px 18px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .section-heading p {
        font-size: 14px;
    }


    /* Grids */

    .deal-grid,
    .service-grid,
    .process,
    .footer-grid {
        grid-template-columns: 1fr;
    }


    /* Cards */

    .deal-card {
        padding: 23px;
    }


    /* Trust */

    .trust {
        padding:
            48px 18px;
    }


    /* Disclosure */

    .disclosure {
        font-size: 12px;

        padding: 18px;
    }


    /* CTA */

    .cta {
        padding:
            48px 18px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .cta-phone {
        font-size: 24px;
    }


    /* Footer */

    footer {
        padding:
            40px 18px 95px;
    }


    /* Forms */

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .content-box {
        padding: 23px;
    }

    .content-box h1 {
        font-size: 30px;
    }


    /* Sticky Call */

    .sticky-call {
        min-height: 64px;

        padding:
            8px 10px;
    }

    .sticky-call-inner {
        gap: 9px;
    }

    .sticky-text {
        font-size: 12px;
    }

    .sticky-phone {
        padding:
            11px 14px;

        font-size: 15px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .website-name {
        font-size: 13px;
    }

    .header-phone {
        font-size: 11px;

        padding:
            8px 9px;
    }

    .sticky-text {
        font-size: 11px;
    }

    .sticky-phone {
        padding:
            10px 11px;

        font-size: 14px;
    }

    .hero h1 {
        font-size: 31px;
    }
}
