```
/* ==========================================
   RENT MY RAMP MOTORSPORT
========================================== */


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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #08090b;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ==========================================
   NAVIGATION
========================================== */

.navbar {
    height: 105px;
    padding: 0 6%;

    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;

    background: rgba(8, 9, 11, 0.97);

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid #242424;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    height: 100%;
    width: fit-content;
}

.logo img {
    display: block;

    width: 175px;
    height: auto;
    max-height: 92px;

    object-fit: contain;
}


/* NAV LINKS */

.navbar nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 42px;
}

.navbar nav a {
    font-size: 13px;
    font-weight: bold;

    text-transform: uppercase;

    transition: .2s;
}

.navbar nav a:hover {
    color: #e21d2d;
}


/* BUTTONS */

.nav-book {
    justify-self: end;
}

.nav-book,
.primary-btn {
    display: inline-block;

    background: #e21d2d;

    padding: 15px 25px;

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

    transition: .25s;
}

.nav-book:hover,
.primary-btn:hover {
    background: #ffffff;
    color: #08090b;
}

.secondary-btn {
    display: inline-block;

    padding: 15px 25px;

    border: 1px solid #ffffff;

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

    transition: .25s;
}

.secondary-btn:hover {
    background: #ffffff;
    color: #08090b;
}


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

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 8% 80px;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .95),
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .2)
        ),
        url("images/ramp.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 800px;

    position: relative;
    z-index: 2;
}

.hero-label,
.section-label {
    color: #e21d2d;

    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 900;

    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(60px, 8vw, 120px);

    line-height: .82;
    letter-spacing: -5px;

    font-weight: 900;
}

.hero h1 span {
    color: #e21d2d;
}

.hero-description {
    max-width: 550px;

    margin-top: 35px;

    color: #c6c6c6;

    font-size: 18px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}


/* ==========================================
   INTRO
========================================== */

.intro {
    padding: 130px 8%;

    max-width: 1600px;

    margin: auto;

    text-align: left;
}

.intro-heading {
    display: grid;

    grid-template-columns: 1.4fr .6fr;

    gap: 100px;

    align-items: end;
}

.intro h2 {
    font-size: clamp(48px, 6vw, 85px);

    line-height: .9;

    font-weight: 900;

    letter-spacing: -3px;
}

.intro h2 span {
    color: #e21d2d;
}

.intro-description {
    padding-bottom: 5px;
}

.intro-description p {
    color: #999;

    font-size: 16px;

    line-height: 1.8;

    max-width: 500px;
}


/* TEXT LINK */

.text-link {
    display: inline-block;

    margin-top: 25px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;

    border-bottom: 2px solid #e21d2d;

    padding-bottom: 7px;

    transition: .2s;
}

.text-link:hover {
    color: #e21d2d;
}


/* ==========================================
   BENEFITS
========================================== */

.benefits {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 90px;

    border-top: 1px solid #292929;
    border-bottom: 1px solid #292929;
}

.benefit {
    padding: 45px 35px;

    border-right: 1px solid #292929;

    transition: .25s;
}

.benefit:first-child {
    padding-left: 0;
}

.benefit:last-child {
    border-right: none;
}

.benefit:hover {
    background: #0e1013;
}

.benefit-number {
    display: block;

    color: #e21d2d;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 35px;
}

.benefit h3 {
    font-size: 20px;

    margin-bottom: 15px;
}

.benefit p {
    color: #777;

    line-height: 1.7;

    font-size: 14px;
}


/* ==========================================
   HOW IT WORKS
========================================== */

.how-it-works {
    background: #0e1013;

    padding: 130px 8%;
}


/* HEADER */

.how-header {
    display: grid;

    grid-template-columns: 1.4fr .6fr;

    gap: 100px;

    align-items: end;

    max-width: 1400px;

    margin: auto;
}

.how-header h2 {
    font-size: clamp(48px, 6vw, 85px);

    line-height: .9;

    font-weight: 900;

    letter-spacing: -3px;
}

.how-header h2 span {
    color: #e21d2d;
}

.how-description {
    padding-bottom: 5px;
}

.how-description p {
    max-width: 450px;

    color: #888;

    font-size: 16px;

    line-height: 1.8;
}


/* STEPS */

.how-steps {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    max-width: 1400px;

    margin: 90px auto 0;
}

.how-step {
    position: relative;

    min-height: 360px;

    padding: 0 50px 50px 0;

    border-bottom: 1px solid #2a2d31;

    transition: .3s ease;
}

.how-step:not(:first-child) {
    padding-left: 50px;
}

.how-step:hover {
    transform: translateY(-8px);
}


/* NUMBER + LINE */

.step-top {
    display: flex;

    align-items: center;

    width: 100%;

    margin-bottom: 45px;
}

.step-number {
    color: #e21d2d;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 3px;
}

.step-line {
    height: 1px;

    flex: 1;

    margin-left: 25px;

    background: #34373b;
}


/* ICON */

.step-icon {
    width: 60px;
    height: 60px;

    display: flex;

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

    margin-bottom: 35px;

    border: 1px solid #33383d;

    transition: .3s ease;
}

.step-icon svg {
    width: 29px;
    height: 29px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: .3s ease;
}

.how-step:hover .step-icon {
    background: #e21d2d;

    border-color: #e21d2d;
}


/* STEP TEXT */

.how-step h3 {
    font-size: 22px;

    font-weight: 900;

    margin-bottom: 17px;
}

.how-step p {
    max-width: 330px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;
}


/* HOW CTA */

.how-cta {
    max-width: 1400px;

    margin: 70px auto 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 30px 35px;

    border-left: 3px solid #e21d2d;

    background: #13161a;
}

.how-cta div {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.how-cta span {
    color: #777;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}

.how-cta strong {
    font-size: 20px;

    font-weight: 900;
}


/* ==========================================
   USES
========================================== */

.uses {
    padding: 130px 8%;

    background: #08090b;
}


/* HEADER */

.uses-header {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.4fr .6fr;

    gap: 100px;

    align-items: end;
}

.uses-header h2 {
    font-size: clamp(48px, 6vw, 85px);

    line-height: .9;

    font-weight: 900;

    letter-spacing: -3px;
}

.uses-header h2 span {
    color: #e21d2d;
}

.uses-description {
    padding-bottom: 5px;
}

.uses-description p {
    max-width: 450px;

    color: #888;

    font-size: 16px;

    line-height: 1.8;
}


/* USES GRID */

.uses-grid {
    max-width: 1400px;

    margin: 90px auto 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #292c30;

    border: 1px solid #292c30;
}


/* USE CARDS */

.use-card {
    position: relative;

    min-height: 330px;

    padding: 40px;

    background: #0d0f12;

    overflow: hidden;

    transition:
        background .3s ease,
        transform .3s ease;
}

.use-card:hover {
    background: #13161a;

    transform: translateY(-5px);

    z-index: 2;
}


/* LARGE NUMBER */

.use-number {
    position: absolute;

    top: 15px;
    right: 25px;

    color: rgba(255, 255, 255, .035);

    font-size: 100px;

    font-weight: 900;

    line-height: 1;

    transition: .3s ease;
}

.use-card:hover .use-number {
    color: rgba(226, 29, 45, .10);
}


/* ICON */

.use-icon {
    width: 52px;
    height: 52px;

    display: flex;

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

    margin-bottom: 45px;

    border: 1px solid #34383d;

    transition: .3s ease;
}

.use-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: #ffffff;

    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: .3s ease;
}

.use-card:hover .use-icon {
    background: #e21d2d;

    border-color: #e21d2d;
}


/* USE TEXT */

.use-card h3 {
    position: relative;

    font-size: 22px;

    font-weight: 900;

    margin-bottom: 15px;

    z-index: 2;
}

.use-card p {
    position: relative;

    max-width: 320px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;

    z-index: 2;
}


/* ARROW */

.use-arrow {
    position: absolute;

    left: 40px;
    bottom: 30px;

    color: #555;

    font-size: 20px;

    transition: .3s ease;
}

.use-card:hover .use-arrow {
    color: #e21d2d;

    transform: translateX(7px);
}


/* USES NOTE */

.uses-note {
    max-width: 1400px;

    margin: 35px auto 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #666;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;
}

.uses-note a {
    color: #ffffff;

    border-bottom: 2px solid #e21d2d;

    padding-bottom: 6px;

    transition: .2s;
}

.uses-note a:hover {
    color: #e21d2d;
}


/* ==========================================
   PRICING
========================================== */

.pricing {
    padding: 100px 8%;
    background: #f2f2f2;
    color: #090909;
}


/* HEADER */

.pricing-header {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.4fr .6fr;

    gap: 100px;
    align-items: end;
}

.pricing .section-label {
    color: #e21d2d;
}

.pricing-header h2 {
    font-size: clamp(48px, 5vw, 72px);
    line-height: .9;

    font-weight: 900;
    letter-spacing: -3px;
}

.pricing-header h2 span {
    color: #e21d2d;
}

.pricing-description p {
    max-width: 430px;

    color: #666;

    font-size: 15px;
    line-height: 1.7;
}


/* GRID */

.pricing-grid {
    max-width: 1400px;

    margin: 60px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}


/* CARD */

.price-card {
    position: relative;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #d9d9d9;

    overflow: hidden;
}

.price-card.featured {
    border: 2px solid #e21d2d;
}


/* BACKGROUND NUMBER */

.price-number {
    position: absolute;

    top: 8px;
    right: 18px;

    color: rgba(0, 0, 0, .035);

    font-size: 80px;
    font-weight: 900;

    line-height: 1;
}


/* CARD HEADING */

.price-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-bottom: 25px;
}

.duration {
    font-size: 26px;
    font-weight: 900;
}

.duration-note {
    color: #999;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}


/* PRICES */

.price-options {
    position: relative;
    z-index: 2;

    border-top: 1px solid #e1e1e1;
}

.price-options div {
    min-height: 58px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid #e1e1e1;
}

.price-options span {
    color: #777;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.price-options strong {
    color: #090909;

    font-size: 22px;
    font-weight: 900;
}


/* BUTTON */

.price-card > a {
    display: block;

    margin-top: 22px;

    padding: 13px 15px;

    background: #0b0c0e;

    color: #ffffff;

    text-align: center;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1px;

    transition: .2s ease;
}

.price-card > a:hover {
    background: #e21d2d;
}

.price-card.featured > a {
    background: #e21d2d;
}

.price-card.featured > a:hover {
    background: #0b0c0e;
}


/* POPULAR */

.popular {
    position: absolute;

    top: 0;
    left: 0;

    padding: 7px 12px;

    background: #e21d2d;

    color: #ffffff;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}

.featured .price-card-top {
    padding-top: 10px;
}


/* ==========================================
   BOOKING
========================================== */

.booking {
    padding: 120px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    background: #0b0d10;
}

.booking-info > p {
    color: #888;

    max-width: 450px;

    margin-top: 25px;

    line-height: 1.7;
}

.location {
    margin-top: 50px;

    display: flex;

    flex-direction: column;
}

.location strong {
    color: #e21d2d;

    font-size: 11px;

    letter-spacing: 3px;
}

.location span {
    margin-top: 8px;
}

.booking-form {
    background: #14171b;

    padding: 45px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    background: #0b0d10;

    border: 1px solid #333;

    padding: 15px;

    color: #ffffff;

    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color: #e21d2d;
}

.form-group textarea {
    min-height: 120px;

    resize: vertical;
}

.checkbox {
    display: flex;

    gap: 12px;

    color: #aaa;

    font-size: 12px;

    margin: 15px 0 25px;
}

.booking-form button {
    border: none;

    background: #e21d2d;

    color: #ffffff;

    width: 100%;

    padding: 18px;

    font-weight: 900;

    cursor: pointer;

    transition: .2s;
}

.booking-form button:hover {
    background: #ffffff;

    color: #000000;
}

.form-message {
    margin-top: 20px;

    font-size: 13px;
}


/* ==========================================
   FAQ
========================================== */

.faq {
    padding: 130px 8%;

    background: #08090b;
}


/* FAQ HEADER */

.faq-header {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.4fr .6fr;

    gap: 100px;

    align-items: end;
}

.faq-header h2 {
    font-size: clamp(48px, 6vw, 85px);

    line-height: .9;

    font-weight: 900;

    letter-spacing: -3px;
}

.faq-header h2 span {
    color: #e21d2d;
}

.faq-description {
    padding-bottom: 5px;
}

.faq-description p {
    max-width: 450px;

    color: #888;

    font-size: 16px;

    line-height: 1.8;
}


/* FAQ QUESTIONS */

.faq-container {
    max-width: 1400px;

    margin: 90px auto 0;

    border-top: 1px solid #292c30;
}

.faq-item {
    border-bottom: 1px solid #292c30;
}

.faq-question {
    width: 100%;

    min-height: 100px;

    display: grid;

    grid-template-columns: 80px 1fr 50px;

    align-items: center;

    padding: 0;

    background: transparent;

    border: none;

    color: #ffffff;

    cursor: pointer;

    text-align: left;

    transition: background .25s ease;
}

.faq-question:hover {
    background: #0e1013;
}


/* FAQ NUMBER */

.faq-number {
    color: #e21d2d;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}


/* FAQ TITLE */

.faq-title {
    font-size: 19px;

    font-weight: 900;
}


/* FAQ PLUS */

.faq-plus {
    width: 40px;
    height: 40px;

    display: flex;

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

    justify-self: end;

    border: 1px solid #34383d;

    color: #ffffff;

    font-size: 23px;

    font-weight: 300;

    transition: .3s ease;
}

.faq-question:hover .faq-plus {
    background: #e21d2d;

    border-color: #e21d2d;
}


/* FAQ ANSWER */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;
}

.faq-answer p {
    max-width: 750px;

    padding: 0 50px 35px 80px;

    color: #888;

    font-size: 14px;

    line-height: 1.8;
}


/* OPEN FAQ */

.faq-item.active .faq-question {
    background: #0e1013;
}

.faq-item.active .faq-plus {
    background: #e21d2d;

    border-color: #e21d2d;

    transform: rotate(45deg);
}


/* ==========================================
   CONTACT
========================================== */

.contact {
    padding: 130px 8%;

    background: #0e1013;
}


/* CONTACT HEADER */

.contact-header {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.4fr .6fr;

    gap: 100px;

    align-items: end;
}

.contact-header h2 {
    font-size: clamp(48px, 6vw, 85px);

    line-height: .9;

    font-weight: 900;

    letter-spacing: -3px;
}

.contact-header h2 span {
    color: #e21d2d;
}

.contact-intro {
    padding-bottom: 5px;
}

.contact-intro p {
    max-width: 450px;

    color: #888;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* CONTACT GRID */

.contact-grid {
    max-width: 1400px;

    margin: 90px auto 0;

    display: grid;

    grid-template-columns: .9fr .9fr 1.2fr;

    gap: 1px;

    background: #292c30;

    border: 1px solid #292c30;
}


/* CONTACT CARDS */

.contact-card {
    position: relative;

    min-height: 470px;

    padding: 45px;

    background: #08090b;

    overflow: hidden;

    transition: .3s ease;
}

.contact-card:hover {
    background: #101216;
}


/* CONTACT LARGE NUMBERS */

.contact-number {
    position: absolute;

    top: 15px;
    right: 25px;

    color: rgba(255, 255, 255, .035);

    font-size: 100px;

    line-height: 1;

    font-weight: 900;

    transition: .3s ease;
}

.contact-card:hover .contact-number {
    color: rgba(226, 29, 45, .10);
}


/* CONTACT LABEL */

.contact-label {
    position: relative;

    color: #e21d2d;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;

    margin-bottom: 40px;

    z-index: 2;
}


/* CONTACT CARD HEADINGS */

.contact-card h3 {
    position: relative;

    font-size: 30px;

    line-height: 1;

    font-weight: 900;

    margin-bottom: 35px;

    z-index: 2;
}


/* ADDRESS */

.contact-detail {
    color: #888;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 30px;
}


/* CONTACT METHODS */

.contact-method {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-bottom: 24px;
}

.contact-method span {
    color: #666;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;
}

.contact-method a {
    width: fit-content;

    color: #ffffff;

    font-size: 14px;

    transition: .2s ease;
}

.contact-method a:hover {
    color: #e21d2d;
}


/* CONTACT LINK */

.contact-link {
    display: inline-block;

    color: #ffffff;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    padding-bottom: 7px;

    border-bottom: 2px solid #e21d2d;

    transition: .2s ease;
}

.contact-link:hover {
    color: #e21d2d;
}


/* OPENING HOURS */

.opening-hours {
    display: flex;

    flex-direction: column;
}

.opening-hours div {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding: 9px 0;

    border-bottom: 1px solid #202328;
}

.opening-hours span {
    color: #777;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;
}

.opening-hours strong {
    color: #ffffff;

    font-size: 11px;

    white-space: nowrap;
}

/* AFTER HOURS */

.after-hours {
    max-width: 1400px;

    margin: 35px auto 0;

    display: grid;

    grid-template-columns: 60px 1fr auto;

    align-items: center;

    gap: 25px;

    padding: 28px 30px;

    background: #08090b;

    border-left: 3px solid #e21d2d;
}

.after-hours-icon {
    width: 50px;
    height: 50px;

    display: flex;

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

    background: #e21d2d;

    color: #ffffff;

    font-size: 28px;

    font-weight: 300;
}

.after-hours-text {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.after-hours-text > span {
    color: #e21d2d;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 3px;
}

.after-hours-text strong {
    color: #ffffff;

    font-size: 17px;

    font-weight: 900;
}

.after-hours-text p {
    color: #777;

    font-size: 12px;
}


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

.site-footer {
    padding: 0 8%;

    background: #060709;

    border-top: 1px solid #25282c;

    color: #ffffff;
}


/* MAIN FOOTER */

.footer-main {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr
        .65fr
        .9fr
        1fr;

    gap: 70px;

    padding: 80px 0 70px;
}


/* BRAND */

.footer-brand {
    max-width: 330px;
}

.footer-logo-image {
    display: inline-block;

    margin-bottom: 25px;
}

.footer-logo-image img {
    display: block;

    width: 190px;
    height: auto;

    object-fit: contain;
}

.footer-brand p {
    max-width: 290px;

    color: #777;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* FOOTER BOOK BUTTON */

.footer-book {
    display: inline-block;

    background: #e21d2d;

    color: #ffffff;

    padding: 14px 20px;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;

    transition: .25s ease;
}

.footer-book:hover {
    background: #ffffff;

    color: #08090b;
}


/* COLUMNS */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
}

.footer-heading {
    color: #e21d2d;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 3px;

    margin-bottom: 12px;
}

.footer-column a {
    color: #999;

    font-size: 12px;

    line-height: 1.6;

    transition: .2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #777;

    font-size: 12px;

    line-height: 1.8;
}


/* DIRECTIONS */

.footer-direction {
    display: inline-block;

    margin-top: 8px;

    padding-bottom: 5px;

    border-bottom: 2px solid #e21d2d;

    color: #ffffff !important;

    font-size: 9px !important;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.footer-direction:hover {
    color: #e21d2d !important;
}


/* BOTTOM BAR */

.footer-bottom {
    max-width: 1400px;

    margin: auto;

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid #202328;

    color: #555;

    font-size: 10px;

    letter-spacing: .5px;
}

.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 15px;
}

.footer-bottom-links a {
    color: #777;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    transition: .2s ease;
}

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

.footer-bottom-links span {
    color: #333;
}


/* ==========================================
   TABLET
   900PX AND BELOW
========================================== */

@media (max-width: 900px) {

    /* NAVBAR */

    .navbar {
        display: flex;

        height: 85px;

        padding: 0 5%;
    }

    .navbar nav {
        display: none;
    }

    .logo img {
        width: 135px;

        height: auto;

        max-height: 75px;
    }

    .nav-book {
        margin-left: auto;
    }


    /* HERO */

    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .hero h1 {
        letter-spacing: -3px;
    }


    /* INTRO */

    .intro-heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }

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

    .benefit {
        border-bottom: 1px solid #292929;
    }

    .benefit:first-child {
        padding-left: 35px;
    }


    /* HOW IT WORKS */

    .how-header {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .how-steps {
        grid-template-columns: 1fr;

        margin-top: 60px;
    }

    .how-step,
    .how-step:not(:first-child) {
        min-height: auto;

        padding: 35px 0;

        border-bottom: 1px solid #2a2d31;
    }

    .step-top {
        margin-bottom: 30px;
    }

    .how-cta {
        margin-top: 50px;
    }


    /* USES */

    .uses-header {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .uses-grid {
        grid-template-columns: 1fr 1fr;

        margin-top: 60px;
    }


    /* PRICING */

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


    /* BOOKING */

    .booking {
        grid-template-columns: 1fr;

        gap: 50px;
    }

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

        gap: 0;
    }


    /* FAQ */

    .faq-header {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .faq-container {
        margin-top: 60px;
    }


    /* CONTACT */

    .contact-header {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;

        margin-top: 60px;
    }

    .hours-card {
        grid-column: 1 / -1;
    }

    .contact-card {
        min-height: auto;
    }

    .after-hours {
        grid-template-columns: 60px 1fr;
    }

    .after-hours .secondary-btn {
        grid-column: 2;

        width: fit-content;
    }


        /* FOOTER */

        .footer-main {
            grid-template-columns: 1fr 1fr;

            gap: 55px;

            padding: 65px 0;
        }

        .footer-brand {
            max-width: none;
        }

        .footer-bottom {
            min-height: 70px;
        }


}

/* ==========================================
   WORKSHOP SHOWCASE
========================================== */

.workshop-showcase {
    position: relative;
    min-height: 560px;

    display: flex;
    align-items: flex-end;

    padding: 75px 6%;

    background-image: url("images/enginebay.png");
    background-size: cover;
    background-position: center 58%;
    background-repeat: no-repeat;

    overflow: hidden;
}

.workshop-showcase-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 6, 8, 0.92) 0%,
            rgba(5, 6, 8, 0.70) 38%,
            rgba(5, 6, 8, 0.15) 70%,
            rgba(5, 6, 8, 0.08) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5, 6, 8, 0.75) 0%,
            transparent 55%
        );

    z-index: 1;
}

.workshop-showcase-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
}

.workshop-label {
    margin-bottom: 18px;

    color: #e21d2d;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 4px;
}

.workshop-showcase h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(45px, 5vw, 78px);
    font-weight: 900;

    line-height: 0.9;
    letter-spacing: -3px;
}

.workshop-showcase h2 span {
    color: #e21d2d;
}

.workshop-description {
    max-width: 470px;
    margin: 25px 0 30px;

    color: #b8b8b8;

    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================
   WHAT'S INCLUDED
========================================== */

.included {
    padding: 100px 6%;
    background: #0d0f12;
}


/* HEADER */

.included-header {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 80px;

    align-items: end;
}

.included-header h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(48px, 5vw, 76px);
    font-weight: 900;

    line-height: 0.9;
    letter-spacing: -3px;
}

.included-header h2 span {
    color: #e21d2d;
}

.included-description {
    max-width: 430px;
}

.included-description p {
    margin: 0;

    color: #8e9297;

    font-size: 15px;
    line-height: 1.7;
}


/* ITEMS */

.included-list {
    max-width: 1400px;

    margin: 65px auto 0;

    border-top: 1px solid #292c30;
}

.included-item {
    position: relative;

    display: grid;
    grid-template-columns: 90px 75px 1fr;

    align-items: center;
    gap: 25px;

    min-height: 145px;

    border-bottom: 1px solid #292c30;

    transition:
        background 0.25s ease,
        padding 0.25s ease;
}

.included-item:hover {
    padding-left: 20px;
    background: #111317;
}


/* NUMBER */

.included-number {
    color: #4e5257;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
}


/* ICON */

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

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

    border: 1px solid #34383d;
}

.included-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: #e21d2d;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* TEXT */

.included-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;
    gap: 60px;
}

.included-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 20px;
    font-weight: 900;

    letter-spacing: -0.5px;
}

.included-content p {
    max-width: 500px;

    margin: 0;

    color: #777c82;

    font-size: 14px;
    line-height: 1.65;
}


/* CTA */

.included-cta {
    max-width: 1400px;

    margin: 45px auto 0;
    padding: 30px 35px;

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

    gap: 30px;

    background: #08090b;

    border-left: 3px solid #e21d2d;
}

.included-cta div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.included-cta span {
    color: #e21d2d;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;
}

.included-cta strong {
    color: #ffffff;

    font-size: 17px;
    font-weight: 900;
}

/* ==========================================
   MOBILE STICKY BOOKING BAR
========================================== */

.mobile-booking-bar {
    display: none;
}

/* ==========================================
   MOBILE
   550PX AND BELOW
========================================== */

@media (max-width: 550px) {

    /* ==============================
       MOBILE WIDTH / OVERFLOW FIX
    ============================== */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        margin: 0;
        padding-bottom: 80px;
    }

    .navbar,
    .hero,
    main,
    section,
    footer {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* ==============================
       MOBILE CTA CLEANUP
    ============================== */

    .nav-book {
        display: none;
    }

    .hero .primary-btn {
        display: none;
    }

    .workshop-showcase .primary-btn {
        display: none;
    }

    .included-cta .primary-btn {
        display: none;
    }




        html,
        body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            margin: 0;
            padding-bottom: 80px;
        }

        .navbar,
        .hero,
        main,
        section,
        footer {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

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

    .navbar {
        height: 72px;
        padding: 0 5%;
    }

    .logo img {
        width: 108px;
        max-height: 62px;
    }

    .nav-book {
        padding: 11px 15px;
        font-size: 10px;
    }


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

    .hero {
        min-height: 690px;

        padding: 110px 6% 55px;

        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, .30) 0%,
                rgba(0, 0, 0, .48) 45%,
                rgba(0, 0, 0, .92) 100%
            ),
            url("images/ramp.png");

        background-size: auto 92%;
        background-position: center top;
        background-repeat: no-repeat;
        background-color: #08090b;
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: 47px;
        line-height: .88;
        letter-spacing: -2px;
    }

    .hero-description {
        max-width: 340px;

        margin-top: 25px;

        font-size: 14px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;

        gap: 9px;

        margin-top: 27px;
    }

    .hero-buttons .primary-btn,
    .hero-buttons .secondary-btn {
        padding: 13px 15px;
        font-size: 10px;
    }


    /* ==============================
       GENERAL MOBILE SECTION SPACING
    ============================== */

    .intro,
    .how-it-works,
    .uses,
    .pricing,
    .booking,
    .faq,
    .contact {
        padding: 65px 6%;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }


    /* ==============================
       WHY RENT MY RAMP
    ============================== */

    .intro-heading {
        gap: 22px;
    }

    .intro h2 {
        font-size: 43px;
        line-height: .9;
        letter-spacing: -2px;
    }

    .intro-description p {
        font-size: 14px;
        line-height: 1.65;
    }

    .text-link {
        margin-top: 18px;
        font-size: 10px;
    }

    .benefits {
        grid-template-columns: 1fr 1fr;

        margin-top: 45px;

        border-bottom: none;
    }

    .benefit,
    .benefit:first-child {
        padding: 25px 18px;
    }

    .benefit {
        border-right: 1px solid #292929;
        border-bottom: 1px solid #292929;
    }

    .benefit:nth-child(2n) {
        border-right: none;
    }

    .benefit-number {
        margin-bottom: 18px;
        font-size: 10px;
    }

    .benefit h3 {
        font-size: 15px;
        margin-bottom: 9px;
    }

    .benefit p {
        font-size: 11px;
        line-height: 1.55;
    }


    /* ==============================
       HOW IT WORKS
    ============================== */

    .how-header {
        gap: 22px;
    }

    .how-header h2 {
        font-size: 43px;
        line-height: .9;
        letter-spacing: -2px;
    }

    .how-description p {
        font-size: 13px;
        line-height: 1.65;
    }

    .how-steps {
        margin-top: 40px;
    }

    .how-step,
    .how-step:not(:first-child) {
        min-height: auto;

        padding: 25px 0;
    }

    .how-step:hover {
        transform: none;
    }

    .step-top {
        margin-bottom: 20px;
    }

    .step-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 20px;
    }

    .step-icon svg {
        width: 23px;
        height: 23px;
    }

    .how-step h3 {
        font-size: 17px;
        margin-bottom: 9px;
    }

    .how-step p {
        font-size: 12px;
        line-height: 1.6;
    }

    .how-cta {
        margin-top: 35px;

        padding: 20px;

        gap: 18px;
    }

    .how-cta strong {
        font-size: 16px;
    }

    .how-cta .primary-btn {
        width: 100%;
        text-align: center;
    }


    /* ==============================
       WHAT CAN YOU USE IT FOR
    ============================== */

    .uses-header {
        gap: 22px;
    }

    .uses-header h2 {
        font-size: 43px;
        line-height: .9;
        letter-spacing: -2px;
    }

    .uses-description p {
        font-size: 13px;
        line-height: 1.65;
    }

    .uses-grid {
        grid-template-columns: 1fr;

        margin-top: 40px;

        background: transparent;
        border: none;

        gap: 1px;
    }

    .use-card {
        min-height: 0;

        padding: 22px 20px;

        display: grid;

        grid-template-columns: 46px 1fr;

        column-gap: 17px;

        align-items: center;

        background: #0d0f12;

        border-bottom: 1px solid #292c30;
    }

    .use-card:hover {
        transform: none;
    }

    .use-number {
        top: 12px;
        right: 15px;

        font-size: 55px;
    }

    .use-icon {
        width: 44px;
        height: 44px;

        grid-row: 1 / 3;

        margin: 0;
    }

    .use-icon svg {
        width: 21px;
        height: 21px;
    }

    .use-card h3 {
        margin: 0 45px 5px 0;

        font-size: 16px;
    }

    .use-card p {
        margin: 0 35px 0 0;

        font-size: 11px;
        line-height: 1.5;
    }

    .use-arrow {
        display: none;
    }

    .uses-note {
        margin-top: 25px;

        gap: 15px;

        font-size: 9px;
        line-height: 1.6;
    }


        /* ==============================
           PRICING
        ============================== */

        .pricing {
            padding: 65px 6%;
        }

        .pricing-header {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .pricing-header h2 {
            font-size: 43px;
            line-height: .9;
            letter-spacing: -2px;
        }

        .pricing-description p {
            font-size: 13px;
            line-height: 1.6;
        }

        .pricing-grid {
            grid-template-columns: 1fr;

            margin-top: 35px;

            gap: 8px;
        }

        .price-card {
            padding: 22px 20px;
        }

        .price-number {
            font-size: 55px;
        }

        .price-card-top {
            margin-bottom: 15px;
        }

        .duration {
            font-size: 21px;
        }

        .price-options div {
            min-height: 45px;
        }

        .price-options strong {
            font-size: 18px;
        }

        .price-card > a {
            margin-top: 15px;
            padding: 12px;
        }


    /* ==============================
       BOOKING
       TEMPORARY - REMOVED LATER
    ============================== */

    .booking {
        gap: 35px;
    }

    .booking-form {
        padding: 22px;
    }


    /* ==============================
       FAQ
    ============================== */

    .faq-header {
        gap: 22px;
    }

    .faq-header h2 {
        font-size: 43px;
        line-height: .9;
        letter-spacing: -2px;
    }

    .faq-description p {
        font-size: 13px;
        line-height: 1.65;
    }

    .faq-container {
        margin-top: 40px;
    }

    .faq-question {
        min-height: 68px;

        grid-template-columns: 35px 1fr 32px;

        gap: 8px;
    }

    .faq-number {
        font-size: 9px;
    }

    .faq-title {
        font-size: 13px;
        line-height: 1.3;
    }

    .faq-plus {
        width: 30px;
        height: 30px;

        font-size: 18px;
    }

    .faq-answer p {
        padding: 0 38px 22px 35px;

        font-size: 12px;
        line-height: 1.6;
    }


    /* ==============================
       CONTACT
    ============================== */

    .contact-header {
        gap: 22px;
    }

    .contact-header h2 {
        font-size: 43px;
        line-height: .9;
        letter-spacing: -2px;
    }

    .contact-intro p {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        margin-top: 40px;
    }

    .hours-card {
        grid-column: auto;
    }

    .contact-card {
        min-height: auto;

        padding: 27px 25px;
    }

    .contact-number {
        font-size: 60px;
    }

    .contact-label {
        margin-bottom: 22px;
    }

    .contact-card h3 {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .contact-detail {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .contact-method {
        margin-bottom: 16px;
    }

    .opening-hours div {
        gap: 15px;
        padding: 7px 0;
    }

    .after-hours {
        margin-top: 20px;

        grid-template-columns: 45px 1fr;

        gap: 15px;

        padding: 20px;
    }

    .after-hours-icon {
        width: 42px;
        height: 42px;

        font-size: 22px;
    }

    .after-hours-text strong {
        font-size: 14px;
    }

    .after-hours-text p {
        font-size: 11px;
    }

    .after-hours .secondary-btn {
        grid-column: 1 / -1;

        width: 100%;

        text-align: center;
    }


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

    .site-footer {
        padding: 0 6%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 30px 20px;

        padding: 45px 0 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: none;
    }

    .footer-logo-image {
        margin-bottom: 15px;
    }

    .footer-logo-image img {
        width: 145px;
    }

    .footer-brand p {
        max-width: 270px;

        margin-bottom: 20px;

        font-size: 11px;
    }

    .footer-column {
        gap: 10px;

        padding-top: 20px;

        border-top: 1px solid #202328;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-heading {
        margin-bottom: 5px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 11px;
    }

    .footer-bottom {
        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }
}

/* ==========================================
       BOOKING PAGE
    ========================================== */

    .booking-page {
        background: #08090b;
    }


    /* BOOKING HERO */

    .booking-hero {
        min-height: 520px;

        display: flex;
        align-items: flex-end;

        padding: 170px 8% 80px;

        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, .97),
                rgba(0, 0, 0, .72),
                rgba(0, 0, 0, .35)
            ),
            url("images/ramp.png");

        background-size: cover;
        background-position: center;
    }

    .booking-hero-content {
        width: 100%;
        max-width: 1400px;

        margin: auto;
    }

    .booking-back {
        display: inline-block;

        margin-bottom: 45px;

        color: #777;

        font-size: 9px;
        font-weight: 900;

        letter-spacing: 2px;

        transition: .2s ease;
    }

    .booking-back:hover {
        color: #ffffff;
    }

    .booking-hero h1 {
        font-size: clamp(65px, 8vw, 110px);

        line-height: .82;

        letter-spacing: -5px;

        font-weight: 900;
    }

    .booking-hero h1 span {
        color: #e21d2d;
    }

    .booking-hero-description {
        max-width: 500px;

        margin-top: 30px;

        color: #999;

        font-size: 15px;
        line-height: 1.7;
    }


    /* ==========================================
       BOOKING OPTIONS
    ========================================== */

    .booking-options {
        padding: 100px 8% 120px;

        background: #0e1013;
    }

    .booking-options-header {
        max-width: 1400px;

        margin: auto;

        display: grid;

        grid-template-columns: 1.4fr .6fr;

        gap: 100px;

        align-items: end;
    }

    .booking-options-header h2 {
        font-size: clamp(48px, 5vw, 72px);

        line-height: .9;

        letter-spacing: -3px;

        font-weight: 900;
    }

    .booking-options-header h2 span {
        color: #e21d2d;
    }

    .booking-options-header > p {
        max-width: 420px;

        color: #888;

        font-size: 14px;

        line-height: 1.7;
    }


    /* ==========================================
       BOOKING CARDS
    ========================================== */

    .booking-option-grid {
        max-width: 1400px;

        margin: 60px auto 0;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 12px;
    }

    .booking-option-card {
        position: relative;

        padding: 35px;

        background: #08090b;

        border: 1px solid #292c30;

        overflow: hidden;
    }

    .booking-popular {
        border: 2px solid #e21d2d;
    }

    .booking-card-number {
        position: absolute;

        top: 10px;
        right: 20px;

        color: rgba(255, 255, 255, .035);

        font-size: 90px;
        font-weight: 900;

        line-height: 1;
    }

    .booking-popular-label {
        position: absolute;

        top: 0;
        left: 0;

        padding: 7px 12px;

        background: #e21d2d;

        color: #ffffff;

        font-size: 8px;
        font-weight: 900;

        letter-spacing: 1.5px;
    }

    .booking-duration {
        position: relative;

        display: flex;

        align-items: baseline;

        gap: 10px;

        z-index: 2;
    }

    .booking-duration span {
        font-size: 70px;

        line-height: 1;

        font-weight: 900;
    }

    .booking-duration small {
        color: #e21d2d;

        font-size: 11px;
        font-weight: 900;

        letter-spacing: 2px;
    }

    .booking-job-type {
        margin-top: 8px;
        margin-bottom: 30px;

        color: #666;

        font-size: 9px;
        font-weight: 900;

        letter-spacing: 2px;
    }


    /* PRICE CHOICES */

    .booking-price-options {
        border-top: 1px solid #292c30;
    }

    .hire-option {
        width: 100%;

        min-height: 78px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 20px;

        padding: 0 15px;

        background: transparent;

        border: none;
        border-bottom: 1px solid #292c30;

        color: #ffffff;

        cursor: pointer;

        text-align: left;

        transition: .2s ease;
    }

    .hire-option:hover {
        background: #14171b;
    }

    .hire-option.selected {
        background: #e21d2d;
    }

    .hire-option span {
        display: flex;

        flex-direction: column;

        gap: 5px;

        font-size: 12px;

        font-weight: 900;
    }

    .hire-option small {
        color: #666;

        font-size: 8px;

        letter-spacing: 1.5px;

        transition: .2s;
    }

    .hire-option.selected small {
        color: rgba(255, 255, 255, .65);
    }

    .hire-option strong {
        font-size: 22px;
        font-weight: 900;
    }


    /* ==========================================
       SELECTION BAR
    ========================================== */

    .booking-selection {
        max-width: 1400px;

        margin: 30px auto 0;

        display: grid;

        grid-template-columns: 1fr auto auto;

        align-items: center;

        gap: 45px;

        padding: 25px 30px;

        background: #08090b;

        border-left: 3px solid #e21d2d;
    }

    .selection-info {
        display: flex;

        flex-direction: column;

        gap: 6px;
    }

    .selection-label,
    .selection-price span {
        color: #666;

        font-size: 8px;

        font-weight: 900;

        letter-spacing: 2px;
    }

    .selection-info strong {
        font-size: 16px;

        font-weight: 900;
    }

    .selection-info > span:last-child {
        color: #777;

        font-size: 11px;
    }

    .selection-price {
        display: flex;

        flex-direction: column;

        gap: 4px;

        min-width: 90px;
    }

    .selection-price strong {
        font-size: 26px;

        font-weight: 900;
    }

    .continue-booking {
        padding: 16px 24px;

        background: #e21d2d;

        border: none;

        color: #ffffff;

        font-size: 10px;
        font-weight: 900;

        letter-spacing: 1px;

        cursor: pointer;

        transition: .2s ease;
    }

    .continue-booking:hover:not(:disabled) {
        background: #ffffff;

        color: #08090b;
    }

    .continue-booking:disabled {
        background: #25282c;

        color: #666;

        cursor: not-allowed;
    }


    /* ==========================================
       BOOKING AFTER HOURS
    ========================================== */

    .booking-after-hours {
        max-width: 1400px;

        margin: 20px auto 0;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 30px;

        padding: 25px 30px;

        border: 1px solid #292c30;
    }

    .booking-after-hours div {
        display: flex;

        flex-direction: column;

        gap: 5px;
    }

    .booking-after-hours div > span {
        color: #e21d2d;

        font-size: 8px;

        font-weight: 900;

        letter-spacing: 2px;
    }

    .booking-after-hours strong {
        font-size: 15px;
    }

    .booking-after-hours p {
        color: #777;

        font-size: 11px;
    }

    .booksy-notice {
        max-width: 1400px;

        margin: 12px auto 0;

        color: #666;

        font-size: 10px;

        line-height: 1.6;

        text-align: right;
    }


    /* ==========================================
       BOOKING PAGE MOBILE
    ========================================== */

    @media (max-width: 700px) {

        .booking-hero {
            min-height: 440px;

            padding: 120px 6% 55px;

            background:
                linear-gradient(
                    180deg,
                    rgba(0, 0, 0, .40),
                    rgba(0, 0, 0, .92)
                ),
                url("images/ramp.png");

            background-size: auto 90%;
            background-position: center top;
            background-repeat: no-repeat;
        }

        .booking-back {
            margin-bottom: 30px;
        }

        .booking-hero h1 {
            font-size: 55px;

            letter-spacing: -3px;
        }

        .booking-hero-description {
            margin-top: 20px;

            font-size: 13px;
        }

        .booking-options {
            padding: 65px 6%;
        }

        .booking-options-header {
            grid-template-columns: 1fr;

            gap: 20px;
        }

        .booking-options-header h2 {
            font-size: 43px;

            letter-spacing: -2px;
        }

        .booking-options-header > p {
            font-size: 13px;
        }

        .booking-option-grid {
            grid-template-columns: 1fr;

            margin-top: 40px;

            gap: 10px;
        }

        .booking-option-card {
            padding: 25px 22px;
        }

        .booking-duration span {
            font-size: 52px;
        }

        .booking-job-type {
            margin-bottom: 20px;
        }

        .hire-option {
            min-height: 62px;
        }

        .hire-option strong {
            font-size: 19px;
        }

        .booking-selection {
            grid-template-columns: 1fr auto;

            gap: 20px;

            padding: 22px 20px;
        }

        .selection-price {
            text-align: right;
        }

        .continue-booking {
            grid-column: 1 / -1;

            width: 100%;
        }

        .booking-after-hours {
            flex-direction: column;

            align-items: flex-start;

            padding: 22px 20px;
        }

        .booking-after-hours .secondary-btn {
            width: 100%;

            text-align: center;
        }

        .booksy-notice {
            text-align: left;
            font-size: 9px;
        }

            /* WORKSHOP SHOWCASE */

            .workshop-showcase {
                min-height: 560px;
                padding: 55px 6%;
                background-position: center center;
                align-items: flex-end;
            }

            .workshop-showcase-overlay {
                background:
                    linear-gradient(
                        180deg,
                        rgba(5, 6, 8, 0.08) 0%,
                        rgba(5, 6, 8, 0.25) 35%,
                        rgba(5, 6, 8, 0.92) 75%,
                        rgba(5, 6, 8, 0.98) 100%
                    );
            }

            .workshop-showcase h2 {
                font-size: 42px;
                line-height: 0.9;
                letter-spacing: -2px;
            }

            .workshop-description {
                max-width: 330px;
                margin: 20px 0 25px;

                font-size: 13px;
                line-height: 1.6;
            }

                /* ==========================================
                   WHAT'S INCLUDED
                ========================================== */

                .included {
                    padding: 100px 6%;
                    background: #0d0f12;
                }


                /* HEADER */

                .included-header {
                    max-width: 1400px;
                    margin: 0 auto;

                    display: grid;
                    grid-template-columns: 1.4fr 0.6fr;
                    gap: 80px;

                    align-items: end;
                }

                .included-header h2 {
                    margin: 0;

                    color: #ffffff;

                    font-size: clamp(48px, 5vw, 76px);
                    font-weight: 900;

                    line-height: 0.9;
                    letter-spacing: -3px;
                }

                .included-header h2 span {
                    color: #e21d2d;
                }

                .included-description {
                    max-width: 430px;
                }

                .included-description p {
                    margin: 0;

                    color: #8e9297;

                    font-size: 15px;
                    line-height: 1.7;
                }


                /* ITEMS */

                .included-list {
                    max-width: 1400px;

                    margin: 50px auto 0;

                    border-top: 1px solid #292c30;
                }

                .included-item {
                    position: relative;

                    display: grid;
                    grid-template-columns: 90px 75px 1fr;

                    align-items: center;
                    gap: 25px;

                    min-height: 115px;

                    border-bottom: 1px solid #292c30;

                    transition:
                        background 0.25s ease,
                        padding 0.25s ease;
                }

                .included-item:hover {
                    padding-left: 20px;
                    background: #111317;
                }


                /* NUMBER */

                .included-number {
                    color: #4e5257;

                    font-size: 12px;
                    font-weight: 900;

                    letter-spacing: 2px;
                }


                /* ICON */

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

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

                    border: 1px solid #34383d;
                }

                .included-icon svg {
                    width: 27px;
                    height: 27px;

                    fill: none;

                    stroke: #e21d2d;
                    stroke-width: 1.5;
                    stroke-linecap: round;
                    stroke-linejoin: round;
                }


                /* TEXT */

                .included-content {
                    display: grid;
                    grid-template-columns: 0.9fr 1.1fr;

                    align-items: center;
                    gap: 35px;
                }

                .included-content h3 {
                    margin: 0;

                    color: #ffffff;

                    font-size: 20px;
                    font-weight: 900;

                    letter-spacing: -0.5px;
                }

                .included-content p {
                    max-width: 500px;

                    margin: 0;

                    color: #777c82;

                    font-size: 14px;
                    line-height: 1.65;
                }


                /* CTA */

                .included-cta {
                    max-width: 1400px;

                    margin: 45px auto 0;
                    padding: 30px 35px;

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

                    gap: 30px;

                    background: #08090b;

                    border-left: 3px solid #e21d2d;
                }

                .included-cta div {
                    display: flex;
                    flex-direction: column;
                    gap: 5px;
                }

                .included-cta span {
                    color: #e21d2d;

                    font-size: 10px;
                    font-weight: 900;

                    letter-spacing: 3px;
                }

                .included-cta strong {
                    color: #ffffff;

                    font-size: 17px;
                    font-weight: 900;
                }


                /* ITEMS */

                .included-list {
                    margin-top: 40px;
                }

                .included-item {
                    grid-template-columns: 38px 50px 1fr;

                    gap: 12px;

                    min-height: 0;
                    padding: 22px 0;
                }

                .included-item:hover {
                    padding-left: 0;
                    background: transparent;
                }

                .included-number {
                    font-size: 10px;
                }

                .included-icon {
                    width: 44px;
                    height: 44px;
                }

                .included-icon svg {
                    width: 22px;
                    height: 22px;
                }

                .included-content {
                    display: block;
                }

                .included-content h3 {
                    margin-bottom: 7px;

                    font-size: 14px;
                }

                .included-content p {
                    font-size: 12px;
                    line-height: 1.5;
                }


                /* CTA */

                .included-cta {
                    margin-top: 30px;

                    padding: 24px 20px;

                    display: block;
                }

                .included-cta strong {
                    font-size: 15px;
                }

                .included-cta .primary-btn {
                    display: flex;

                    margin-top: 20px;

                    width: 100%;

                    justify-content: center;
                }

                    /* ==========================================
                       MOBILE STICKY BOOKING BAR
                    ========================================== */

                    .mobile-booking-bar {
                        position: fixed;

                        left: 12px;
                        right: 12px;
                        bottom: 12px;

                        z-index: 9999;

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

                        gap: 15px;

                        padding: 10px 10px 10px 16px;

                        background: rgba(8, 9, 11, 0.96);

                        border: 1px solid #2b2e32;
                        border-left: 3px solid #e21d2d;

                        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);

                        backdrop-filter: blur(10px);
                    }

                    .mobile-booking-text {
                        display: flex;
                        flex-direction: column;

                        gap: 3px;
                    }

                    .mobile-booking-text span {
                        color: #777;

                        font-size: 7px;
                        font-weight: 900;

                        letter-spacing: 1.5px;
                    }

                    .mobile-booking-text strong {
                        color: #ffffff;

                        font-size: 12px;
                        font-weight: 900;
                    }

                    .mobile-booking-bar > a {
                        flex-shrink: 0;

                        padding: 13px 15px;

                        background: #e21d2d;

                        color: #ffffff;

                        font-size: 9px;
                        font-weight: 900;

                        letter-spacing: .5px;

                        transition: .2s ease;
                    }

                    .mobile-booking-bar > a:active {
                        background: #ffffff;
                        color: #08090b;
                    }

                    body {
                        padding-bottom: 80px;
                    }

                        .nav-book {
                            display: none;
                        }

                            .hero .primary-btn {
                                display: none;
                            }
    }

/* ==========================================
   CURRENT OPENING DAY
========================================== */

.opening-day {
    color: #f5f5f5;
}

.opening-day.current-day {
    color: #e21d2d;
    font-weight: 700;
}

.opening-day.current-day span,
.opening-day.current-day strong {
    color: #e21d2d;
}

/* ==========================================
   CURRENT OPENING DAY
========================================== */

.hours-row.current-day span,
.hours-row.current-day strong {
    color: #e21d2d !important;
    font-size: 110% !important;
    font-weight: 900;
}
```

/* ==========================================
   FINAL MOBILE FIXES
   ========================================== */

@media (max-width: 768px) {

    /* ------------------------------------------
       STOP PAGE GOING OFF THE RIGHT SIDE
       ------------------------------------------ */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }


    /* ------------------------------------------
       HEADER
       Keep logo, remove redundant BOOK NOW
       ------------------------------------------ */

    .navbar {
        width: 100%;
        max-width: 100%;
    }

    .nav-book {
        display: none !important;
    }


    /* ------------------------------------------
       HERO
       Remove BOOK A RAMP but keep VIEW PRICES
       ------------------------------------------ */

    .hero-buttons .primary-btn {
        display: none !important;
    }

    .hero-buttons {
        display: flex;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons .secondary-btn {
        display: inline-flex !important;
        width: auto;
        max-width: 100%;
    }


    /* ------------------------------------------
       REMOVE OTHER REPEATED BOOKING CTAs
       ------------------------------------------ */

    .how-cta {
        display: none !important;
    }

    .workshop-showcase .primary-btn {
        display: none !important;
    }

    .included-cta {
        display: none !important;
    }

    .footer-book {
        display: none !important;
    }


    /* ------------------------------------------
       KEEP PRICING BOOKING LINKS
       ------------------------------------------ */

    .pricing-grid .price-card > a {
        display: flex !important;
    }


    /* ------------------------------------------
       PREVENT COMMON SECTIONS OVERFLOWING
       ------------------------------------------ */

    section,
    .hero,
    .intro,
    .how-it-works,
    .workshop-showcase,
    .uses,
    .pricing,
    .included,
    .faq,
    .contact,
    .site-footer {
        width: 100%;
        max-width: 100%;
    }

    img,
    svg {
        max-width: 100%;
    }


    /* ------------------------------------------
       MOBILE STICKY BOOKING BAR
       ------------------------------------------ */

    .mobile-booking-bar {
        position: fixed;

        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;

        width: auto !important;
        max-width: none !important;

        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;

        padding: 12px 12px 12px 16px;

        background: rgba(8, 9, 11, 0.96);
        border: 1px solid #2a2d31;
        border-left: 3px solid #ed1b2f;

        z-index: 9999;

        box-sizing: border-box;
    }


    .mobile-booking-text {
        min-width: 0;
        flex: 1;
    }

    .mobile-booking-text span {
        display: block;
        font-size: 8px;
        letter-spacing: 2px;
        color: #777b82;
        margin-bottom: 4px;
    }

    .mobile-booking-text strong {
        display: block;
        font-size: 13px;
        color: #fff;
        white-space: nowrap;
    }


    .mobile-booking-bar > a {
        flex: 0 0 auto;

        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        width: auto !important;
        min-width: 118px;
        max-width: 42%;

        padding: 14px 16px;

        background: #ed1b2f;
        color: #fff;

        text-decoration: none;
        font-weight: 800;
        font-size: 11px;
        white-space: nowrap;
    }


    /* Give page room behind fixed booking bar */

    body {
        padding-bottom: 90px;
    }

}


/* ==========================================
   DESKTOP
   Hide mobile booking bar completely
   ========================================== */

@media (min-width: 769px) {

    .mobile-booking-bar {
        display: none !important;
    }

}

/* ==========================================
   FINAL MOBILE LAYOUT FIXES
========================================== */

@media (max-width: 768px) {

    /* ==========================================
       AFTER HOURS
    ========================================== */

    .after-hours {
        width: 100% !important;
        max-width: 100% !important;

        display: grid !important;
        grid-template-columns: 90px 1fr !important;

        gap: 18px !important;

        padding: 28px 22px !important;

        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .after-hours-icon {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .after-hours-text {
        grid-column: 2 !important;
        grid-row: 1 !important;

        min-width: 0 !important;
    }

    .after-hours .secondary-btn {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 10px 0 0 0 !important;

        box-sizing: border-box !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }


    /* ==========================================
       REMOVE FOOTER BOOK BUTTON
    ========================================== */

    .site-footer .footer-book {
        display: none !important;
    }


    /* ==========================================
       WHAT'S INCLUDED
       FIX TEXT GOING OFF SCREEN
    ========================================== */

    .included {
        width: 100% !important;
        max-width: 100% !important;

        overflow: hidden !important;
    }

    .included-header {
        width: 100% !important;
        max-width: 100% !important;

        display: block !important;
    }

    .included-header > div {
        width: 100% !important;
        max-width: 100% !important;
    }

    .included-description {
        width: 100% !important;
        max-width: 100% !important;

        margin-top: 22px !important;
    }

    .included-description p {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        white-space: normal !important;
        overflow-wrap: break-word !important;
    }


    /* ==========================================
       INCLUDED ROWS
    ========================================== */

    .included-list {
        width: 100% !important;
        max-width: 100% !important;
    }

    .included-item {
        width: 100% !important;
        max-width: 100% !important;

        grid-template-columns: 38px 50px minmax(0, 1fr) !important;

        box-sizing: border-box !important;
    }

    .included-content {
        display: block !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .included-content h3,
    .included-content p {
        width: 100% !important;
        max-width: 100% !important;

        white-space: normal !important;
        overflow-wrap: break-word !important;
    }


    /* ==========================================
       EXTRA OVERFLOW PROTECTION
    ========================================== */

    .contact,
    .contact-grid,
    .contact-card,
    .after-hours,
    .included,
    .included-header,
    .included-list,
    .included-item,
    .included-content,
    .site-footer,
    .footer-main,
    .footer-brand {
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Slight delay variations */

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}


/* ==========================================
   BUTTON HOVER EFFECTS
   ========================================== */

.btn,
.book-btn,
.cta-button,
a[class*="btn"] {
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.btn:hover,
.book-btn:hover,
.cta-button:hover,
a[class*="btn"]:hover {
    transform: translateY(-2px);
}


/* ==========================================
   FEATURE / PRICE HOVER
   ========================================== */

.feature-row,
.price-card,
.pricing-card {
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.feature-row:hover {
    transform: translateX(5px);
}

.price-card:hover,
.pricing-card:hover {
    transform: translateY(-4px);
    border-color: #ed1c2e;
}


/* ==========================================
   IMAGE EFFECT
   ========================================== */

img {
    transition: transform 0.5s ease;
}

.engine-image {
    overflow: hidden;
}

.engine-image img:hover {
    transform: scale(1.025);
}


/* ==========================================
   ACCESSIBILITY
   ========================================== */

@media (prefers-reduced-motion: reduce) {

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    * {
        scroll-behavior: auto !important;
    }
}

/* ==========================================
   CONTACT HEADING OVERFLOW FIX
   ========================================== */

.contact-card {
    min-width: 0;
    overflow: hidden;
}

.contact-card h3 {
    max-width: 100%;
    overflow-wrap: normal;
}

.contact-card:first-child h3 {
    font-size: clamp(28px, 2vw, 42px);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

/* ==========================================
   LOCATION HEADING - DESKTOP FIT FIX
========================================== */

.contact-card:first-child h3 {
    font-size: clamp(26px, 2.05vw, 38px) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.045em !important;
    white-space: nowrap !important;
}

/* Slightly smaller on narrower desktop screens */
@media (min-width: 769px) and (max-width: 1400px) {

    .contact-card:first-child h3 {
        font-size: 30px !important;
    }

}

/* Restore normal mobile behaviour */
@media (max-width: 768px) {

    .contact-card:first-child h3 {
        font-size: 32px !important;
        letter-spacing: -0.02em !important;
        white-space: normal !important;
    }

}

/* ==========================================
   LAPTOP CONTACT SECTION FIX
   769px - 1400px
========================================== */

@media (min-width: 769px) and (max-width: 1400px) {

    /* Give the contact section more usable width */
    .contact-container {
        width: 94% !important;
        max-width: 1200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Keep the three cards equal */
    .contact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        width: 100% !important;
    }

    /* Reduce excessive card padding */
    .contact-card {
        padding-left: 32px !important;
        padding-right: 32px !important;
        min-width: 0 !important;
    }

    /* Location heading */
    .contact-card:first-child h3 {
        font-size: 27px !important;
        line-height: 1 !important;
        letter-spacing: -0.04em !important;
        white-space: nowrap !important;
    }

    /* Other two headings */
    .contact-card:nth-child(2) h3,
    .contact-card:nth-child(3) h3 {
        font-size: 30px !important;
    }

    /* Contact details */
    .contact-card p,
    .contact-card a {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
    }

    /* Opening hours */
    .hours-row {
        gap: 15px !important;
    }

    .hours-row span {
        font-size: 13px !important;
    }

    .hours-row.current-day span {
        font-size: 14px !important;
    }
}

/* ==========================================
   MICRO INTERACTIONS
========================================== */


/* ==========================================
   1. BUTTON PRESS EFFECT
========================================== */

.primary-btn,
.secondary-btn,
.nav-book,
.mobile-booking-bar > a,
.price-card > a {
    transition:
        transform 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

/* Small lift when hovering */
.primary-btn:hover,
.secondary-btn:hover,
.nav-book:hover,
.mobile-booking-bar > a:hover,
.price-card > a:hover {
    transform: translateY(-2px);
}

/* Physical press feeling */
.primary-btn:active,
.secondary-btn:active,
.nav-book:active,
.mobile-booking-bar > a:active,
.price-card > a:active {
    transform: translateY(1px) scale(0.98);
}


/* ==========================================
   2. TEXT LINK ARROW MOVEMENT
========================================== */

.text-link {
    display: inline-flex;
    align-items: center;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.text-link:hover {
    transform: translateX(5px);
}


/* CONTACT LINKS */

.contact-card a {
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.contact-card a:hover {
    color: #ed1b2f;
}


/* ==========================================
   3. ENGINE BAY IMAGE EFFECT
========================================== */

.workshop-showcase {
    transition:
        background-size 0.8s ease,
        filter 0.4s ease;
}

/* Desktop only */
@media (min-width: 769px) {

    .workshop-showcase:hover {
        background-size: 103%;
    }

}


/* ==========================================
   4. CONTACT CARD HOVER
========================================== */

.contact-card {
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease;
}

@media (min-width: 769px) {

    .contact-card:hover {
        background-color: rgba(255, 255, 255, 0.015);
    }

}


/* ==========================================
   5. WHAT'S INCLUDED ICON
========================================== */

.included-icon {
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.included-icon svg {
    transition:
        transform 0.25s ease;
}

@media (min-width: 769px) {

    .included-item:hover .included-icon {
        transform: translateX(4px);
        border-color: #ed1b2f;
        background-color: rgba(237, 27, 47, 0.04);
    }

    .included-item:hover .included-icon svg {
        transform: scale(1.08);
    }

}


/* ==========================================
   6. HOW IT WORKS NUMBERS
========================================== */

.step-number {
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

@media (min-width: 769px) {

    .step:hover .step-number {
        transform: translateY(-3px);
        color: #ed1b2f;
    }

}


/* ==========================================
   7. USE CARDS ICON MOVEMENT
========================================== */

.use-icon {
    transition:
        transform 0.25s ease;
}

@media (min-width: 769px) {

    .use-card:hover .use-icon {
        transform: translateY(-4px);
    }

}


/* ==========================================
   8. RESPECT REDUCED MOTION SETTINGS
========================================== */

@media (prefers-reduced-motion: reduce) {

    .primary-btn,
    .secondary-btn,
    .nav-book,
    .mobile-booking-bar > a,
    .price-card > a,
    .text-link,
    .workshop-showcase,
    .included-icon,
    .included-icon svg,
    .step-number,
    .use-icon {
        transition: none !important;
        transform: none !important;
    }

}