/* =========================================================
   LUNIMA SERVICES
   Main Stylesheet
========================================================= */

/* =========================
   RESET
========================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    font-family: "Inter", Arial, sans-serif;
    background: #0a0c0e;
    color: #ffffff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    cursor: pointer;
}

::selection {
    background: #ffffff;
    color: #000000;
}


/* =========================
   VARIABLES
========================= */

:root {
    --bg: #0a0c0e;
    --bg-soft: #101316;
    --text: #ffffff;
    --text-muted: #a8afb5;
    --border: rgba(255, 255, 255, 0.12);

    /* CAR */
    --car-primary: #d2a64a;
    --car-secondary: #f0d38b;
    --car-dark: #111111;

    /* HANDYMAN */
    --handy-primary: #55bb79;
    --handy-secondary: #a5efbd;
    --handy-dark: #0d2819;

    /* CLEANING */
    --clean-primary: #47c4ff;
    --clean-secondary: #a5e8ff;
    --clean-dark: #06283d;

    --container: 1280px;

    --transition-fast: 0.25s ease;
    --transition-medium: 0.45s cubic-bezier(.22, 1, .36, 1);
}


/* =========================
   GLOBAL CONTAINER
========================= */

.container {
    width: min(var(--container), calc(100% - 80px));
    margin-inline: auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.72),
        rgba(0, 0, 0, 0.22),
        transparent
    );

    pointer-events: none;
}

.header-inner {
    width: min(1440px, calc(100% - 80px));
    min-height: 82px;
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    pointer-events: auto;
}

.logo {
    display: inline-flex;
    align-items: center;

    font-size: 24px;
    font-weight: 900;
    letter-spacing: 5px;

    color: #ffffff;

    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.78;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    position: relative;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;

    color: rgba(255, 255, 255, 0.68);

    transition:
        color var(--transition-fast),
        opacity var(--transition-fast);
}

.main-navigation a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: currentColor;

    transition: width var(--transition-fast);
}

.main-navigation a:hover,
.main-navigation a.active {
    color: #ffffff;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 19px;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.header-call:hover {
    background: #ffffff;
    color: #0a0c0e;
    border-color: #ffffff;
}


/* =========================================================
   HOME PAGE - THREE SERVICE PANELS
========================================================= */

.services-section {
    width: 100%;
    height: 100vh;
    min-height: 720px;

    display: flex;
    overflow: hidden;
}

.service-panel {
    position: relative;

    flex: 1 1 33.333%;

    min-width: 0;
    height: 100%;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: #111;

    transition:
        flex var(--transition-medium),
        filter var(--transition-medium);
}

.service-panel:hover {
    flex: 3 1 60%;
}

.service-panel:not(:hover) {
    filter: saturate(0.72);
}

.service-background {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.015);

    transition:
        transform 0.8s cubic-bezier(.22, 1, .36, 1),
        filter 0.6s ease;
}

.service-panel:hover .service-background {
    transform: scale(1.07);
}


/* =========================
   DESKTOP SERVICE IMAGES
========================= */

.car-background {
    background-image: url("../assets/images/car-desktop.jpg");
}

.handyman-background {
    background-image: url("../assets/images/handyman-desktop.jpg");
}

.cleaning-background {
    background-image: url("../assets/images/cleaning-desktop.jpg");
}


.service-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.20) 76%,
            rgba(0, 0, 0, 0.28) 100%
        );

    transition: background 0.5s ease;
}

.service-panel:hover .service-overlay {
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.34) 48%,
            rgba(0, 0, 0, 0.15) 100%
        );
}


/* =========================
   SERVICE COLORS
========================= */

.service-car .service-overlay {
    background:
        linear-gradient(
            to top,
            rgba(8, 8, 8, 0.94),
            rgba(55, 43, 15, 0.38),
            rgba(0, 0, 0, 0.16)
        );
}

.service-handyman .service-overlay {
    background:
        linear-gradient(
            to top,
            rgba(3, 27, 16, 0.94),
            rgba(17, 87, 47, 0.34),
            rgba(0, 0, 0, 0.14)
        );
}

.service-cleaning .service-overlay {
    background:
        linear-gradient(
            to top,
            rgba(3, 31, 51, 0.94),
            rgba(17, 111, 156, 0.32),
            rgba(0, 0, 0, 0.14)
        );
}

.service-content {
    position: relative;
    z-index: 3;

    width: 100%;
    padding: 50px;

    transform: translateY(10px);

    transition:
        transform var(--transition-medium),
        opacity var(--transition-medium);
}

.service-panel:hover .service-content {
    transform: translateY(0);
}

.service-number {
    display: block;

    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;

    opacity: 0.72;
}

.service-label {
    display: block;

    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.74);
}

.service-content h1,
.service-content h2 {
    max-width: 760px;

    margin-bottom: 16px;

    font-size: clamp(29px, 4vw, 64px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -2px;
}

.service-car h1 {
    color: var(--car-primary);
}

.service-handyman h2 {
    color: var(--handy-primary);
}

.service-cleaning h2 {
    color: var(--clean-primary);
}

.service-content p {
    max-width: 470px;

    margin-bottom: 24px;

    font-size: 15px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.82);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    transition: gap var(--transition-fast);
}

.service-link > span {
    font-size: 19px;
    line-height: 1;
}

.service-panel:hover .service-link {
    gap: 17px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section-heading {
    max-width: 780px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;

    color: var(--text-muted);
}

.section-heading h2 {
    margin-bottom: 20px;

    font-size: clamp(34px, 4.7vw, 68px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.section-heading p {
    max-width: 710px;

    margin-inline: auto;

    font-size: 16px;
    line-height: 1.8;

    color: var(--text-muted);
}


/* =========================================================
   SERVICE HERO
========================================================= */

.service-hero {
    position: relative;

    min-height: 850px;
    height: 92vh;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    transform: scale(1.01);
}


/* =========================
   DESKTOP HERO IMAGES
========================= */

.car-hero .service-hero-background {
    background-image: url("../assets/images/car-desktop.jpg");
}

.handyman-hero .service-hero-background {
    background-image: url("../assets/images/handyman-desktop.jpg");
}

.cleaning-hero .service-hero-background {
    background-image: url("../assets/images/cleaning-desktop.jpg");
}


.service-hero-overlay {
    position: absolute;
    inset: 0;
}

.car-hero .service-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 8, 9, 0.96) 0%,
            rgba(7, 8, 9, 0.72) 42%,
            rgba(7, 8, 9, 0.25) 100%
        );
}

.handyman-hero .service-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 25, 15, 0.96) 0%,
            rgba(5, 25, 15, 0.72) 42%,
            rgba(5, 25, 15, 0.22) 100%
        );
}

.cleaning-hero .service-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 30, 49, 0.96) 0%,
            rgba(3, 30, 49, 0.72) 42%,
            rgba(3, 30, 49, 0.2) 100%
        );
}

.service-hero-content {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 80px));
    margin-inline: auto;

    padding-top: 60px;
}

.service-hero-content .service-number {
    font-size: 14px;
}

.service-hero-content .service-label {
    margin-bottom: 18px;
}

.service-hero-content h1 {
    max-width: 900px;

    margin-bottom: 22px;

    font-size: clamp(50px, 8vw, 112px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -5px;
}

.car-hero h1 {
    color: var(--car-primary);
}

.handyman-hero h1 {
    color: var(--handy-primary);
}

.cleaning-hero h1 {
    color: var(--clean-primary);
}

.service-hero-content p {
    max-width: 620px;

    margin-bottom: 30px;

    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.80);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}


/* =========================================================
   BUTTONS
========================================================= */

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0 27px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;

    transition:
        transform var(--transition-fast),
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.primary-button {
    color: #0a0c0e;
    background: #ffffff;
}

.primary-button:hover {
    background: #eeeeee;
}

.secondary-button {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
}

.car-page .primary-button {
    background: var(--car-primary);
}

.handyman-page .primary-button {
    background: var(--handy-primary);
}

.cleaning-page .primary-button {
    background: var(--clean-primary);
}


/* =========================================================
   INTRO
========================================================= */

.service-intro {
    padding: 140px 0;
    background: var(--bg);
}

.service-intro .section-heading h2 {
    max-width: 930px;
}

.service-intro .section-heading p {
    margin-left: 0;
    max-width: 740px;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.service-list-section {
    padding: 130px 0;

    background: #0d1013;
}

.service-list-section .section-heading {
    margin-bottom: 70px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;

    min-height: 295px;

    padding: 32px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    border: 1px solid var(--border);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        );

    overflow: hidden;

    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.service-card::after {
    content: "";

    position: absolute;
    left: 32px;
    bottom: 0;

    width: 55px;
    height: 3px;

    background: rgba(255, 255, 255, 0.3);
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card .card-number {
    margin-bottom: 28px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: var(--text-muted);
}

.service-card h3 {
    margin-bottom: 12px;

    font-size: 23px;
    font-weight: 800;
    line-height: 1.1;
}

.service-card p {
    margin-bottom: 24px;

    font-size: 14px;
    line-height: 1.7;

    color: var(--text-muted);
}

.card-price {
    margin-top: auto;

    font-size: 15px;
    font-weight: 800;
}

.car-card:hover {
    border-color: rgba(210, 166, 74, 0.45);
}

.car-card::after {
    background: var(--car-primary);
}

.car-card .card-price {
    color: var(--car-primary);
}

.handyman-card:hover {
    border-color: rgba(85, 187, 121, 0.45);
}

.handyman-card::after {
    background: var(--handy-primary);
}

.handyman-card .card-price {
    color: var(--handy-primary);
}

.cleaning-card:hover {
    border-color: rgba(71, 196, 255, 0.45);
}

.cleaning-card::after {
    background: var(--clean-primary);
}

.cleaning-card .card-price {
    color: var(--clean-primary);
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-it-works {
    padding: 130px 0;

    background: var(--bg);
}

.how-it-works .section-heading {
    margin-bottom: 70px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.step {
    padding: 32px;

    border-top: 1px solid var(--border);
}

.step > span {
    display: block;

    margin-bottom: 22px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;

    color: var(--text-muted);
}

.step h3 {
    margin-bottom: 12px;

    font-size: 23px;
    font-weight: 800;
}

.step p {
    font-size: 14px;
    line-height: 1.7;

    color: var(--text-muted);
}


/* =========================================================
   BOOKING
========================================================= */

.booking-section {
    padding: 130px 0;

    background: #0d1013;
}

.booking-section .section-heading {
    margin-bottom: 60px;
}

.booking-form {
    width: min(900px, 100%);
    margin-inline: auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;

    color: #d5d9dc;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;

    padding: 15px 16px;

    outline: none;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.035);

    transition:
        border-color var(--transition-fast),
        background var(--transition-fast),
        box-shadow var(--transition-fast);
}

.form-group input,
.form-group select {
    min-height: 54px;
}

.form-group textarea {
    min-height: 145px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.form-group select {
    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #ffffff 50%),
        linear-gradient(135deg, #ffffff 50%, transparent 50%);

    background-position:
        calc(100% - 20px) 23px,
        calc(100% - 14px) 23px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}

.form-group select option {
    color: #111111;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.5);

    background: rgba(255, 255, 255, 0.055);

    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.form-submit {
    display: flex;
    justify-content: center;

    margin-top: 8px;
}

.form-submit .primary-button {
    min-width: 200px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 90px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: #0a0c0e;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.contact-item {
    padding-right: 20px;
}

.contact-item:not(:last-child) {
    border-right: 1px solid var(--border);
}

.contact-item .eyebrow {
    margin-bottom: 9px;
}

.contact-item a,
.contact-item p {
    font-size: 16px;
    line-height: 1.5;

    color: #ffffff;
}

.contact-item a {
    transition: opacity var(--transition-fast);
}

.contact-item a:hover {
    opacity: 0.66;
}


/* =========================================================
   SERVICE AREA
========================================================= */

.service-area-section {
    padding: 110px 0;

    background: #0d1013;
}

.service-area-section .section-heading p {
    max-width: 920px;

    line-height: 2;
}


/* =========================================================
   CTA
========================================================= */

.service-cta {
    padding: 150px 0;

    text-align: center;
}

.service-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-cta .eyebrow {
    margin-bottom: 16px;
}

.service-cta h2 {
    max-width: 850px;

    margin-bottom: 18px;

    font-size: clamp(38px, 5vw, 74px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -3px;
}

.service-cta p {
    max-width: 620px;

    margin-bottom: 28px;

    font-size: 16px;
    line-height: 1.7;

    color: var(--text-muted);
}

.car-cta {
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(210, 166, 74, 0.13),
            transparent 40%
        ),
        #0b0d0f;
}

.handyman-cta {
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(85, 187, 121, 0.13),
            transparent 40%
        ),
        #0b0d0f;
}

.cleaning-cta {
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(71, 196, 255, 0.13),
            transparent 40%
        ),
        #0b0d0f;
}


/* ========================================================= 
   FOOTER 
========================================================= */ 
 
.site-footer { 
    padding: 35px 0; 
 
    background: #070809; 
 
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
} 
 
.footer-inner { 
    width: min(1280px, calc(100% - 80px)); 
    margin-inline: auto; 
 
    display: grid; 
    grid-template-columns: auto 1fr auto; 
    align-items: center; 
    gap: 30px; 
} 
 
.footer-links { 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 18px 25px; 
} 
 
.footer-links a { 
    font-size: 11px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1.2px; 
 
    color: var(--text-muted); 
 
    transition: color var(--transition-fast); 
} 
 
.footer-links a:hover { 
    color: #ffffff; 
} 

 
.footer-inner > p { 
    font-size: 11px; 
    color: #686f75; 
    text-align: right; 
}



/* =========================================================
   SERVICE & SOCIAL LINK COLORS
   Header + Footer
========================================================= */

/* CAR */
.main-navigation a[href="car.html"]:hover,
.main-navigation a[href="car.html"].active,
.footer-links a[href="car.html"]:hover {
    color: var(--car-primary);
}

/* HANDYMAN */
.main-navigation a[href="handyman.html"]:hover,
.main-navigation a[href="handyman.html"].active,
.footer-links a[href="handyman.html"]:hover {
    color: var(--handy-primary);
}

/* CLEANING */
.main-navigation a[href="cleaning.html"]:hover,
.main-navigation a[href="cleaning.html"].active,
.footer-links a[href="cleaning.html"]:hover {
    color: var(--clean-primary);
}

/* FACEBOOK */
.main-navigation a[href*="facebook.com"]:hover,
.main-navigation a[href*="facebook.com"].active,
.footer-links a[href*="facebook.com"]:hover {
    color: #1877F2;
}

/* PHONE */
.footer-links a[href^="tel"] {
    color: #9aa7b5;
}

.footer-links a[href^="tel"]:hover {
    color: #d7dde3;
}

/* EMAIL */
.footer-links a[href^="mailto"] {
    color: #9aa7b5;
}

.footer-links a[href^="mailto"]:hover {
    color: #d7dde3;
}


/* =========================================================
   SERVICE COLOR OVERRIDES
========================================================= */

.car-page .eyebrow {
    color: var(--car-primary);
}

.handyman-page .eyebrow {
    color: var(--handy-primary);
}

.cleaning-page .eyebrow {
    color: var(--clean-primary);
}


/* =========================================================
   TABLET
   Vertical layout
========================================================= */

@media (max-width: 1100px) {

    .header-inner,
    .footer-inner {
        width: min(100% - 48px, 1280px);
    }

    .container {
        width: min(100% - 48px, var(--container));
    }

    .services-section {
        height: auto;
        min-height: 100vh;

        display: flex;
        flex-direction: column;
    }

    .service-panel,
    .service-panel:hover {
        flex: none;

        width: 100%;
        height: 38vh;
        min-height: 310px;

        filter: none;
    }

    .service-panel:hover {
        flex: none;
    }

    .service-content {
        padding: 42px;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-item:nth-child(2) {
        border-right: none;
    }

    .contact-item:nth-child(1),
    .contact-item:nth-child(2) {
        padding-bottom: 25px;
        border-bottom: 1px solid var(--border);
    }

    .contact-item:nth-child(3),
    .contact-item:nth-child(4) {
        padding-top: 4px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-inner > p {
        text-align: center;
    }
}


/* =========================================================
   MOBILE
   Vertical layout
========================================================= */

@media (max-width: 700px) {

    body {
        font-size: 15px;
    }

    .container {
        width: min(100% - 36px, var(--container));
    }

    .header-inner {
        width: calc(100% - 36px);
        min-height: 70px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .main-navigation {
        display: none;
    }

    .header-call {
        min-height: 38px;
        padding: 0 14px;

        font-size: 10px;
    }


    /* =========================
       MOBILE SERVICE IMAGES
    ========================= */

    .car-background {
        background-image: url("../assets/images/car-mobile.jpg");
    }

    .handyman-background {
        background-image: url("../assets/images/handyman-mobile.jpg");
    }

    .cleaning-background {
        background-image: url("../assets/images/cleaning-mobile.jpg");
    }

    .car-hero .service-hero-background {
        background-image: url("../assets/images/car-mobile.jpg");
    }

    .handyman-hero .service-hero-background {
        background-image: url("../assets/images/handyman-mobile.jpg");
    }

    .cleaning-hero .service-hero-background {
        background-image: url("../assets/images/cleaning-mobile.jpg");
    }


    /* =========================
       HOME PANELS
    ========================= */

    .services-section {
        display: flex;
        flex-direction: column;

        min-height: 100vh;
    }

    .service-panel,
    .service-panel:hover {
        width: 100%;
        height: 33.333vh;
        min-height: 255px;

        flex: none;
    }

    .service-content {
        padding: 30px 22px 28px;
    }

    .service-number {
        margin-bottom: 8px;
    }

    .service-label {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .service-content h1,
    .service-content h2 {
        font-size: clamp(30px, 9vw, 48px);
        letter-spacing: -1.7px;
    }

    .service-content p {
        max-width: 330px;

        margin-bottom: 16px;

        font-size: 13px;
        line-height: 1.5;
    }

    .service-link {
        font-size: 10px;
    }


    /* =========================
       HERO
    ========================= */

    .service-hero {
        min-height: 700px;
        height: 82vh;
    }

    .service-hero-content {
        width: calc(100% - 36px);

        padding-top: 70px;
    }

    .service-hero-content h1 {
        font-size: clamp(48px, 15vw, 82px);
        letter-spacing: -3px;
    }

    .service-hero-content p {
        font-size: 15px;
        line-height: 1.55;
    }

    .hero-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        min-height: 52px;
    }


    /* =========================
       GENERAL SECTIONS
    ========================= */

    .service-intro,
    .service-list-section,
    .how-it-works,
    .booking-section,
    .service-area-section {
        padding: 90px 0;
    }

    .section-heading h2 {
        font-size: 38px;
        letter-spacing: -1.8px;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-list-section .section-heading,
    .how-it-works .section-heading,
    .booking-section .section-heading {
        margin-bottom: 45px;
    }


    /* =========================
       STEPS
    ========================= */

    .steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .step {
        padding: 28px 0;

        border-top: 1px solid var(--border);
    }


    /* =========================
       BOOKING
    ========================= */

    .booking-form {
        grid-template-columns: 1fr;
    }

    .form-full {
        grid-column: auto;
    }

    .form-submit {
        grid-column: auto;
    }


    /* =========================
       CONTACT
    ========================= */

    .contact-section {
        padding: 70px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-item,
    .contact-item:nth-child(2),
    .contact-item:nth-child(3),
    .contact-item:nth-child(4) {
        padding: 0 0 22px;

        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .contact-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }


    /* =========================
       CTA
    ========================= */

    .service-cta {
        padding: 100px 0;
    }

    .service-cta h2 {
        font-size: 43px;
        letter-spacing: -2px;
    }


    /* =========================
       FOOTER
    ========================= */

    .site-footer {
        padding: 30px 0;
    }

    .footer-inner {
        width: calc(100% - 36px);

        gap: 20px;
    }

    .footer-links {
        gap: 14px 18px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 430px) {

    .service-panel,
    .service-panel:hover {
        min-height: 235px;
    }

    .service-content {
        padding: 25px 18px;
    }

    .service-content h1,
    .service-content h2 {
        font-size: 29px;
    }

    .service-content p {
        font-size: 12px;
    }

    .service-hero {
        min-height: 670px;
    }

    .service-hero-content h1 {
        font-size: 45px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .service-card {
        min-height: 265px;
        padding: 26px;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .service-cta h2 {
        font-size: 37px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}



/* ============================================
   BOOKING SUCCESS POPUP
============================================ */

.booking-success-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.booking-success-popup.show {
    opacity: 1;
    visibility: visible;
}

.booking-success-box {
    position: relative;

    width: min(460px, 100%);
    padding: 42px 35px 38px;

    text-align: center;

    background: #111416;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);

    transform: translateY(20px) scale(0.96);

    transition:
        transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

.booking-success-popup.show .booking-success-box {
    transform: translateY(0) scale(1);
}

/* Check icon */
.booking-success-icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #55bb79;
    color: #ffffff;

    font-size: 34px;
    font-weight: 800;

    box-shadow: 0 10px 30px rgba(85, 187, 121, 0.25);
}

/* Title */
.booking-success-box h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 27px;
    font-weight: 800;
}

/* Text */
.booking-success-box p {
    margin: 0;

    color: #a8afb5;

    font-size: 15px;
    line-height: 1.6;
}

/* Close button */
.booking-success-close {
    position: absolute;

    top: 14px;
    right: 16px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    background: transparent;

    color: #a8afb5;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.booking-success-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}


/* ============================================
   MOBILE
============================================ */

@media (max-width: 600px) {

    .booking-success-box {
        padding: 38px 25px 32px;
        border-radius: 16px;
    }

    .booking-success-icon {
        width: 58px;
        height: 58px;
        font-size: 30px;
    }

    .booking-success-box h3 {
        font-size: 24px;
    }

    .booking-success-box p {
        font-size: 14px;
    }
}
