/* ===================================================================
   CARGENIX — Styles
   =================================================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #0f2b46;
    --color-accent: #e8a020;
    --color-accent-hover: #d08e18;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f7fa;
    --color-bg-dark: #0b1f33;
    --color-text: #2c3e50;
    --color-text-light: #5a6d7e;
    --color-text-inverse: #ffffff;
    --color-border: #dce3ea;
    --color-success: #27ae60;
    --color-error: #c0392b;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-max: 1140px;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent-hover);
}

h1, h2, h3, h4 {
    color: var(--color-primary);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.125rem; font-weight: 600; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

/* --- Logo (two-line block) --- */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-decoration: none;
}

.logo-company {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.logo-brand {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-list a:hover {
    color: var(--color-accent);
}

/* Header phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-left: 1.5rem;
    white-space: nowrap;
    transition: color var(--transition);
}

.header-phone:hover {
    color: var(--color-accent);
}

.header-phone svg {
    flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 76px;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(15, 43, 70, 0.92) 0%,
        rgba(15, 43, 70, 0.75) 50%,
        rgba(15, 43, 70, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 4rem 0;
}

.hero h1 {
    color: var(--color-text-inverse);
    margin-bottom: 1.25rem;
}

.hero-sub {
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}


/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-primary);
}


/* All sections after hero sit above the fixed background */
.about,
.services,
.why-us,
.quote-form-section,
.testimonials,
.faq,
.site-footer {
    position: relative;
    z-index: 2;
}

/* ===================================================================
   ABOUT
   =================================================================== */
.about {
    padding: 5rem 0;
    background: var(--color-bg);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-text h2 {
    margin-bottom: 1.25rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.about-text p:last-child {
    margin-bottom: 0;
}


/* ===================================================================
   SERVICES
   =================================================================== */
.services {
    position: relative;
    padding: 5rem 0;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/images/services-routes.webp') center / cover no-repeat;
    opacity: 0.22;
    z-index: 0;
}

.services > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro {
    color: var(--color-text-light);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0.5rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 160, 32, 0.12);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Pricing grid (2×2) --- */
.services-grid--pricing {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2.5rem;
}

.service-card--priced {
    display: flex;
    flex-direction: column;
}

.service-card--priced h3 {
    margin-bottom: 0.35rem;
}

.service-card--priced > p {
    margin-bottom: 1rem;
}

/* Price list rows */
.price-list {
    list-style: none;
    margin: auto 0 0.75rem;
    padding: 0;
    border-top: 1px solid var(--color-border);
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.875rem;
}

.price-label {
    color: var(--color-text);
    font-weight: 500;
}

.price-label small {
    display: block;
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--color-text-light);
    margin-top: 1px;
}

.price-value {
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    padding-left: 1rem;
    font-size: 0.925rem;
}

.price-note {
    font-size: 0.78rem !important;
    color: var(--color-accent-hover) !important;
    font-weight: 500;
    margin-top: auto;
}

/* Included-with-every-booking bar */
.services-included {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-included h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.included-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.included-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Pricing disclaimer */
.pricing-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.55;
}


/* ===================================================================
   WHY US
   =================================================================== */
.why-us {
    padding: 3rem 0;
    background: var(--color-primary);
}

.why-us h2 {
    text-align: center;
    color: var(--color-text-inverse);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.benefit-item {
    padding: 1.25rem;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius);
    border-left: 3px solid var(--color-accent);
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-inverse);
}

.benefit-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
}


/* ===================================================================
   QUOTE FORM
   =================================================================== */
.quote-form-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.quote-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(15, 43, 70, 0.70) 0%,
        rgba(15, 43, 70, 0.55) 100%
    );
}

.quote-container {
    position: relative;
    z-index: 2;
}

.quote-form-section .section-header h2 {
    color: var(--color-text-inverse);
}

.quote-form-section .section-intro {
    color: rgba(255,255,255,0.8);
}

.quote-form {
    max-width: 780px;
    margin: 0 auto;
    background: var(--color-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.925rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.15);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--color-error);
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.form-actions .btn {
    min-width: 200px;
}

.privacy-note {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.form-feedback {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    padding: 0;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.form-feedback.success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--color-success);
    padding: 1rem;
}

.form-feedback.error-msg {
    background: rgba(192, 57, 43, 0.1);
    color: var(--color-error);
    padding: 1rem;
}


/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials {
    padding: 5rem 0;
    background: var(--color-bg);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    font-size: 0.925rem;
    color: var(--color-text);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-card footer {
    border-top: 1px solid var(--color-border);
    padding-top: 0.75rem;
}

.testimonial-card cite {
    font-size: 0.825rem;
    font-style: normal;
    color: var(--color-text-light);
}

.testimonial-card cite strong {
    color: var(--color-primary);
}


/* ===================================================================
   FAQ
   =================================================================== */
.faq {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.15rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-accent);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item summary:hover {
    background: var(--color-bg-alt);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

.faq-disclaimer {
    max-width: 740px;
    margin: 1.5rem auto 0;
    font-size: 0.75rem;
    color: #8a95a3;
    line-height: 1.5;
    text-align: left;
}


/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 3.5rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo--footer {
    margin-bottom: 1rem;
}

.logo--footer .logo-company {
    color: var(--color-text-inverse);
    font-size: 1.35rem;
}

.logo--footer .logo-brand {
    color: var(--color-accent);
    font-size: 0.75rem;
}

.footer-legal-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.footer-address,
.footer-company-number {
    font-size: 0.825rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
    color: var(--color-text-inverse);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav ul,
.footer-contact ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav li,
.footer-contact li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-contact a,
.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding: 1.25rem 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-align: center;
}


/* ===================================================================
   LEGAL PAGES (Privacy Policy, Terms & Conditions)
   =================================================================== */
.legal-page {
    padding: 7rem 0 4rem;
    min-height: 70vh;
    margin-top: 76px;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-section h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.legal-section p {
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
    font-size: 0.925rem;
    line-height: 1.7;
}

.legal-section ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: var(--color-text-light);
    font-size: 0.925rem;
    line-height: 1.7;
}

.legal-section ul li {
    margin-bottom: 0.35rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.25rem;
    font-size: 0.875rem;
}

.legal-table th,
.legal-table td {
    text-align: left;
    padding: 0.7rem 1rem;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.legal-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-primary);
}

.legal-table td {
    color: var(--color-text-light);
}

@media (max-width: 640px) {
    .legal-page {
        padding: 5rem 0 3rem;
    }

    .legal-table {
        font-size: 0.8rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.5rem 0.6rem;
    }
}


/* ===================================================================
   WHATSAPP FLOATING BUTTON
   =================================================================== */
.wa-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
    color: #fff;
}


/* ===================================================================
   COOKIE CONSENT BANNER
   =================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 10000;
    width: 340px;
    max-width: calc(100vw - 3rem);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-banner-inner p {
    font-size: 0.825rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-inner a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-accept {
    padding: 0.55rem 1.25rem;
    font-size: 0.825rem;
}

.cookie-decline {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color var(--transition), border-color var(--transition);
}

.cookie-decline:hover {
    color: var(--color-text);
    border-color: var(--color-text-light);
}


/* ===================================================================
   RESPONSIVE
   =================================================================== */

/* Tablet */
@media (max-width: 960px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .nav-toggle {
        display: flex;
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        margin-left: 0.75rem;
    }

    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        padding: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition), opacity var(--transition);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-list a {
        font-size: 1rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 3rem 0;
    }

    .hero-sub {
        font-size: 1rem;
    }

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

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

    .included-grid {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

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

    .why-us {
        padding: 2.5rem 0;
    }

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

    .quote-form {
        padding: 1.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about,
    .services,
    .why-us,
    .quote-form-section,
    .testimonials,
    .faq {
        padding: 3.5rem 0;
    }
}
