/* ==============================
   FAULTLESS CAR WASH
   MAIN STYLES
================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    line-height: 1.6;

    background:
        linear-gradient(
            rgba(0, 70, 160, 0.90),
            rgba(0, 25, 90, 0.96)
        ),
        url("images/bubble-bg.png");

    background-size: 420px;
    background-repeat: repeat;
    background-attachment: fixed;
}


/* ==============================
   HEADER / NAVIGATION
================================= */

.main-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(2, 12, 28, 0.92);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/* NAVBAR */

.navbar {
    max-width: 1300px;

    height: 90px;

    margin: auto;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;

    align-items: center;

    text-decoration: none;
}

.logo img {
    width: 175px;

    height: auto;

    display: block;
}


/* LINKS */

.nav-links {
    list-style: none;

    display: flex;

    align-items: center;

    gap: 25px;
}

.nav-links li a {
    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: bold;

    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ffd400;
}


/* GET DIRECTIONS BUTTON */

.nav-links .nav-directions {
    background: #ffd400;

    color: #000000;

    padding: 12px 18px;

    border-radius: 5px;
}

.nav-links .nav-directions:hover {
    background: #ffffff;

    color: #000000;

    transform: translateY(-2px);
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    background: none;

    border: none;

    color: #ffffff;

    font-size: 30px;

    cursor: pointer;
}


/* ==============================
   GENERAL SECTIONS
================================= */

section {
    padding: 100px 30px;
    text-align: center;
}

section h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

section > p {
    color: #bdbdbd;
    max-width: 700px;
    margin: 0 auto 30px;
}



/* ==============================
   HOME / HERO
================================= */

#home {
    min-height: 100vh;

    padding: 150px 30px 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.40),
            rgba(0, 0, 0, 0.75)
        ),
        url("images/faultless-building.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;

    text-align: center;
}


/* SMALL ORLANDO TEXT */

.hero-tag {
    color: #ffd400;

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 15px;
}


/* MAIN TITLE */

#home h1 {
    color: #ffffff;

    font-size: clamp(48px, 7vw, 90px);

    line-height: 1;

    letter-spacing: 3px;

    margin-bottom: 20px;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}


/* SUBTITLE */

#home h2 {
    color: #ffd400;

    font-size: clamp(25px, 3vw, 38px);

    margin-bottom: 20px;

    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}


/* DESCRIPTION */

.hero-description {
    color: #ffffff !important;

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 35px !important;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}


/* BUTTON CONTAINER */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;

    flex-wrap: wrap;
}


/* YELLOW BUTTON */

.btn-primary {
    display: inline-block;

    padding: 15px 30px;

    background: #ffd400;
    color: #000000;

    text-decoration: none;

    font-weight: bold;

    border-radius: 5px;

    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #ffffff;
}


/* BLUE BUTTON */

.btn-secondary {
    display: inline-block;

    padding: 15px 30px;

    background: #146bb3;
    color: #ffffff;

    text-decoration: none;

    font-weight: bold;

    border-radius: 5px;

    transition: 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #000000;
}


/* ==============================
   AUTOMATIC WASH
================================= */

#automatic {
    color: #ffffff;

    background:
        linear-gradient(
            rgba(0, 65, 155, 0.15),
            rgba(0, 30, 100, 0.25)
        ),
        url("images/bubble-background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* SECTION HEADING */

.section-heading {
    max-width: 750px;
    margin: 0 auto 55px;
}

.section-tag {
    color: #ffd400 !important;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 10px !important;
}

.section-heading h2 {
    margin-bottom: 15px;
}

.section-heading > p:last-child {
   color: #ffffff;

    font-size: 17px;

    max-width: 650px;

    margin: auto;
}


/* WASH CARDS */

.wash-options {
    max-width: 1100px;

    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.wash-card {
    position: relative;

    min-height: 330px;

    padding: 45px 30px;

    background: #071526;

    border: 2px solid #ededed;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

.wash-card:hover {
    transform: translateY(-8px);

    border-color: #146bb3;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}


/* SMALL LABEL */

.wash-label {
    color: #146bb3;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 8px;
}


/* WASH NAME */

.wash-card h3 {
    font-size: 27px;

    margin-bottom: 10px;
}


/* PRICE */

.wash-card h4 {
    color: #ffd400;

    font-size: 54px;

    line-height: 1;

    margin: 10px 0 25px;
}


/* DESCRIPTION */

.wash-note {
    color: #d5d5d5;

    font-size: 15px;

    max-width: 240px;
}


/* ULTIMATE CARD */

.wash-card.featured {
    background: #071526;

    color: #ffffff;

    border-color: #ffd400;

    transform: scale(1.05);
}

.wash-card.featured:hover {
    transform: scale(1.05) translateY(-8px);

    border-color: #ffd400;
}

.wash-card.featured .wash-label {
    color: #ffd400;
}

.wash-card.featured h4 {
    color: #ffd400;
}

.wash-card.featured .wash-note {
    color: #d0d0d0;
}


/* BEST WASH BADGE */

.popular-badge {
    position: absolute;

    top: -14px;

    background: #ffd400;
    color: #000000;

    padding: 7px 18px;

    border-radius: 50px;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1px;
}


/* DISCLAIMER */

.wash-disclaimer {
    color: #071526 !important;

    font-size: 13px;
    font-weight: bold;

    margin-top: 40px !important;
}

/* ==============================
   FAULTLESS APP
================================= */

.app-download {
    max-width: 1100px;

    margin: 80px auto 0;

    padding: 65px 40px;

    background:
        radial-gradient(
            circle at top right,
            #123f6d,
            #071526 55%,
            #03070c
        );

    border-radius: 15px;

    color: #ffffff;

    position: relative;

    overflow: hidden;
}


/* SMALL TITLE */

.app-tag {
    color: #ffd400;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 12px;
}


/* MAIN TITLE */

.app-download h2 {
    color: #ffffff;

    font-size: clamp(30px, 4vw, 45px);

    margin-bottom: 15px;
}


/* DESCRIPTION */

.app-description {
    color: #c7c7c7;

    font-size: 17px;

    margin-bottom: 30px;
}


/* BENEFITS */

.app-benefits {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;

    margin-bottom: 35px;
}

.app-benefits span {
    color: #ffffff;

    font-size: 14px;

    font-weight: bold;
}


/* APP BUTTONS */

.app-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.app-store-btn {
    width: 190px;
    min-height: 62px;

    padding: 9px 20px;

    background: #000000;
    color: #ffffff;

    border: 1px solid #555555;
    border-radius: 8px;

    text-decoration: none;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: 0.3s;
}

.app-store-btn:hover {
    transform: translateY(-4px);

    border-color: #ffd400;
}

.store-small {
    font-size: 10px;

    text-transform: uppercase;
}

.store-name {
    font-size: 20px;

    font-weight: bold;

    line-height: 1.1;
}


/* ==============================
   SELF SERVICE
================================= */

#self-service {
    background:
        linear-gradient(
            rgba(0, 22, 65, 0.92),
            rgba(0, 10, 35, 0.97)
        );

    color: #ffffff;
}


/* HEADER */

.self-service-header {
    max-width: 800px;

    margin: 0 auto 60px;
}

.self-service-tag {
    color: #ffd400;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 12px;
}

.self-service-header h2 {
    font-size: clamp(38px, 5vw, 58px);

    margin-bottom: 18px;
}

.self-service-header > p:last-child {
    color: #c6c6c6;

    max-width: 680px;

    margin: auto;

    font-size: 17px;
}


/* MAIN LAYOUT */

.self-service-layout {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 50px;

    align-items: center;
}


/* TEMPORARY PHOTO AREA */

.self-service-photo-placeholder {
    min-height: 500px;

    border-radius: 15px;

    border: 2px dashed rgba(255, 255, 255, 0.25);

    background:
        linear-gradient(
            135deg,
            #0c3665,
            #071526
        );

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.self-service-photo-placeholder span {
    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 3px;
}


/* RIGHT SIDE */

.self-service-info {
    text-align: left;
}

.self-small-title {
    color: #ffd400;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 10px;
}

.self-service-info > h3 {
    font-size: 34px;

    line-height: 1.15;

    margin-bottom: 35px;
}


/* STEPS */

.self-steps {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.self-step {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 15px;

    padding: 18px;

    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 10px;

    transition: 0.3s;
}

.self-step:hover {
    background: rgba(255, 255, 255, 0.10);

    transform: translateX(5px);
}

.self-step > span {
    width: 45px;
    height: 45px;

    background: #ffd400;

    color: #000000;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    font-weight: bold;
}

.self-step h4 {
    font-size: 18px;

    margin-bottom: 4px;
}

.self-step p {
    color: #aaaaaa;

    font-size: 14px;
}


/* BOTTOM STATS */

.self-service-bottom {
    max-width: 950px;

    margin: 70px auto 0;

    padding-top: 35px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.self-service-bottom div {
    display: flex;

    flex-direction: column;

    align-items: center;
}

.self-service-bottom strong {
    color: #ffd400;

    font-size: 27px;

    margin-bottom: 5px;
}

.self-service-bottom span {
    color: #b5b5b5;

    font-size: 13px;
}


/* ==============================
   DETAILING
================================= */

/* ==============================
   PROFESSIONAL DETAILING
================================= */

#detailing {
    background:
        linear-gradient(
            135deg,
            #03070c 0%,
            #071526 55%,
            #0b213b 100%
        );

    color: #ffffff;
}


/* HEADER */

.detailing-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.detailing-tag {
    color: #ffd400;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 12px;
}

.detailing-header h2 {
    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    margin-bottom: 20px;
}

.detailing-intro {
    color: #c7c7c7;

    max-width: 650px;

    margin: 0 auto 25px;

    font-size: 17px;
}

.detailing-hours {
    display: inline-flex;

    gap: 15px;

    align-items: center;

    padding: 10px 20px;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50px;
}

.detailing-hours span {
    color: #ffd400;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;
}

.detailing-hours strong {
    font-size: 14px;
}


/* PRICING */

.detail-pricing {
    max-width: 850px;

    margin: 0 auto 80px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.detail-price-card {
    padding: 45px 30px;

    background: #ffffff;

    color: #000000;

    border-radius: 15px;

    border-top: 5px solid #146bb3;

    transition: 0.3s;
}

.detail-price-card:hover {
    transform: translateY(-7px);
}

.vehicle-type {
    color: #146bb3;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 3px;
}

.detail-price-card h3 {
    font-size: 27px;

    margin: 5px 0 15px;
}

.detail-price {
    color: #146bb3;

    font-size: 55px;

    font-weight: bold;

    line-height: 1;

    margin-bottom: 20px;
}

.detail-price span {
    font-size: 25px;

    vertical-align: top;
}

.detail-price-card > p:last-child {
    color: #666666;
}

.featured-detail {
    border-top-color: #ffd400;
}


/* WHAT'S INCLUDED */

/* ==============================
   DETAILING EXPERIENCE
================================= */

.detail-experience {
    max-width: 1150px;
    margin: auto;
}

.experience-heading {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}


/* FAULTLESS DETAIL LABEL */

.experience-label {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-bottom: 20px;
}

.experience-label span {
    width: 55px;
    height: 2px;

    background: #ffd400;
}

.experience-label p {
    color: #ffd400;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 4px;

    margin: 0;
}


/* MAIN TITLE */

.experience-heading h3 {
    color: #ffffff;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 22px;
}

.experience-heading h3 span {
    color: #ffd400;
}


/* DESCRIPTION */

.experience-description {
    max-width: 700px;

    margin: auto;

    color: #aeb8c5;

    font-size: 16px;

    line-height: 1.7;
}


/* INCLUDED */

.included-modern {
    display: grid;
    grid-template-columns: 1fr;

    gap: 20px;

    margin-bottom: 100px;
}

.included-main {
    background: #ffffff;
    color: #000000;

    padding: 45px;

    border-radius: 15px;

    text-align: left;
}

.included-label {
    color: #146bb3;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 8px;
}

.included-main > h3 {
    font-size: 32px;

    margin-bottom: 10px;
}

.included-description {
    color: #666666;

    margin-bottom: 35px;

    max-width: 550px;
}


/* CHECK LIST */

.service-check-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.service-check {
    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 10px;

    padding: 17px;

    background: #f5f7fa;

    border-radius: 8px;
}

.service-check > span {
    width: 27px;
    height: 27px;

    background: #146bb3;
    color: #ffffff;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 12px;
    font-weight: bold;
}

.service-check strong {
    font-size: 14px;
}

.service-check p {
    color: #777777;

    font-size: 12px;

    margin-top: 3px;
}


/* BLUE HIGHLIGHT */

.included-highlight {
    background:
        linear-gradient(
            145deg,
            #0c4e8d,
            #071526
        );

    padding: 45px 30px;

    border-radius: 15px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    text-align: left;

    border: 1px solid #146bb3;
}

.highlight-number {
    color: #ffd400;

    font-size: 55px;
    font-weight: 900;

    line-height: 1;

    margin-bottom: 15px;
}

.included-highlight h3 {
    font-size: 27px;

    margin-bottom: 15px;
}

.included-highlight p {
    color: #b8c5d3;

    font-size: 14px;
}

.highlight-line {
    width: 100%;

    height: 1px;

    background: rgba(255,255,255,0.15);

    margin: 30px 0;
}

.included-highlight strong {
    color: #ffd400;

    margin-bottom: 8px;
}


/* ==============================
   PREMIUM DETAILING
================================= */

.premium-detailing {
    padding-top: 10px;
}

.premium-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}


/* SMALL LABEL */

.premium-label {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-bottom: 20px;
}

.premium-label span {
    width: 55px;
    height: 2px;

    background: #ffd400;
}

.premium-label p {
    color: #ffd400;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 4px;

    margin: 0;
}


/* TITLE */

.premium-heading h3 {
    color: #ffffff;

    font-size: clamp(40px, 5vw, 58px);

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 22px;
}

.premium-heading h3 span {
    color: #ffd400;
}


/* DESCRIPTION */

.premium-description {
    max-width: 720px;

    margin: auto;

    color: #aeb8c5;

    font-size: 16px;

    line-height: 1.7;
}


/* PREMIUM CARDS */

.premium-services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    margin-bottom: 50px;
}

.premium-service-card {
    position: relative;

    min-height: 330px;

    padding: 35px 25px;

    background: rgba(255,255,255,0.055);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 12px;

    text-align: left;

    display: flex;
    flex-direction: column;

    transition: 0.3s;
}

.premium-service-card:hover {
    transform: translateY(-7px);

    background: rgba(255,255,255,0.09);

    border-color: #146bb3;
}

.service-number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: rgba(255,255,255,0.20);

    font-size: 13px;

    font-weight: bold;
}

.service-icon {
    color: #ffd400;

    font-size: 35px;

    margin-bottom: 25px;
}

.premium-service-card h4 {
    font-size: 20px;

    margin-bottom: 15px;
}

.premium-service-card p {
    color: #aaaaaa;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.service-price {
    color: #ffd400;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-top: auto;
}

.featured-service {
    border-color: #ffd400;

    background:
        linear-gradient(
            145deg,
            rgba(20,107,179,0.30),
            rgba(255,255,255,0.05)
        );
}


/* CTA */

.premium-cta {
    background: #ffd400;

    color: #000000;

    padding: 30px 35px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    text-align: left;
}

.premium-cta p {
    font-size: 10px;

    font-weight: bold;

    letter-spacing: 2px;
}

.premium-cta h3 {
    font-size: 25px;
}

.premium-cta a {
    background: #071526;

    color: #ffffff;

    padding: 15px 25px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;

    font-weight: bold;

    transition: 0.3s;
}

.premium-cta a:hover {
    background: #ffffff;

    color: #000000;

    transform: translateY(-3px);
}

/* ==============================
   LOCATION
================================= */

/* ==============================
   LOCATION / CONTACT
================================= */

#location {
    background: #f5f5f5;
    color: #000000;
}


/* HEADER */

.location-header {
    max-width: 750px;
    margin: 0 auto 60px;
}

.location-tag {
    color: #146bb3;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 4px;

    margin-bottom: 10px;
}

.location-header h2 {
    font-size: clamp(38px, 5vw, 55px);

    margin-bottom: 15px;
}

.location-header > p:last-child {
    color: #666666;

    max-width: 650px;

    margin: auto;
}


/* MAIN LAYOUT */

.location-layout {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.2fr;

    gap: 30px;

    align-items: stretch;
}


/* LEFT SIDE */

.location-info {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.location-card {
    background: #ffffff;

    padding: 28px;

    border-radius: 12px;

    text-align: left;

    border-left: 4px solid #146bb3;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.location-small-title {
    color: #146bb3;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 7px;
}

.location-card h3 {
    font-size: 23px;

    margin-bottom: 10px;
}

.location-card p {
    color: #666666;

    margin-bottom: 18px;
}


/* BUTTONS */

.location-btn {
    display: inline-block;

    padding: 13px 24px;

    text-decoration: none;

    font-size: 13px;

    font-weight: bold;

    border-radius: 5px;

    transition: 0.3s;
}

.primary-location-btn {
    background: #ffd400;

    color: #000000;
}

.secondary-location-btn {
    background: #146bb3;

    color: #ffffff;
}

.location-btn:hover {
    transform: translateY(-3px);
}


/* HOURS */

.hours-card {
    border-left-color: #ffd400;
}

.hours-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 12px 0;

    border-bottom: 1px solid #eeeeee;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row div {
    display: flex;

    flex-direction: column;
}

.hours-row strong {
    font-size: 14px;
}

.hours-row span {
    color: #666666;

    font-size: 13px;
}


/* GOOGLE MAP */

.map-container {
    min-height: 620px;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;

    height: 100%;

    min-height: 620px;

    border: 0;
}


/* ==============================
   FOOTER
================================= */

footer {
    background: #000000;

    text-align: center;

    padding: 50px 20px;
}

footer img {
    width: 180px;

    margin-bottom: 20px;
}

footer p {
    color: #777777;

    font-size: 13px;
}

/* ==============================
   FOOTER
================================= */

.main-footer {
    background: #020b17;
    color: #ffffff;

    padding: 70px 30px 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1200px;

    margin: auto;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;

    gap: 45px;
}


/* BRAND */

.footer-brand img {
    width: 180px;

    margin-bottom: 20px;
}

.footer-brand p {
    color: #9f9f9f;

    max-width: 300px;

    font-size: 14px;
}


/* COLUMNS */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}

.footer-column h3 {
    color: #ffd400;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.footer-column a {
    color: #bcbcbc;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}

.footer-column a:hover {
    color: #ffd400;
}

.footer-column p {
    color: #9f9f9f;

    font-size: 14px;

    line-height: 1.7;
}

.footer-column strong {
    color: #ffffff;
}


/* BOTTOM */

.footer-bottom {
    max-width: 1200px;

    margin: 50px auto 0;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
}

.footer-bottom p {
    color: #777777;

    font-size: 12px;
}

/* ==============================
   MOBILE
================================= */

@media (max-width: 800px) {

    nav {
        height: 75px;
        padding: 0 20px;
    }

    .logo img {
        width: 125px;
    }

    nav ul {
        gap: 12px;
    }

    nav ul li a {
        font-size: 11px;
    }

    section {
        padding: 75px 20px;
    }

    section h2 {
        font-size: 32px;
    }

    #home {
        padding-top: 120px;
    }

    .wash-options {
        grid-template-columns: 1fr;
    }

    .wash-card.featured {
        transform: none;
    }

    .detail-pricing {
        grid-template-columns: 1fr;
    }

    #detailing ul {
        grid-template-columns: 1fr;
    }
}.wash-options {
    grid-template-columns: 1fr;
}

.wash-card.featured {
    transform: none;
}

.wash-card.featured:hover {
    transform: translateY(-8px);
}

.app-download {
    margin-top: 60px;

    padding: 50px 20px;
}

.app-benefits {
    flex-direction: column;

    gap: 10px;
}

.app-buttons {
    flex-direction: column;

    align-items: center;
}

.app-store-btn {
    width: 210px;
}


.detail-pricing {
    grid-template-columns: 1fr;
}

.included-grid {
    grid-template-columns: 1fr;
}


.detailing-hours {
    flex-direction: column;
    gap: 3px;
}


.self-service-layout {
    grid-template-columns: 1fr;
}

.self-service-photo-placeholder {
    min-height: 320px;
}

.self-service-info {
    text-align: center;
}

.self-step {
    text-align: left;
}

.self-service-bottom {
    grid-template-columns: 1fr;

    gap: 30px;
}



.location-layout {
    grid-template-columns: 1fr;
}

.map-container {
    min-height: 400px;
}

.map-container iframe {
    min-height: 400px;
}

.hours-row {
    align-items: flex-start;
}



.navbar {
    height: 75px;

    padding: 0 20px;
}

.logo img {
    width: 135px;
}

.menu-toggle {
    display: block;
}

.nav-links {
    position: absolute;

    top: 75px;
    left: 0;

    width: 100%;

    background: #061426;

    flex-direction: column;

    gap: 0;

    display: none;

    padding: 15px 20px 25px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    width: 100%;

    text-align: center;
}

.nav-links li a {
    display: block;

    width: 100%;

    padding: 14px 10px;
}

.nav-links .nav-directions {
    margin-top: 10px;

    padding: 14px;
}


.footer-container {
    grid-template-columns: 1fr;

    gap: 35px;
}

.footer-brand,
.footer-column {
    align-items: center;

    text-align: center;
}

.footer-brand p {
    margin: auto;
}

.footer-brand img {
    width: 150px;
}


.included-modern {
    grid-template-columns: 1fr;
}

.included-main {
    padding: 30px 20px;
}

.service-check-list {
    grid-template-columns: 1fr;
}

.included-highlight {
    text-align: center;
}

.premium-services-grid {
    grid-template-columns: 1fr;
}

.premium-service-card {
    min-height: auto;
}

.premium-cta {
    flex-direction: column;

    text-align: center;

    gap: 20px;
}

.premium-cta a {
    width: 100%;

    text-align: center;
}