:root {
    --bg: #1c2024;
    --bg-soft: #252a30;
    --panel: rgba(42, 47, 54, 0.92);
    --panel-2: rgba(50, 56, 63, 0.96);
    --text: #ffffff;
    --muted: #d0d5db;
    --line: rgba(255, 255, 255, 0.12);
    --green: #8cff00;
    --green-2: #65d400;
    --white: #ffffff;
    --shadow: 0 8px 26px rgba(0, 0, 0, 0.14);
    --radius: 16px;
    --radius-sm: 10px;
    --container: 1320px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(140, 255, 0, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(140, 255, 0, 0.05), transparent 22%),
        linear-gradient(180deg, #2b3138 0%, #262b31 30%, #21262c 65%, #1c2024 100%);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--white);
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.site-main {
    min-height: 100vh;
}

/* Topbar */
.topbar {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    font-size: 12px;
    color: var(--muted);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(38, 44, 50, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(140, 255, 0, 0.12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 78px;
}

.brand img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.main-nav>ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1px;
    transition: 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
    background: rgba(140, 255, 0, 0.08);
}

.quote-btn {
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #000 !important;
    box-shadow: 0 0 0 1px rgba(140, 255, 0, 0.22), 0 8px 24px rgba(140, 255, 0, 0.2);
}

.quote-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #a6ff33, #74f000);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: translateY(0);
}
.has-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 220px;
    background: var(--panel-2);
    border: 1px solid rgba(140, 255, 0, 0.14);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    display: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;

    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}

.dropdown-menu li {
    width: 100%;
}

@media (max-width: 1024px) {
    .has-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        display: none;
        transform: translateY(8px);
    }

    .main-nav .has-dropdown {
        width: 100%;
    }

    .main-nav .has-dropdown>a {
        width: 100%;
        justify-content: space-between;
    }

    .main-nav .dropdown-menu {
        position: static;
        top: auto;
        left: auto;
        min-width: 100%;
        width: 100%;
        margin-top: 10px;
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        padding: 8px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(140, 255, 0, 0.12);
        border-radius: 14px;
        box-shadow: none;
    }

    .main-nav .has-dropdown.open .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .main-nav .dropdown-menu li {
        width: 100%;
    }

    .main-nav .dropdown-menu li a {
        width: 100%;
        display: flex;
        border-radius: 12px;
        padding: 12px 14px;
        font-size: 14px;
        line-height: 1.4;
        white-space: normal;
    }
}



.dropdown-menu li a {
    width: 100%;
    border-radius: 10px;
    padding: 10px 12px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(140, 255, 0, 0.18);
    border-radius: 12px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
    display: block;
    margin: 0 auto;
}

/* Hero */
.hero-section {
    position: relative;
    padding: 64px 0 52px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 30px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(140, 255, 0, 0.18);
    background: rgba(140, 255, 0, 0.07);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(30px, 4.8vw, 56px);
    line-height: 1.03;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: var(--green);
    text-shadow: 0 0 22px rgba(140, 255, 0, 0.2);
}

.hero-content p {
    max-width: 640px;
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #000;
    box-shadow: 0 12px 26px rgba(140, 255, 0, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: rgba(140, 255, 0, 0.35);
    color: var(--green);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-points span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    color: #d9d9d9;
    font-size: 13px;
    font-weight: 700;
}

.hero-card {
    background: linear-gradient(180deg, rgba(140, 255, 0, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(140, 255, 0, 0.14);
    border-radius: 22px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.hero-card-inner {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
}

.hero-card img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
    margin-bottom: 16px;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 21px;
    color: var(--green);
    margin-bottom: 3px;
}

.hero-stat span {
    color: var(--muted);
    font-size: 12px;
}

/* Generic sections */
.section {
    padding: 58px 0;
}

.section-header {
    max-width: 700px;
    margin-bottom: 28px;
}

.section-header h2 {
    font-size: clamp(24px, 3vw, 38px);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header p {
    color: var(--muted);
    font-size: 15px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    background: rgba(47, 53, 60, 0.95);
    border: 1px solid rgba(140, 255, 0, 0.10);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(140, 255, 0, 0.26);
}

.card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
    font-size: 15px;
}

/* Page hero */
.page-hero {
    padding: 62px 0 50px;
}

.small-hero {
    padding: 56px 0;
}

.page-hero h1 {
    font-size: clamp(28px, 4vw, 46px);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
}

/* Content blocks */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.content-box {
    background: rgba(47, 53, 60, 0.95);
    border: 1px solid rgba(140, 255, 0, 0.12);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.content-box h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.content-box p,
.content-box li {
    color: var(--muted);
    font-size: 15px;
}

.content-box ul {
    padding-left: 18px;
    list-style: disc;
}

/* Placeholder notice */
.placeholder-box {
    background: rgba(140, 255, 0, 0.08);
    border: 1px dashed rgba(140, 255, 0, 0.35);
    border-radius: 16px;
    padding: 20px;
    color: #eaffd0;
    font-size: 15px;
}

/* Footer */
.site-footer {
    margin-top: 60px;
    background: #15181c;
    border-top: 1px solid rgba(140, 255, 0, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 24px;
    padding: 46px 0 30px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 12px;
}

.footer-col h3 {
    font-size: 20px;
}

.footer-col h4 {
    font-size: 16px;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: var(--muted);
    font-size: 14px;
}

.footer-col ul li+li {
    margin-top: 8px;
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 16px 0;
}

.footer-bottom p {
    color: #8f8f8f;
    font-size: 13px;
}

/* =========================
   QUOTE WIZARD
========================= */

.quote-hero {
    padding: 52px 0 22px;
}

.quote-hero-inner {
    max-width: 980px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(140, 255, 0, 0.10);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.quote-hero-inner h1 {
    font-size: clamp(28px, 4vw, 46px);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.quote-hero-inner p {
    font-size: 16px;
    color: var(--muted);
    max-width: 760px;
}

.quote-wizard-section {
    padding: 16px 0 58px;
}

.quote-wizard {
    max-width: 1180px;
    margin: 0 auto;
}

.quote-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.10);
    flex-wrap: wrap;
}

.quote-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 92px;
    color: #8e949a;
    font-weight: 800;
    font-size: 14px;
}

.quote-step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #9ea4aa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.04);
}

.quote-step.active {
    color: #57b13f;
}

.quote-step.active .quote-step-circle,
.quote-step.completed .quote-step-circle {
    border-color: #57b13f;
    color: #57b13f;
}

.quote-step.completed .quote-step-circle {
    background: #57b13f;
    color: #fff;
}

.quote-step-line {
    width: 84px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.quote-step-list-icon {
    font-size: 18px;
    line-height: 1;
}

.quote-panel {
    display: none;
}

.quote-panel.active {
    display: block;
}

.quote-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    padding: 28px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

.quote-card h2 {
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.08;
    margin-bottom: 10px;
    color: #fff;
}

.quote-card p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.form-group label span {
    color: #ff4d6d;
}

.form-group label small {
    font-size: 13px;
    color: var(--muted);
}

.form-group input,
.form-group select {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.25s ease;
}

.form-group input::placeholder {
    color: #c8cdd3;
}

.form-group input:focus,
.form-group select:focus {
    border-color: rgba(140, 255, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(140, 255, 0, 0.08);
}

.postcode-row {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 12px;
}

.address-btn {
    min-height: 52px;
    border: none;
    border-radius: 999px;
    background: #57b13f;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.address-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.manual-link {
    background: transparent;
    border: none;
    color: #cf7cff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: underline;
    cursor: pointer;
}

.manual-address-box {
    display: none;
    margin-top: 18px;
}

.manual-address-box.open {
    display: block;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.form-grid.two {
    grid-template-columns: 1fr 1fr;
}

.form-group.full {
    grid-column: 1 / -1;
}

.choice-grid {
    display: grid;
    gap: 10px;
}

.choice-grid.five {
    grid-template-columns: repeat(5, 1fr);
}

.choice-grid.six {
    grid-template-columns: repeat(6, 1fr);
}

.choice-pill {
    position: relative;
    display: block;
    cursor: pointer;
}

.choice-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-pill span {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #bb69e9;
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.03);
    transition: 0.25s ease;
    text-align: center;
    padding: 8px;
}

.choice-pill input:checked+span {
    background: rgba(187, 105, 233, 0.18);
    border-color: #d58cff;
    box-shadow: 0 0 0 4px rgba(213, 140, 255, 0.08);
}

.helper-text {
    margin-top: -4px;
    margin-bottom: 14px !important;
    font-size: 14px !important;
}

.address-results {
    margin: 14px 0 18px;
}

.address-select-box label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.address-select {
    width: 100%;
    min-height: 54px;
    border-radius: 14px !important;
    padding: 12px 14px !important;
}

.quote-note {
    margin-top: 12px;
    font-size: 14px;
    color: #cfd3d9;
}

.quote-calendar-wrap {
    position: relative;
    width: 100%;
}

.quote-calendar-trigger {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    border-radius: 16px;
    min-height: 58px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    text-align: left;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.quote-calendar-trigger:hover {
    border-color: rgba(140, 255, 0, 0.28);
    transform: translateY(-1px);
}

.quote-calendar-trigger-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #cdd8e5;
}

.quote-calendar-trigger-value {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
}

.quote-calendar-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 50;
    display: none;
    width: min(100%, 390px);
}

.quote-calendar-dropdown.open {
    display: block;
}

.quote-calendar-shell {
    background: linear-gradient(180deg, #15407a 0%, #0f3365 100%);
    border: 1px solid rgba(255, 193, 7, 0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.quote-calendar-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 12px 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.quote-calendar-title-wrap {
    flex: 1;
}

.quote-calendar-year {
    font-size: 34px;
    line-height: 0.95;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.8px;
}

.quote-calendar-month {
    margin-top: 5px;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.quote-calendar-nav {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.quote-calendar-nav:hover {
    background: rgba(255, 193, 7, 0.20);
    color: #ffc107;
}

.quote-calendar-days-head {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    padding: 0 10px 8px;
}

.quote-calendar-days-head span {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.96);
    color: #103969;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.quote-calendar-days-head .is-sunday {
    background: #ffc107;
    color: #fff;
}

.quote-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    padding: 0 10px 10px;
}

.quote-calendar-day {
    min-height: 36px;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.quote-calendar-day:hover {
    background: rgba(255, 255, 255, 0.10);
}

.quote-calendar-day.is-muted {
    color: rgba(255, 255, 255, 0.38);
}

.quote-calendar-day.is-sunday {
    color: #ffd24d;
}

.quote-calendar-day.is-today {
    outline: 2px solid rgba(255, 255, 255, 0.18);
}

.quote-calendar-day.is-selected {
    background: #ffc107;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(255, 193, 7, 0.22);
}

@media (max-width: 700px) {
    .quote-calendar-dropdown {
        width: 100%;
    }

    .quote-calendar-year {
        font-size: 28px;
    }

    .quote-calendar-month {
        font-size: 17px;
    }

    .quote-calendar-day {
        min-height: 34px;
        font-size: 13px;
    }

    .quote-calendar-days-head span {
        min-height: 26px;
        font-size: 9px;
    }
}

.check-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    cursor: pointer;
}

.check-row-modern {
    min-height: 58px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transition: 0.25s ease;
}

.check-row-modern input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.check-custom {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    border: 1.5px solid rgba(140, 255, 0, 0.40);
    background: rgba(255, 255, 255, 0.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    transition: 0.25s ease;
}

.check-custom::after {
    content: '✓';
    font-size: 13px;
    font-weight: 900;
    color: #0f140f;
    opacity: 0;
    transform: scale(0.7);
    transition: 0.2s ease;
}

.check-text {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.check-row-modern:hover {
    border-color: rgba(140, 255, 0, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.check-row-modern input:checked+.check-custom {
    background: linear-gradient(135deg, #8cff00, #65d400);
    border-color: #8cff00;
    box-shadow: 0 0 0 4px rgba(140, 255, 0, 0.10);
}

.check-row-modern input:checked+.check-custom::after {
    opacity: 1;
    transform: scale(1);
}

.check-row-modern:has(input:checked) {
    border-color: rgba(140, 255, 0, 0.30);
    background: rgba(140, 255, 0, 0.09);
}

.divider-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
    margin: 22px 0;
}

.service-check-grid {
    display: grid;
    gap: 12px;
}

.service-check {
    position: relative;
}

.service-check-modern {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: 0.25s ease;
}

.service-check-modern input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-check-box {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    border: 1.5px solid rgba(140, 255, 0, 0.40);
    background: rgba(255, 255, 255, 0.03);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    transition: 0.25s ease;
}

.service-check-box::after {
    content: '✓';
    font-size: 13px;
    font-weight: 900;
    color: #0f140f;
    opacity: 0;
    transform: scale(0.7);
    transition: 0.2s ease;
}

.service-check-text {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.service-check-modern:hover {
    transform: translateY(-1px);
    border-color: rgba(140, 255, 0, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.service-check-modern input:checked+.service-check-box {
    background: linear-gradient(135deg, #8cff00, #65d400);
    border-color: #8cff00;
    box-shadow: 0 0 0 4px rgba(140, 255, 0, 0.10);
}

.service-check-modern input:checked+.service-check-box::after {
    opacity: 1;
    transform: scale(1);
}

.service-check-modern:has(input:checked) {
    border-color: rgba(140, 255, 0, 0.32);
    background:
        linear-gradient(135deg, rgba(140, 255, 0, 0.12), rgba(140, 255, 0, 0.06));
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.secure-line {
    font-weight: 800;
    color: #d58cff !important;
}

.quote-legal {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin: 4px 0 18px;
}

.quote-legal a {
    color: #7ff14c;
    font-weight: 800;
}

.wizard-actions {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.wizard-actions-between {
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.wizard-btn {
    min-width: 240px;
    min-height: 58px;
    padding: 0 24px;
    border: none;
    border-radius: 999px;
    background: #57b13f;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
    transition: 0.25s ease;
}

.wizard-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.wizard-back {
    background: transparent;
    border: none;
    color: #57b13f;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
}

.quote-success-box {
    text-align: center;
    padding: 46px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(140, 255, 0, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.success-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #57b13f;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
}

.quote-success-box h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 12px;
}

.quote-success-box p {
    max-width: 760px;
    margin: 0 auto 10px;
    color: var(--muted);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1080px) {

    .hero-grid,
    .cards-grid,
    .content-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav ul {
        gap: 4px;
    }

    .main-nav a {
        padding: 8px 11px;
        font-size: 12px;
    }

    .choice-grid.five,
    .choice-grid.six {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {

    .postcode-row,
    .form-grid.two {
        grid-template-columns: 1fr 1fr;
    }

    .postcode-row .address-btn {
        grid-column: span 2;
    }

    .quote-step-line {
        width: 54px;
    }
}

@media (max-width: 860px) {
    .topbar-inner {
        flex-direction: column;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        background: rgba(12, 12, 12, 0.98);
        border: 1px solid rgba(140, 255, 0, 0.14);
        border-radius: 18px;
        box-shadow: var(--shadow);
        padding: 16px;
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav a {
        width: 100%;
        border-radius: 12px;
        font-size: 14px;
    }


    .hero-grid,
    .cards-grid,
    .content-grid,
    .footer-grid,
    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        height: 52px;
    }

    .hero-section,
    .page-hero,
    .section {
        padding: 48px 0;
    }

    .choice-grid.five,
    .choice-grid.six {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .quote-card,
    .quote-hero-inner {
        padding: 22px 16px;
    }

    .quote-steps {
        gap: 8px;
        padding: 12px;
    }

    .quote-step-line {
        display: none;
    }

    .choice-grid.five,
    .choice-grid.six,
    .form-grid.two,
    .postcode-row {
        grid-template-columns: 1fr;
    }

    .wizard-actions-between {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .wizard-btn {
        width: 100%;
        min-width: 100%;
        font-size: 18px;
    }

        .manual-link,
        .form-group label,
        .service-check-text,
        .check-text {
            font-size: 16px;
        }
    
        .service-check-modern,
        .check-row-modern {
            padding: 14px 16px;
            min-height: auto;
            align-items: flex-start;
        }
    
        .quote-date-input {
            min-height: 56px !important;
        }

    .quote-step {
        min-width: 74px;
        font-size: 12px;
    }

    .quote-step-circle {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

@media (max-width: 560px) {

    .hero-content p,
    .page-hero p,
    .quote-hero-inner p,
    .quote-card p {
        font-size: 15px;
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }
}




/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
    padding: 56px 0 26px;
}

.contact-hero-inner {
    background: linear-gradient(135deg, rgba(140, 255, 0, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(140, 255, 0, 0.12);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow);
}

.contact-hero-content {
    max-width: 860px;
}

.contact-hero-content h1 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.contact-hero-content p {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 18px;
}

.contact-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-hero-badges span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
}

.contact-main-section {
    padding: 16px 0 58px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: start;
}

.contact-left,
.contact-right {
    min-width: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 20px;
}

.contact-info-card {
    background: rgba(47, 53, 60, 0.95);
    border: 1px solid rgba(140, 255, 0, 0.10);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 255, 0, 0.10);
    color: var(--green);
    font-size: 22px;
    margin-bottom: 14px;
}

.contact-info-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-info-card a,
.contact-info-card span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.contact-extra-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.contact-extra-box h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.contact-extra-box p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 14px;
}

.contact-extra-box ul {
    list-style: disc;
    padding-left: 18px;
}

.contact-extra-box li {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 6px;
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.contact-form-head {
    margin-bottom: 18px;
}

.contact-form-head h2 {
    font-size: clamp(24px, 3vw, 38px);
    margin-bottom: 8px;
}

.contact-form-head p {
    color: var(--muted);
    font-size: 15px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .form-group.full {
    grid-column: 1 / -1;
}

.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 15px;
    outline: none;
    resize: vertical;
    min-height: 170px;
    transition: 0.25s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-form textarea:focus {
    border-color: rgba(140, 255, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(140, 255, 0, 0.08);
}

.contact-form-actions {
    margin-top: 6px;
}

.contact-submit-btn {
    min-width: 220px;
    min-height: 56px;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #000;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(140, 255, 0, 0.18);
    transition: 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
}

.contact-success-message {
    background: rgba(140, 255, 0, 0.10);
    border: 1px solid rgba(140, 255, 0, 0.25);
    color: #eaffd0;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 980px) {

    .contact-main-grid,
    .contact-info-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {

    .contact-hero-inner,
    .contact-form-wrap,
    .contact-extra-box,
    .contact-info-card {
        padding: 20px 16px;
    }

    .contact-submit-btn {
        width: 100%;
    }
}



/* =========================
   SERVICES PAGE
========================= */

.services-page-hero {
    position: relative;
    padding: 260px 0 260px;
    background:
        linear-gradient(rgba(18, 22, 26, 0.72), rgba(18, 22, 26, 0.78)),
        url('../images/services/services-bg.webp') center center / cover no-repeat;
    overflow: hidden;
}

.services-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(140, 255, 0, 0.10), transparent 24%),
        radial-gradient(circle at bottom right, rgba(140, 255, 0, 0.06), transparent 26%);
    pointer-events: none;
}

.services-page-hero .container {
    position: relative;
    z-index: 2;
}

.services-page-hero-content {
    max-width: 760px;
}

.services-page-hero-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.04;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.services-page-hero-content p {
    color: var(--muted);
    font-size: 16px;
    max-width: 700px;
}

.services-cards-section {
    padding: 58px 0;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card-link {
    display: block;
    height: 100%;
}

.service-card-media {
    height: 100%;
    overflow: hidden;
    padding: 0;
    border-radius: 22px;
    background: rgba(47, 53, 60, 0.94);
    border: 1px solid rgba(140, 255, 0, 0.10);
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card-link:hover .service-card-media {
    transform: translateY(-8px);
    border-color: rgba(140, 255, 0, 0.28);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 18, 22, 0.28), rgba(14, 18, 22, 0.04));
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-card-link:hover .service-card-image img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 20px 20px 22px;
}

.service-card-body h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #fff;
}

.service-card-body p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 1180px) {
    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .services-page-hero {
        padding: 70px 0 60px;
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-image {
        height: 200px;
    }
}

@media (max-width: 560px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .service-card-image {
        height: 220px;
    }

    .service-card-body {
        padding: 18px 16px 20px;
    }

    .service-card-body h3 {
        font-size: 18px;
    }

    .service-card-body p {
        font-size: 14px;
    }
}




/* =========================
   SERVICE DETAIL PAGES
========================= */

.service-detail-hero {
    position: relative;
    padding: 88px 0 76px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-detail-hero-light {
    position: relative;
}

.service-detail-hero-content {
    max-width: 760px;
}

.service-detail-hero-content h1 {
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.03;
    margin-bottom: 14px;
    text-transform: uppercase;
    color: #fff;
}

.service-detail-hero-content p {
    max-width: 720px;
    font-size: 17px;
    color: #eef2f5;
    margin-bottom: 22px;
}

.service-detail-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-detail-section {
    padding: 60px 0;
}

.service-detail-section-light {
    background:
        radial-gradient(circle at top left, rgba(140, 255, 0, 0.05), transparent 24%),
        linear-gradient(180deg, #343b43 0%, #30363d 38%, #2b3138 100%);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.service-detail-main,
.service-detail-sidebar {
    min-width: 0;
}

.service-detail-box {
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.service-detail-box-light {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-detail-box h2 {
    font-size: clamp(24px, 3vw, 38px);
    margin-bottom: 12px;
    line-height: 1.08;
}

.service-detail-box p {
    color: #edf1f4;
    font-size: 15px;
    margin-bottom: 14px;
}

.service-detail-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 20px;
}

.service-detail-feature {
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.service-detail-feature-light {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(140, 255, 0, 0.12);
}

.service-detail-feature h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.service-detail-feature p {
    color: #e5eaee;
    font-size: 14px;
}

.service-detail-list {
    list-style: disc;
    padding-left: 20px;
}

.service-detail-list li {
    color: #edf1f4;
    font-size: 15px;
    margin-bottom: 8px;
}

.service-detail-sidecard {
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}

.service-detail-sidecard-light {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-detail-sidecard h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-detail-sidecard p {
    color: #e5eaee;
    font-size: 15px;
    margin-bottom: 14px;
}

.service-side-list {
    list-style: disc;
    padding-left: 18px;
}

.service-side-list li {
    color: #edf1f4;
    font-size: 15px;
    margin-bottom: 8px;
}

.service-side-btn {
    width: 100%;
}

.service-cta-strip {
    padding: 0 0 60px;
}

.service-cta-strip-light {
    background:
        linear-gradient(180deg, #2b3138 0%, #2b3138 100%);
}

.service-cta-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(140, 255, 0, 0.14);
    box-shadow: var(--shadow);
}

.service-cta-strip-inner h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 10px;
}

.service-cta-strip-inner p {
    color: #e6ebef;
    font-size: 15px;
}

.service-cta-strip-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 980px) {

    .service-detail-grid,
    .service-detail-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-cta-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-cta-strip-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .service-detail-hero {
        padding: 72px 0 60px;
    }

    .service-detail-box,
    .service-detail-feature,
    .service-detail-sidecard,
    .service-cta-strip-inner {
        padding: 20px 16px;
    }

    .service-detail-hero-actions,
    .service-cta-strip-actions {
        flex-direction: column;
        width: 100%;
    }

    .service-detail-hero-actions .btn,
    .service-cta-strip-actions .btn {
        width: 100%;
    }
}




/* =========================
   PARTNERS & REVIEWS
========================= */

.partners-strip-section {
    padding: 24px 0 58px;
}

.partners-header {
    margin-bottom: 20px;
}

.partners-marquee-shell,
.reviews-marquee-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partners-marquee,
.reviews-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partners-marquee::before,
.partners-marquee::after,
.reviews-marquee::before,
.reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 54px;
    z-index: 3;
    pointer-events: none;
}

.partners-marquee::before,
.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, #262b31 0%, rgba(38, 43, 49, 0) 100%);
}

.partners-marquee::after,
.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, #262b31 0%, rgba(38, 43, 49, 0) 100%);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: partnersScroll 34s linear infinite;
}

.partner-logo-card {
    width: 148px;
    min-width: 148px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(140, 255, 0, 0.10);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 255, 0, 0.24);
    background: rgba(255, 255, 255, 0.12);
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 38px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.9;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.partner-logo-card:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.reviews-section {
    padding: 10px 0 70px;
}

.reviews-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: reviewsScroll 52s linear infinite;
}

.review-card {
    width: 238px;
    min-width: 238px;
    min-height: 194px;
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(140, 255, 0, 0.10);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.review-stars {
    font-size: 15px;
    letter-spacing: 2px;
    color: #ffd25a;
    margin-bottom: 10px;
}

.review-card p {
    color: #edf1f4;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
    flex-grow: 1;
}

.review-card strong {
    display: block;
    color: #fff;
    font-size: 13px;
    margin-bottom: 3px;
}

.review-card span {
    color: var(--muted);
    font-size: 12px;
}

.partners-marquee:hover .partners-track,
.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes partnersScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 9px));
    }
}

@keyframes reviewsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 7px));
    }
}

@media (max-width: 860px) {

    .partners-marquee::before,
    .partners-marquee::after,
    .reviews-marquee::before,
    .reviews-marquee::after {
        width: 24px;
    }

    .partner-logo-card {
        width: 132px;
        min-width: 132px;
        height: 66px;
    }

    .partner-logo-card img {
        max-height: 34px;
    }

    .review-card {
        width: 220px;
        min-width: 220px;
        min-height: 188px;
    }
}

@media (max-width: 700px) {
    .partner-logo-card {
        width: 124px;
        min-width: 124px;
        height: 62px;
        padding: 10px 12px;
    }

    .partner-logo-card img {
        max-height: 30px;
    }

    .review-card {
        width: 210px;
        min-width: 210px;
        min-height: 182px;
        padding: 16px 14px;
    }

    .review-card p {
        font-size: 12px;
    }
}


/* =========================
   FOOTER PRO
========================= */

.site-footer-pro {
    margin-top: 70px;
    background:
        radial-gradient(circle at top left, rgba(140, 255, 0, 0.07), transparent 22%),
        linear-gradient(180deg, #1b1f24 0%, #15191d 100%);
    border-top: 1px solid rgba(140, 255, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.footer-top-cta {
    padding: 0 0 26px;
}

.footer-top-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px;
    margin-top: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(140, 255, 0, 0.14);
    box-shadow: var(--shadow);
}

.footer-top-cta-content {
    max-width: 760px;
}

.footer-top-cta-content h2 {
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.08;
    margin-bottom: 10px;
}

.footer-top-cta-content p {
    color: var(--muted);
    font-size: 15px;
}

.footer-top-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-grid-pro {
    grid-template-columns: 1.25fr 0.9fr 1fr 1fr;
    gap: 28px;
    padding: 22px 0 34px;
}

.footer-brand-col {
    padding-right: 10px;
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.footer-brand-text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 380px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(140, 255, 0, 0.10);
    transition: 0.25s ease;
}

.footer-social:hover {
    transform: translateY(-3px);
    background: rgba(140, 255, 0, 0.12);
    border-color: rgba(140, 255, 0, 0.30);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.footer-col h4 {
    font-size: 17px;
    margin-bottom: 14px;
    color: #fff;
}

.footer-links,
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--muted);
    font-size: 14px;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: var(--green);
    transform: translateX(3px);
}

.footer-contact-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-list span {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.footer-contact-list a,
.footer-contact-list p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom-pro {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    color: #8f98a2;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links a {
    color: #a9b0b7;
    font-size: 13px;
    transition: 0.25s ease;
}

.footer-bottom-links a:hover {
    color: var(--green);
}

@media (max-width: 1080px) {
    .footer-grid-pro {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .footer-grid-pro {
        grid-template-columns: 1fr;
    }

    .footer-top-cta-inner {
        padding: 22px 16px;
    }

    .footer-top-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .footer-top-cta-actions .btn {
        width: 100%;
    }

    .footer-brand img {
        height: 62px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* =========================
   LEGAL PAGES
========================= */

.legal-page-wrap {
    max-width: 980px;
}

.legal-page-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(140, 255, 0, 0.10);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow);
}

.legal-updated {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.legal-section-block+.legal-section-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section-block h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin-bottom: 12px;
    line-height: 1.15;
}

.legal-section-block p {
    color: #e6ebef;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 8px;
}

.legal-list li {
    color: #e6ebef;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 8px;
}

.legal-list a,
.legal-section-block a {
    color: var(--green);
}

.legal-list a:hover,
.legal-section-block a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .legal-page-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .legal-section-block+.legal-section-block {
        margin-top: 22px;
        padding-top: 22px;
    }

    .legal-section-block p,
    .legal-list li {
        font-size: 14px;
    }
}


/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    padding: 62px 0 40px;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
    align-items: stretch;
}

.about-hero-content,
.about-hero-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(140, 255, 0, 0.10);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.about-hero-content {
    padding: 34px;
}

.about-hero-content h1 {
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.04;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.about-hero-content p {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 22px;
}

.about-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-hero-panel {
    padding: 24px;
    display: flex;
    align-items: center;
}

.about-hero-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.about-hero-stat {
    padding: 22px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.about-hero-stat strong {
    display: block;
    font-size: 21px;
    color: var(--green);
    margin-bottom: 6px;
}

.about-hero-stat span {
    color: #e1e5e9;
    font-size: 14px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.about-block,
.about-side-card,
.about-value-card,
.about-service-box,
.about-commitment-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(140, 255, 0, 0.10);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.about-block {
    padding: 28px;
    margin-bottom: 20px;
}

.about-block h2 {
    font-size: clamp(24px, 3vw, 38px);
    margin-bottom: 12px;
    line-height: 1.08;
}

.about-block p {
    color: #e7ebef;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-side-card {
    padding: 24px;
    margin-bottom: 18px;
}

.about-side-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.about-side-card p {
    color: #e7ebef;
    font-size: 15px;
    line-height: 1.7;
}

.about-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-check-list li {
    position: relative;
    padding-left: 22px;
    color: #e7ebef;
    font-size: 15px;
    line-height: 1.6;
}

.about-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 900;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-value-card {
    padding: 24px 22px;
    transition: 0.28s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(140, 255, 0, 0.24);
}

.about-value-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(140, 255, 0, 0.10);
    border: 1px solid rgba(140, 255, 0, 0.18);
    color: var(--green);
    font-size: 16px;
    font-weight: 900;
}

.about-value-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.about-value-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-service-box {
    padding: 22px;
    transition: 0.28s ease;
}

.about-service-box:hover {
    transform: translateY(-6px);
    border-color: rgba(140, 255, 0, 0.24);
}

.about-service-box h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.about-service-box p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.about-commitment-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 28px;
}

.about-commitment-content {
    max-width: 780px;
}

.about-commitment-content h2 {
    font-size: clamp(24px, 3vw, 38px);
    margin-bottom: 12px;
    line-height: 1.08;
}

.about-commitment-content p {
    color: #e7ebef;
    font-size: 15px;
    line-height: 1.75;
}

.about-commitment-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 1180px) {

    .about-values-grid,
    .about-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {

    .about-hero-inner,
    .about-story-grid,
    .about-commitment-box {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-commitment-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {

    .about-hero-content,
    .about-hero-panel,
    .about-block,
    .about-side-card,
    .about-value-card,
    .about-service-box,
    .about-commitment-box {
        padding: 20px 16px;
    }

    .about-hero-panel-grid,
    .about-values-grid,
    .about-services-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-actions,
    .about-commitment-actions {
        flex-direction: column;
        width: 100%;
    }

    .about-hero-actions .btn,
    .about-commitment-actions .btn {
        width: 100%;
    }
}



/* =========================
   QUOTE MEDIA STEP
========================= */

.quote-upload-section {
    display: grid;
    gap: 18px;
}

.quote-upload-block {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.quote-upload-block h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
}

.quote-upload-block h3 span {
    color: #ff4d6d;
}

.quote-upload-block p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 16px;
}

.quote-room-upload-grid,
.quote-optional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quote-file-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(140, 255, 0, 0.10);
}

.quote-file-label {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.quote-file-input {
    width: 100%;
    min-height: auto !important;
    padding: 14px 14px !important;
    border-radius: 14px !important;
    border: 1px dashed rgba(140, 255, 0, 0.25) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: #fff;
    cursor: pointer;
}

.quote-file-help {
    margin-top: 10px;
    color: #bfc7ce;
    font-size: 13px;
}

.quote-file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.quote-file-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(140, 255, 0, 0.10);
    border: 1px solid rgba(140, 255, 0, 0.18);
    color: #f2ffe0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    word-break: break-word;
}

@media (max-width: 860px) {

    .quote-room-upload-grid,
    .quote-optional-grid {
        grid-template-columns: 1fr;
    }

    .quote-upload-block {
        padding: 18px 16px;
    }

    .quote-file-card {
        padding: 16px;
    }
}




/* =========================
   GLOBAL RESPONSIVE POLISH
========================= */

/* ---------- Large laptops / MacBook ---------- */
@media (max-width: 1280px) {
    .container {
        width: min(100% - 40px, 1180px);
    }

    .hero-grid,
    .about-hero-inner,
    .service-detail-grid,
    .contact-main-grid {
        gap: 22px;
    }

    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-values-grid,
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid-pro {
        grid-template-columns: 1.15fr 1fr 1fr;
        gap: 24px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-brand-text {
        max-width: 760px;
    }
}

/* ---------- Standard laptop / tablet landscape ---------- */
@media (max-width: 1024px) {
    .container {
        width: min(100% - 32px, 980px);
    }

    .header-inner {
        min-height: 74px;
        gap: 14px;
    }

    .brand img {
        height: 52px;
    }

    .main-nav ul {
        gap: 4px;
    }

    .main-nav a {
        padding: 8px 10px;
        font-size: 12px;
    }

    .hero-section {
        padding: 54px 0 44px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .hero-content h1 {
        font-size: clamp(30px, 4.2vw, 48px);
    }

    .hero-card img {
        max-height: 280px;
    }

    .hero-stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cards-grid,
    .services-cards-grid,
    .about-values-grid,
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid,
    .contact-main-grid,
    .about-hero-inner,
    .about-story-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid,
    .contact-form-grid,
    .quote-room-upload-grid,
    .quote-optional-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-detail-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid-pro {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        justify-content: flex-start;
    }
}

/* ---------- Tablet ---------- */
@media (max-width: 860px) {
    .topbar-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        background: rgba(12, 12, 12, 0.98);
        border: 1px solid rgba(140, 255, 0, 0.14);
        border-radius: 18px;
        box-shadow: var(--shadow);
        padding: 16px;
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .main-nav a {
        width: 100%;
        border-radius: 12px;
        font-size: 14px;
        padding: 10px 12px;
    }
       
        

    .hero-grid,
    .content-grid,
    .contact-main-grid,
    .about-hero-inner,
    .about-story-grid,
    .service-detail-grid,
    .footer-grid-pro {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .services-cards-grid,
    .about-values-grid,
    .about-services-grid,
    .contact-info-grid,
    .contact-form-grid,
    .quote-room-upload-grid,
    .quote-optional-grid,
    .service-detail-feature-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-section,
    .page-hero,
    .section,
    .service-detail-section,
    .services-cards-section,
    .reviews-section {
        padding: 46px 0;
    }

    .services-page-hero {
        padding: 90px 0 72px;
    }

    .hero-content,
    .about-hero-content,
    .contact-hero-content,
    .service-detail-hero-content,
    .services-page-hero-content {
        max-width: 100%;
    }

    .hero-actions,
    .about-hero-actions,
    .service-detail-hero-actions,
    .service-cta-strip-actions,
    .about-commitment-actions,
    .footer-top-cta-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-card,
    .about-hero-panel,
    .quote-card,
    .contact-form-wrap,
    .contact-extra-box,
    .contact-info-card,
    .service-detail-box,
    .service-detail-feature,
    .service-detail-sidecard,
    .service-cta-strip-inner,
    .about-block,
    .about-side-card,
    .about-value-card,
    .about-service-box,
    .about-commitment-box,
    .legal-page-card {
        padding: 22px 18px;
    }

    .footer-brand img {
        height: 60px;
    }

    .footer-brand-text {
        max-width: 100%;
    }

    .quote-step-line {
        width: 48px;
    }
}

/* ---------- Large mobile ---------- */
@media (max-width: 700px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .header-inner {
        min-height: 70px;
    }

    .brand img {
        height: 48px;
    }

    .hero-content h1,
    .services-page-hero-content h1,
    .service-detail-hero-content h1,
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.06;
    }

    .page-hero h1,
    .quote-hero-inner h1 {
        font-size: clamp(28px, 7.2vw, 38px);
    }

    .hero-content p,
    .page-hero p,
    .quote-hero-inner p,
    .contact-hero-content p,
    .services-page-hero-content p,
    .service-detail-hero-content p,
    .about-hero-content p {
        font-size: 15px;
    }

    .btn,
    .hero-actions .btn,
    .about-hero-actions .btn,
    .service-detail-hero-actions .btn,
    .service-cta-strip-actions .btn,
    .about-commitment-actions .btn,
    .footer-top-cta-actions .btn {
        width: 100%;
    }

    .hero-actions,
    .about-hero-actions,
    .service-detail-hero-actions,
    .service-cta-strip-actions,
    .about-commitment-actions,
    .footer-top-cta-actions {
        flex-direction: column;
    }

    .hero-points {
        gap: 8px;
    }

    .hero-points span {
        font-size: 12px;
        padding: 7px 10px;
    }

    .hero-card img {
        max-height: 220px;
    }

    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        padding: 12px;
    }

    .quote-card,
    .quote-hero-inner,
    .contact-hero-inner,
    .contact-form-wrap,
    .contact-extra-box,
    .contact-info-card,
    .service-detail-box,
    .service-detail-feature,
    .service-detail-sidecard,
    .service-cta-strip-inner,
    .about-hero-content,
    .about-hero-panel,
    .about-block,
    .about-side-card,
    .about-value-card,
    .about-service-box,
    .about-commitment-box,
    .legal-page-card,
    .footer-top-cta-inner {
        padding: 20px 16px;
    }

    .form-grid.two,
    .postcode-row,
    .contact-form-grid,
    .contact-info-grid,
    .quote-room-upload-grid,
    .quote-optional-grid,
    .service-detail-feature-grid {
        grid-template-columns: 1fr;
    }

    .postcode-row .address-btn {
        grid-column: auto;
    }

    .quote-steps {
        gap: 8px;
        padding: 12px;
        justify-content: space-between;
    }

    .quote-step {
        min-width: 64px;
        font-size: 11px;
        gap: 6px;
    }

    .quote-step-circle {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .quote-step-line {
        display: none;
    }

    .wizard-actions-between {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .wizard-btn {
        width: 100%;
        min-width: 100%;
        font-size: 18px;
        min-height: 54px;
    }

    .wizard-back {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .service-card-image {
        height: 210px;
    }

    .service-card-body {
        padding: 18px 16px 20px;
    }

    .service-card-body h3 {
        font-size: 18px;
    }

    .service-card-body p {
        font-size: 14px;
    }

    .service-detail-sidecard,
    .service-detail-box,
    .service-detail-feature {
        margin-bottom: 16px;
    }

    .service-detail-list,
    .service-side-list,
    .legal-list {
        padding-left: 18px;
    }

    .partners-marquee::before,
    .partners-marquee::after,
    .reviews-marquee::before,
    .reviews-marquee::after {
        width: 24px;
    }

    .partner-logo-card {
        width: 124px;
        min-width: 124px;
        height: 62px;
        padding: 10px 12px;
    }

    .partner-logo-card img {
        max-height: 30px;
    }

    .review-card {
        width: 210px;
        min-width: 210px;
        min-height: 182px;
        padding: 16px 14px;
    }

    .review-card p {
        font-size: 12px;
    }

    .footer-grid-pro {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 26px 0 24px;
    }

    .footer-brand img {
        height: 56px;
    }

    .footer-social {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom-links {
        gap: 12px;
        row-gap: 8px;
        justify-content: flex-start;
    }

    .footer-bottom-links a {
        white-space: normal;
        font-size: 12px;
    }
}

/* ---------- Small mobile ---------- */
@media (max-width: 480px) {
    .container {
        width: min(100% - 18px, var(--container));
    }

    .topbar-inner {
        font-size: 11px;
    }

    .hero-section,
    .page-hero,
    .section,
    .service-detail-section,
    .services-cards-section,
    .reviews-section,
    .contact-main-section {
        padding: 38px 0;
    }

    .services-page-hero {
        padding: 72px 0 58px;
    }

    .eyebrow {
        font-size: 11px;
        padding: 6px 10px;
    }

    .hero-content h1,
    .services-page-hero-content h1,
    .service-detail-hero-content h1,
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 26px;
    }

    .hero-content p,
    .page-hero p,
    .quote-hero-inner p,
    .contact-hero-content p,
    .services-page-hero-content p,
    .service-detail-hero-content p,
    .about-hero-content p,
    .section-header p {
        font-size: 14px;
    }

    .quote-card h2,
    .service-detail-box h2,
    .about-block h2,
    .service-cta-strip-inner h2,
    .about-commitment-content h2,
    .legal-section-block h2 {
        font-size: 24px;
    }

    .form-group input,
    .form-group select,
    .address-btn {
        min-height: 50px;
        font-size: 14px;
    }

    .service-check-modern,
    .check-row-modern {
        padding: 14px;
    }

    .service-check-text,
    .check-text {
        font-size: 14px;
    }

    .quote-upload-block h3 {
        font-size: 20px;
    }

    .quote-file-card {
        padding: 14px;
    }

    .partner-logo-card {
        width: 114px;
        min-width: 114px;
        height: 58px;
    }

    .review-card {
        width: 190px;
        min-width: 190px;
        min-height: 176px;
    }

    .review-card strong,
    .review-card span,
    .review-card p {
        word-break: break-word;
    }
}

.service-detail-image-card {
    padding: 0;
    overflow: hidden;
}

.service-detail-slider {
    position: relative;
    width: 100%;
    height: 690px;
    border-radius: 20px;
    overflow: hidden;
    background: #1f2429;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.service-detail-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-detail-side-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition:
        opacity 1.1s ease,
        transform 5.5s ease;
    pointer-events: none;
}

.service-detail-side-image.active {
    opacity: 1;
    transform: scale(1);
}

.service-detail-slider-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(18, 22, 26, 0.18), rgba(18, 22, 26, 0.04)),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 2;
}

.service-detail-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.service-detail-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: 0.3s ease;
}

.service-detail-dot.active {
    width: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8cff00, #65d400);
    border-color: rgba(140, 255, 0, 0.9);
    box-shadow: 0 0 14px rgba(140, 255, 0, 0.28);
}

@media (max-width: 700px) {
    .service-detail-slider {
        height: 220px;
    }

    .service-detail-slider-dots {
        bottom: 12px;
        gap: 6px;
    }

    .service-detail-dot {
        width: 8px;
        height: 8px;
    }

    .service-detail-dot.active {
        width: 22px;
    }
}


@media (max-width: 700px) {
    .service-cta-strip {
        display: none;
    }
}