:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fdba74;
    --primary-50: #fff7ed;
    --primary-100: #ffedd5;
    --secondary: #1e3a5f;
    --secondary-dark: #0f2744;
    --secondary-light: #2d4a6f;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --success-bg: #d1fae5;
    --error: #ef4444;
    --error-bg: #fee2e2;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --header-h: 96px;
    --container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
}

    a:hover {
        color: var(--primary-dark);
    }

/* ==========================================================================
   CONTAINER - Fluide et responsive
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   ICONS - Tailles fixes pour éviter les SVG géants
   ========================================================================== */
.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: inherit;
    text-decoration: none;
}

.logo {
    width: auto;
    height: 70px;
    max-height: calc(var(--header-h) - 20px);
    object-fit: contain;
    flex-shrink: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    white-space: nowrap;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--gray-500);
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    white-space: nowrap;
}

    .nav-link:hover {
        color: var(--gray-900);
    }

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ==========================================================================
   BUTTONS - Responsive
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 14px;
    border: 2px solid transparent;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        color: #fff;
    }

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

    .btn-outline:hover {
        background: var(--gray-50);
        border-color: var(--gray-400);
    }

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

    .btn-white:hover {
        background: var(--gray-50);
        color: var(--primary-dark);
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

    .btn-ghost:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }

.btn-lg {
    padding: 16px 28px;
    font-size: 1rem;
}

.btn-phone {
    padding: 10px 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s;
}

    .nav-toggle:hover {
        background: var(--gray-100);
    }

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--gray-700);
        border-radius: 999px;
        transition: all 0.25s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

/* ==========================================================================
   HERO (Homepage)
   ========================================================================== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, var(--secondary-light) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    }

.hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.18);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    word-wrap: break-word;
}

    .hero h1 span {
        color: var(--primary-light);
    }

.lead {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

    .hero-meta .icon {
        color: var(--primary-light);
        flex-shrink: 0;
    }

    .hero-meta a {
        color: var(--primary-light);
    }

.separator {
    opacity: 0.5;
}

/* ==========================================================================
   CARDS - Responsive
   ========================================================================== */
.card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 28px;
    width: 100%;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
    margin-bottom: 16px;
}

    .card-icon svg {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

.card-title {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.card-text {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-card {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.22);
}

.card-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 14px;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

    .card-highlight svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

/* ==========================================================================
   SECTIONS - Responsive
   ========================================================================== */
.section {
    padding: 60px 0;
}

    .section.alt {
        background: var(--gray-50);
    }

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 32px;
    padding: 0 10px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-50);
    color: var(--primary);
    border: 1px solid var(--primary-100);
    margin-bottom: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

    .section-badge .badge-icon {
        width: 14px;
        height: 14px;
    }

.section h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 12px;
    line-height: 1.2;
}

.section-desc {
    color: var(--gray-500);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    max-width: 600px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 32px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--gray-600);
    padding: 0 10px;
}

/* ==========================================================================
   GRIDS - Responsive
   ========================================================================== */
.grid-2 {
    display: grid;
    gap: 24px;
    width: 100%;
}

.grid-3 {
    display: grid;
    gap: 20px;
    width: 100%;
}

/* ==========================================================================
   SERVICES - Responsive
   ========================================================================== */
.service-card {
    text-align: center;
    padding: 24px;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
}

    .service-icon svg {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

.service-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    text-align: left;
}

    .service-features li {
        padding: 8px 0;
        border-top: 1px solid var(--gray-100);
        font-size: 0.9rem;
    }

/* ==========================================================================
   NOTE - Responsive
   ========================================================================== */
.note {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-left: 4px solid var(--primary);
    background: var(--primary-50);
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem;
}

.note-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   GALLERY - Responsive
   ========================================================================== */
.gallery-grid {
    display: grid;
    gap: 16px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    display: block;
    background: var(--gray-100);
}

.gallery-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.gallery-title {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.gallery-desc {
    font-size: 0.85rem;
    opacity: 0.9;
}

.gallery-zoom {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-700);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.gallery-note {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--gray-600);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

    .gallery-note code {
        background: var(--gray-100);
        padding: 4px 8px;
        border-radius: 6px;
        font-size: 0.8rem;
    }

.gallery-note-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ==========================================================================
   CTA BANNER - Responsive
   ========================================================================== */
.cta-section {
    padding-top: 40px;
}

.banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

    .banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 60%;
        height: 150%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
        pointer-events: none;
    }

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.banner-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
    margin-bottom: 10px;
}

    .banner-icon svg {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }

.banner-title {
    font-size: clamp(1.25rem, 4vw, 1.9rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 6px;
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   CONTACT PAGE - HERO - Responsive
   ========================================================================== */
.contact-hero {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    color: #fff;
    text-align: center;
    position: relative;
}

    .contact-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    }

    .contact-hero h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        font-weight: 700;
        color: #fff;
        margin: 0 0 14px;
    }

    .contact-hero .lead {
        max-width: 100%;
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.9);
        padding: 0 10px;
    }

/* ==========================================================================
 CONTACT PAGE - CARDS & LAYOUT - Responsive
   ========================================================================== */
.contact-card {
    height: fit-content;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: background 0.2s ease;
}

    .contact-item:hover {
        background: var(--gray-100);
    }

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary);
    flex-shrink: 0;
}

    .contact-icon svg {
        width: 22px;
        height: 22px;
        display: block;
        flex-shrink: 0;
    }

.contact-content {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--gray-800);
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
}

    .contact-value a {
        color: var(--primary);
        font-weight: 500;
    }

        .contact-value a:hover {
            color: var(--primary-dark);
        }

/* ==========================================================================
   CONTACT PAGE - TIP BOX - Responsive
   ========================================================================== */
.contact-tip {
    margin-top: 20px;
    padding: 16px;
    background: var(--primary-50);
    border-radius: 12px;
    border: 1px solid var(--primary-100);
}

.contact-tip-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.contact-tip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.contact-tip-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

    .contact-tip-item svg {
        width: 16px;
        height: 16px;
        color: var(--primary);
        flex-shrink: 0;
    }

/* ==========================================================================
   CONTACT PAGE - FORM - Responsive
   ========================================================================== */
.form-card {
    height: fit-content;
}

    .form-card .card-title {
        margin-bottom: 20px;
    }

.form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
}

    .form-section:first-of-type {
        padding-top: 0;
    }

    .form-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

.form-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.form-row {
    margin-bottom: 16px;
}

    .form-row:last-child {
        margin-bottom: 0;
    }

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--gray-700);
    }

        .form-group label .required {
            color: var(--error);
        }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px 14px;
        font-family: inherit;
        font-size: 1rem;
        color: var(--gray-900);
        background: var(--white);
        border: 2px solid var(--gray-200);
        border-radius: 10px;
        transition: all 0.2s ease;
        -webkit-appearance: none;
        appearance: none;
    }

    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 40px;
        cursor: pointer;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-50);
        }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--gray-400);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-group input[type="number"] {
        -moz-appearance: textfield;
    }

        .form-group input[type="number"]::-webkit-outer-spin-button,
        .form-group input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

/* Checkbox style */
.form-checkbox {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 16px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.2s ease;
}

    .checkbox-label:hover {
        background: var(--gray-100);
        border-color: var(--gray-300);
    }

    .checkbox-label input[type="checkbox"] {
        display: none;
    }

.checkbox-box {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

    .checkbox-box::after {
        content: '';
        width: 12px;
        height: 12px;
        background: var(--primary);
        border-radius: 3px;
        transform: scale(0);
        transition: transform 0.2s ease;
    }

.checkbox-label input[type="checkbox"]:checked + .checkbox-box {
    border-color: var(--primary);
    background: var(--primary-50);
}

    .checkbox-label input[type="checkbox"]:checked + .checkbox-box::after {
        transform: scale(1);
    }

.checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .checkbox-text strong {
        color: var(--gray-900);
        font-size: 0.95rem;
    }

    .checkbox-text small {
        color: var(--gray-500);
        font-size: 0.8rem;
    }

.btn-submit {
    margin-top: 16px;
    width: 100%;
}

.field-validation-error {
    font-size: 0.8rem;
    color: var(--error);
    font-weight: 500;
}

/* ==========================================================================
   ALERTS - Responsive
   ========================================================================== */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 500;
    margin-top: 14px;
    font-size: 0.95rem;
}

.alert-success {
    background: var(--success-bg);
    color: #065f46;
    border: 1px solid var(--success);
}

.alert-error {
    background: var(--error-bg);
    color: #991b1b;
    border: 1px solid var(--error);
}

.alert-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ==========================================================================
   CONTACT PAGE - MAP - Responsive
   ========================================================================== */
.map-container {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

    .map-container iframe {
        width: 100%;
        height: 350px;
        border: 0;
        display: block;
    }

/* ==========================================================================
   FOOTER - Responsive
   ========================================================================== */
.footer {
    padding: 40px 0 28px;
    background: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.82);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    flex-shrink: 0;
}

.footer-company {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

    .footer-col h4 {
        font-size: 0.8rem;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 14px;
    }

    .footer-col address {
        font-style: normal;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

        .footer-col address p {
            margin: 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
        }

        .footer-col address a {
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.2s;
        }

            .footer-col address a:hover {
                color: var(--primary-light);
            }

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-nav a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        transition: color 0.2s;
    }

        .footer-nav a:hover {
            color: var(--primary-light);
        }

.footer-map-link {
    display: inline-block;
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    transition: color 0.2s;
}

    .footer-map-link:hover {
        color: #fff;
    }

.footer-hours {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

    .footer-hours strong {
        color: rgba(255, 255, 255, 0.9);
    }

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

    .footer-bottom p {
        margin: 0;
    }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-muted {
    color: var(--gray-500);
}

.text-sm {
    font-size: 0.85rem;
}

.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

/* ==========================================================================
   RESPONSIVE - DESKTOP (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {
    :root {
        --header-h: 96px;
    }

    .hero {
        padding: 80px 0 100px;
    }

    .hero-grid {
        grid-template-columns: 1.3fr 0.7fr;
    }

    .hero-content {
        max-width: 620px;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        max-width: 760px;
        margin-bottom: 40px;
    }

    .grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .card {
        padding: 32px;
    }

    .banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 40px 48px;
    }

    .banner-content {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .banner-icon {
        margin-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .map-container iframe {
        height: 420px;
    }
}

/* ==========================================================================
   RESPONSIVE - TABLET (768px - 991px)
   ========================================================================== */
@media (max-width: 991px) and (min-width: 768px) {
    :root {
        --header-h: 80px;
    }

    .container {
        padding: 0 24px;
    }

    .logo {
        height: 55px;
    }

    .brand-info {
        display: none;
    }

    .nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #fff;
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

        .nav.active {
            display: flex;
        }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 50px 0 70px;
    }

    .section {
        padding: 60px 0;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .banner {
        padding: 28px;
    }

    .btn-lg {
        padding: 14px 24px;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBILE LARGE (576px - 767px)
   ========================================================================== */
@media (max-width: 767px) and (min-width: 576px) {
    :root {
        --header-h: 72px;
    }

    .container {
        padding: 0 20px;
    }

    .logo {
        height: 50px;
    }

    .brand-info {
        display: none;
    }

    .nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        gap: 14px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

        .nav.active {
            display: flex;
        }

    .nav-toggle {
        display: flex;
    }

    .header-cta .btn-text {
        display: none;
    }

    .header-cta .btn {
        padding: 10px;
        min-width: 44px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .section {
        padding: 50px 0;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .banner {
        padding: 24px;
        text-align: center;
    }

    .banner-content {
        align-items: center;
    }

    .banner-actions {
        justify-content: center;
    }

    .note {
        flex-direction: column;
        gap: 10px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBILE SMALL (< 576px)
   ========================================================================== */
@media (max-width: 575px) {
    :root {
        --header-h: 68px;
    }

    .container {
        padding: 0 16px;
    }

    .logo {
        height: 46px;
    }

    .brand-info {
        display: none;
    }

    .nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px;
        flex-direction: column;
        gap: 12px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

        .nav.active {
            display: flex;
        }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1rem;
    }

    .header-cta .btn-text {
        display: none;
    }

    .header-cta .btn {
        padding: 10px;
        min-width: 44px;
    }

    .header-cta .btn-primary .btn-text {
        display: inline;
    }

    .header-cta .btn-primary {
        padding: 10px 16px;
    }

    .hero {
        padding: 32px 0 48px;
    }

        .hero h1 {
            font-size: 1.75rem;
        }

    .badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

        .hero-cta .btn {
            width: 100%;
        }

    .section {
        padding: 40px 0;
    }

        .section h2 {
            font-size: 1.4rem;
        }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .card {
        padding: 20px;
        border-radius: 14px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

        .service-icon svg {
            width: 28px;
            height: 28px;
        }

    .contact-item {
        padding: 12px;
        gap: 10px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
    }

        .contact-icon svg {
            width: 20px;
            height: 20px;
        }

    .contact-tip-list {
        flex-direction: column;
        gap: 8px;
    }

    /* Form responsive */
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-section {
        padding: 16px 0;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 16px; /* Empeche le zoom iOS */
    }

    .checkbox-label {
        padding: 14px;
    }

    .checkbox-box {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .checkbox-text strong {
        font-size: 0.9rem;
    }

    .banner {
        padding: 20px;
        border-radius: 16px;
        text-align: center;
    }

    .banner-title {
        font-size: 1.2rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }

    .banner-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

        .banner-actions .btn {
            width: 100%;
        }

    .banner-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 10px;
    }

        .banner-icon svg {
            width: 22px;
            height: 22px;
        }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer {
        padding: 32px 0 24px;
    }

    .map-container {
        margin-top: 32px;
        border-radius: 12px;
    }

        .map-container iframe {
            height: 260px;
        }

    .note {
        flex-direction: column;
        padding: 14px;
        gap: 8px;
    }

    .gallery-note {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .alert {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        padding: 14px;
    }

    .card-actions {
        flex-direction: column;
    }

        .card-actions .btn {
            width: 100%;
        }

    .btn {
        font-size: 0.9rem;
        padding: 12px 18px;
    }

    .btn-lg {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   TOUCH DEVICE OPTIMIZATIONS
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
    .gallery-zoom {
        opacity: 1;
        transform: scale(1);
    }

    .gallery-item:hover .gallery-img {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }
}



/* ==========================================================================
   SDS PREMIUM HOMEPAGE - 2026
   New homepage design for Pages/Index.cshtml
   ========================================================================== */

/* ---------- Shared premium homepage ---------- */
.premium-section {
    position: relative;
    padding: 105px 0;
}

.premium-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

    .premium-eyebrow::before {
        content: "";
        width: 26px;
        height: 2px;
        border-radius: 999px;
        background: var(--primary);
    }

.premium-section-header {
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
}

    .premium-section-header .premium-eyebrow {
        justify-content: center;
    }

        .premium-section-header .premium-eyebrow::before {
            display: none;
        }

    .premium-section-header h2,
    .portfolio-heading h2,
    .why-content h2 {
        margin: 0;
        color: #0b1626;
        font-size: clamp(2rem, 4.2vw, 3.35rem);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

        .premium-section-header h2 span,
        .portfolio-heading h2 span,
        .why-content h2 span {
            color: var(--primary);
        }

    .premium-section-header p {
        max-width: 690px;
        margin: 20px auto 0;
        color: #667085;
        font-size: 1.03rem;
        line-height: 1.8;
    }

.compact-header {
    margin-bottom: 45px;
}


/* ==========================================================================
   HOME HERO
   ========================================================================== */

.home-hero {
    position: relative;
    min-height: min(780px, calc(100vh - var(--header-h)));
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #071426;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.01);
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgba(3, 14, 28, 0.98) 0%, rgba(5, 20, 39, 0.95) 26%, rgba(5, 20, 39, 0.78) 47%, rgba(5, 20, 39, 0.26) 68%, rgba(5, 20, 39, 0.05) 100%), linear-gradient(0deg, rgba(3, 14, 28, 0.22), rgba(3, 14, 28, 0.02) 55%);
}

.home-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 4px;
    background: linear-gradient(90deg, #ff7a18, #ff9a44 50%, #ff7a18);
}

.home-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 78px;
    padding-bottom: 88px;
}

.home-hero-content {
    width: min(720px, 63%);
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 132, 43, 0.38);
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    color: #ffb078;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

    .home-hero-badge svg {
        width: 17px;
        height: 17px;
        flex: 0 0 auto;
        color: #ff7a18;
    }

.home-hero-title {
    max-width: 710px;
    margin: 0 0 25px;
    color: #fff;
    font-size: clamp(2.8rem, 5.1vw, 4.8rem);
    font-weight: 850;
    line-height: 0.99;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

    .home-hero-title span {
        display: block;
        margin-top: 8px;
        color: #ff7618;
    }

.home-hero-description {
    max-width: 655px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.45vw, 1.14rem);
    line-height: 1.78;
}

.home-hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 690px;
    margin-bottom: 34px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 11px 8px 11px 0;
}

.hero-feature-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 132, 43, 0.30);
    border-radius: 13px;
    background: rgba(249, 115, 22, 0.11);
    color: #ff7a18;
    backdrop-filter: blur(10px);
}

    .hero-feature-icon svg {
        width: 21px;
        height: 21px;
    }

.hero-feature strong,
.hero-feature span {
    display: block;
}

.hero-feature strong {
    color: #fff;
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1.25;
}

.hero-feature span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.72rem;
    line-height: 1.3;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 25px;
}

.hero-btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

    .hero-btn svg {
        width: 20px;
        height: 20px;
        flex: 0 0 auto;
    }

.hero-btn-primary {
    min-width: 270px;
    background: linear-gradient(135deg, #ff7b18 0%, #f45e0b 100%);
    color: #fff;
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.30);
}

    .hero-btn-primary:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 21px 42px rgba(249, 115, 22, 0.39);
    }

.hero-btn-secondary {
    min-width: 220px;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(8, 21, 38, 0.45);
    color: #fff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

    .hero-btn-secondary:hover {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.62);
        background: rgba(255, 255, 255, 0.10);
        transform: translateY(-3px);
    }

.hero-btn-arrow {
    margin-left: 4px;
    font-size: 1.25rem;
}

.home-hero-location {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: rgba(255, 255, 255, 0.69);
    font-size: 0.83rem;
}

    .home-hero-location > svg {
        width: 19px;
        height: 19px;
        flex: 0 0 auto;
        color: #ff7618;
    }

.location-divider {
    width: 1px;
    height: 18px;
    margin: 0 3px;
    background: rgba(255, 255, 255, 0.23);
}

.home-hero-location a {
    color: #ff9143;
    font-weight: 750;
    transition: color 180ms ease;
}

    .home-hero-location a:hover {
        color: #fff;
    }

.hero-floating-status {
    position: absolute;
    right: max(28px, calc((100vw - var(--container)) / 2 + 20px));
    bottom: 26px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    max-width: 315px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(4, 15, 29, 0.74);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
    color: #fff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.hero-status-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 999px;
    background: #26d980;
    box-shadow: 0 0 0 6px rgba(38, 217, 128, 0.12);
}

.hero-floating-status strong,
.hero-floating-status span {
    display: block;
}

.hero-floating-status strong {
    margin-bottom: 2px;
    font-size: 0.78rem;
}

.hero-floating-status span:last-child {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
}


/* ==========================================================================
   TRUST STRIP
   ========================================================================== */

.trust-strip {
    position: relative;
    z-index: 5;
    background: #fff;
    border-bottom: 1px solid #ebedf0;
    box-shadow: 0 10px 35px rgba(16, 24, 40, 0.04);
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-strip-item {
    min-height: 108px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 28px;
    border-right: 1px solid #eceef1;
}

    .trust-strip-item:first-child {
        padding-left: 0;
    }

    .trust-strip-item:last-child {
        border-right: 0;
        padding-right: 0;
    }

.trust-strip-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #fff3e8;
    color: #f97316;
}

    .trust-strip-icon svg {
        width: 21px;
        height: 21px;
    }

.trust-strip-item strong,
.trust-strip-item span {
    display: block;
}

.trust-strip-item strong {
    color: #121a26;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.3;
}

.trust-strip-item span {
    margin-top: 3px;
    color: #8b95a5;
    font-size: 0.72rem;
}


/* ==========================================================================
   PREMIUM SERVICES
   ========================================================================== */

.services-section {
    background: radial-gradient(circle at 12% 10%, rgba(249, 115, 22, 0.065), transparent 28%), #fff;
}

.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.premium-service-card {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 31px 27px 25px;
    border: 1px solid #e8ebef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(17, 24, 39, 0.045);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

    .premium-service-card:hover {
        transform: translateY(-7px);
        border-color: #ffd8bc;
        box-shadow: 0 24px 58px rgba(17, 24, 39, 0.10);
    }

.service-number {
    position: absolute;
    top: 23px;
    right: 24px;
    color: #d8dde5;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.premium-service-icon {
    width: 59px;
    height: 59px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 17px;
    background: linear-gradient(145deg, #fff2e7, #fff8f2);
    color: #f97316;
}

    .premium-service-icon svg {
        width: 29px;
        height: 29px;
    }

.premium-service-card h3 {
    margin: 0 0 14px;
    color: #101828;
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.premium-service-card > p {
    margin: 0 0 20px;
    color: #687386;
    font-size: 0.91rem;
    line-height: 1.72;
}

.premium-service-card ul {
    display: grid;
    gap: 9px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.premium-service-card li {
    position: relative;
    padding-left: 20px;
    color: #4d596a;
    font-size: 0.83rem;
}

    .premium-service-card li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.62em;
        width: 7px;
        height: 7px;
        border: 2px solid #f97316;
        border-radius: 999px;
        transform: translateY(-50%);
    }

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #f97316;
    font-size: 0.83rem;
    font-weight: 800;
}

    .service-card-link span {
        transition: transform 180ms ease;
    }

    .service-card-link:hover span {
        transform: translateX(4px);
    }

.featured-service {
    border-color: #ffcfad;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.055), transparent 35%), #fff;
}

    .featured-service::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff8a2d, #f65d09);
    }

.featured-service-label {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #fff3e8;
    color: #e85c08;
    font-size: 0.61rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* ==========================================================================
   WHY SDS
   ========================================================================== */

.why-section {
    overflow: hidden;
    background: #f7f8fa;
}

    .why-section::before {
        content: "";
        position: absolute;
        top: -190px;
        right: -160px;
        width: 430px;
        height: 430px;
        border-radius: 999px;
        background: rgba(249, 115, 22, 0.055);
        filter: blur(2px);
    }

.why-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 86px;
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-image-wrapper {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 75px rgba(15, 23, 42, 0.16);
}

    .why-image-wrapper img {
        width: 100%;
        height: 100%;
        min-height: 570px;
        object-fit: cover;
    }

.why-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(6, 18, 34, 0.78));
}

.why-image-badge {
    position: absolute;
    left: 28px;
    bottom: 27px;
    max-width: 280px;
    color: #fff;
}

    .why-image-badge strong,
    .why-image-badge span {
        display: block;
    }

    .why-image-badge strong {
        margin-bottom: 5px;
        color: #ff8c36;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
    }

    .why-image-badge span {
        font-size: 1rem;
        font-weight: 700;
    }

.why-floating-card {
    position: absolute;
    top: 42px;
    right: -34px;
    min-width: 155px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

    .why-floating-card strong,
    .why-floating-card span {
        display: block;
    }

    .why-floating-card strong {
        color: #f97316;
        font-size: 1.55rem;
        line-height: 1;
    }

    .why-floating-card span {
        margin-top: 6px;
        color: #667085;
        font-size: 0.72rem;
    }

.why-content h2 {
    margin-bottom: 20px;
}

.why-intro {
    max-width: 620px;
    margin: 0 0 29px;
    color: #657083;
    font-size: 1rem;
    line-height: 1.8;
}

.why-list {
    display: grid;
    gap: 17px;
}

.why-list-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
}

.why-check {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #fff1e6;
    color: #f97316;
}

    .why-check svg {
        width: 20px;
        height: 20px;
    }

.why-list-item h3 {
    margin: 1px 0 4px;
    color: #172033;
    font-size: 0.96rem;
    font-weight: 800;
}

.why-list-item p {
    margin: 0;
    color: #747f90;
    font-size: 0.85rem;
    line-height: 1.55;
}

.why-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 31px;
    padding: 14px 19px;
    border-radius: 12px;
    background: #101b2c;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 13px 30px rgba(16, 27, 44, 0.16);
}

    .why-cta:hover {
        color: #fff;
        background: #172944;
    }

    .why-cta span {
        color: #ff8c36;
    }


/* ==========================================================================
   PROCESS
   ========================================================================== */

.process-section {
    background: linear-gradient(180deg, #fff, #fbfbfc);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

.process-card {
    position: relative;
    min-height: 280px;
    padding: 28px 27px;
    border: 1px solid #e9ecf1;
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.045);
}

.process-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #e1e5eb;
    font-size: 0.77rem;
    font-weight: 850;
}

.process-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 16px;
    background: #fff2e7;
    color: #f97316;
}

    .process-icon svg {
        width: 27px;
        height: 27px;
    }

.process-card h3 {
    margin: 0 0 10px;
    color: #101828;
    font-size: 1.16rem;
    font-weight: 800;
}

.process-card p {
    margin: 0;
    color: #717c8e;
    font-size: 0.88rem;
    line-height: 1.68;
}

.process-arrow {
    color: #f97316;
    font-size: 1.65rem;
    font-weight: 500;
}


/* ==========================================================================
   PORTFOLIO PREMIUM
   ========================================================================== */

.portfolio-section {
    background: #0a1729;
}

.portfolio-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 42px;
    align-items: end;
    margin-bottom: 44px;
}

    .portfolio-heading h2 {
        max-width: 720px;
        color: #fff;
    }

    .portfolio-heading > p {
        max-width: 390px;
        margin: 0 0 7px auto;
        color: rgba(255, 255, 255, 0.58);
        font-size: 0.93rem;
        line-height: 1.7;
    }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.portfolio-item {
    position: relative;
    grid-column: span 4;
    overflow: hidden;
    border-radius: 20px;
    background: #111f32;
    color: #fff;
}

    .portfolio-item.portfolio-large {
        grid-column: span 7;
        grid-row: span 2;
    }

    .portfolio-item.portfolio-wide {
        grid-column: span 8;
    }

    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 500ms ease;
    }

    .portfolio-item:hover img {
        transform: scale(1.055);
        filter: saturate(1.06);
    }

.portfolio-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(3, 12, 24, 0.86) 100%);
}

.portfolio-content {
    position: absolute;
    left: 23px;
    bottom: 21px;
    z-index: 2;
}

    .portfolio-content > span {
        display: block;
        margin-bottom: 6px;
        color: #ff8a32;
        font-size: 0.65rem;
        font-weight: 850;
        letter-spacing: 0.1em;
    }

    .portfolio-content h3 {
        margin: 0 0 3px;
        color: #fff;
        font-size: 1.02rem;
        font-weight: 800;
    }

    .portfolio-content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.68);
        font-size: 0.76rem;
    }

.portfolio-view {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(7, 18, 34, 0.45);
    color: #fff;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(6px);
    backdrop-filter: blur(10px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.portfolio-item:hover .portfolio-view {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta-section {
    padding: 92px 0;
    background: #fff;
}

.final-cta {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 45px;
    align-items: center;
    overflow: hidden;
    padding: 52px 58px;
    border-radius: 28px;
    background: linear-gradient(120deg, #f97316 0%, #f8670f 48%, #e95107 100%);
    box-shadow: 0 25px 64px rgba(249, 115, 22, 0.25);
    color: #fff;
}

.final-cta-decoration {
    position: absolute;
    right: -95px;
    top: -150px;
    width: 390px;
    height: 390px;
    border: 62px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    pointer-events: none;
}

.final-cta-content,
.final-cta-actions {
    position: relative;
    z-index: 2;
}

.final-cta-label {
    display: block;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.final-cta h2 {
    max-width: 670px;
    margin: 0;
    color: #fff;
    font-size: clamp(1.85rem, 3.3vw, 3.1rem);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

    .final-cta h2 span {
        color: #fff6ed;
    }

.final-cta p {
    max-width: 590px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.81);
    font-size: 0.92rem;
    line-height: 1.7;
}

.final-cta-actions {
    display: grid;
    gap: 12px;
}

.final-cta-primary,
.final-cta-phone {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 18px;
    border-radius: 14px;
    transition: transform 200ms ease, background 200ms ease;
}

    .final-cta-primary svg,
    .final-cta-phone svg {
        width: 20px;
        height: 20px;
        flex: 0 0 auto;
    }

.final-cta-primary {
    justify-content: center;
    background: #fff;
    color: #dd5608;
    font-size: 0.83rem;
    font-weight: 850;
    box-shadow: 0 12px 28px rgba(145, 49, 0, 0.16);
}

    .final-cta-primary:hover {
        color: #c64d06;
        transform: translateY(-2px);
    }

    .final-cta-primary span {
        margin-left: auto;
        font-size: 1.1rem;
    }

.final-cta-phone {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

    .final-cta-phone:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.14);
    }

    .final-cta-phone small,
    .final-cta-phone strong {
        display: block;
    }

    .final-cta-phone small {
        color: rgba(255, 255, 255, 0.67);
        font-size: 0.64rem;
    }

    .final-cta-phone strong {
        margin-top: 2px;
        color: #fff;
        font-size: 0.84rem;
    }


/* ==========================================================================
   PREMIUM HOMEPAGE RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
    .home-hero-content {
        width: min(680px, 66%);
    }

    .hero-floating-status {
        display: none;
    }

    .services-premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-service-card {
        min-height: 390px;
    }

    .why-grid {
        gap: 58px;
    }

    .why-floating-card {
        right: -14px;
    }
}

@media (max-width: 991px) {
    .premium-section {
        padding: 80px 0;
    }

    .home-hero {
        min-height: 700px;
    }

    .home-hero-bg {
        object-position: 60% center;
    }

    .home-hero-overlay {
        background: linear-gradient(90deg, rgba(4, 15, 29, 0.97) 0%, rgba(4, 15, 29, 0.92) 38%, rgba(4, 15, 29, 0.55) 65%, rgba(4, 15, 29, 0.24) 100%);
    }

    .home-hero-content {
        width: min(650px, 76%);
    }

    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip-item:nth-child(2) {
        border-right: 0;
    }

    .trust-strip-item:nth-child(-n+2) {
        border-bottom: 1px solid #eceef1;
    }

    .trust-strip-item:first-child,
    .trust-strip-item:last-child {
        padding-left: 24px;
        padding-right: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .why-visual {
        max-width: 720px;
        margin: 0 auto;
    }

    .why-image-wrapper,
    .why-image-wrapper img {
        min-height: 500px;
    }

    .why-content {
        max-width: 760px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .process-card {
        min-height: 0;
    }

    .process-arrow {
        transform: rotate(90deg);
        text-align: center;
        line-height: 1;
    }

    .portfolio-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

        .portfolio-heading > p {
            max-width: 600px;
            margin: 0;
        }

    .portfolio-grid {
        grid-auto-rows: 230px;
    }

    .portfolio-item,
    .portfolio-item.portfolio-wide {
        grid-column: span 6;
    }

        .portfolio-item.portfolio-large {
            grid-column: span 12;
            grid-row: span 2;
        }

    .final-cta {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 45px;
    }

    .final-cta-actions {
        max-width: 430px;
    }
}

@media (max-width: 767px) {
    .premium-section {
        padding: 68px 0;
    }

    .premium-section-header {
        margin-bottom: 38px;
    }

    .home-hero {
        min-height: 790px;
        align-items: flex-end;
    }

    .home-hero-bg {
        object-position: 62% center;
    }

    .home-hero-overlay {
        background: linear-gradient(0deg, rgba(3, 13, 27, 0.99) 0%, rgba(3, 13, 27, 0.96) 48%, rgba(3, 13, 27, 0.42) 78%, rgba(3, 13, 27, 0.14) 100%);
    }

    .home-hero-container {
        padding-top: 250px;
        padding-bottom: 48px;
    }

    .home-hero-content {
        width: 100%;
    }

    .home-hero-badge {
        max-width: 100%;
        font-size: 0.61rem;
        letter-spacing: 0.05em;
    }

    .home-hero-title {
        max-width: 620px;
        font-size: clamp(2.35rem, 10.5vw, 3.7rem);
    }

    .home-hero-description {
        max-width: 620px;
        font-size: 0.96rem;
    }

    .home-hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px 14px;
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 470px;
    }

    .hero-btn,
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        min-width: 0;
    }

    .home-hero-location {
        max-width: 600px;
    }

    .services-premium-grid {
        grid-template-columns: 1fr;
    }

    .premium-service-card {
        min-height: 0;
    }

    .why-image-wrapper,
    .why-image-wrapper img {
        min-height: 410px;
    }

    .why-floating-card {
        top: 22px;
        right: 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 265px;
    }

    .portfolio-item,
    .portfolio-item.portfolio-large,
    .portfolio-item.portfolio-wide {
        grid-column: auto;
        grid-row: auto;
    }

        .portfolio-item.portfolio-large {
            min-height: 360px;
        }

    .portfolio-view {
        opacity: 1;
        transform: none;
    }

    .final-cta-section {
        padding: 65px 0;
    }

    .final-cta {
        padding: 35px 28px;
        border-radius: 22px;
    }
}

@media (max-width: 575px) {
    .premium-section {
        padding: 56px 0;
    }

    .premium-section-header h2,
    .portfolio-heading h2,
    .why-content h2 {
        font-size: 2rem;
    }

    .home-hero {
        min-height: 780px;
    }

    .home-hero-container {
        padding-top: 215px;
        padding-bottom: 38px;
    }

    .home-hero-title {
        font-size: 2.45rem;
        line-height: 1.01;
    }

    .home-hero-description {
        margin-bottom: 20px;
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .home-hero-features {
        grid-template-columns: 1fr;
        margin-bottom: 23px;
    }

    .hero-feature {
        padding: 4px 0;
    }

    .hero-feature-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .hero-feature span {
        display: none;
    }

    .hero-btn {
        min-height: 54px;
        font-size: 0.87rem;
    }

    .home-hero-location {
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .location-divider {
        display: none;
    }

    .home-hero-location a {
        flex-basis: 100%;
        margin-left: 28px;
    }

    .trust-strip-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip-item,
    .trust-strip-item:first-child,
    .trust-strip-item:last-child {
        min-height: 84px;
        padding: 14px 4px;
        border-right: 0;
        border-bottom: 1px solid #eceef1;
    }

        .trust-strip-item:last-child {
            border-bottom: 0;
        }

    .premium-service-card {
        padding: 27px 23px 23px;
        border-radius: 18px;
    }

    .why-image-wrapper,
    .why-image-wrapper img {
        min-height: 340px;
    }

    .why-image-wrapper {
        border-radius: 21px;
    }

    .why-image-badge {
        left: 20px;
        bottom: 19px;
    }

    .why-floating-card {
        top: 15px;
        right: 15px;
        min-width: 135px;
        padding: 14px 16px;
    }

    .why-list-item {
        grid-template-columns: 40px 1fr;
    }

    .why-check {
        width: 39px;
        height: 39px;
    }

    .process-card {
        padding: 24px 22px;
        border-radius: 18px;
    }

    .portfolio-grid {
        grid-auto-rows: 225px;
    }

    .portfolio-item.portfolio-large {
        min-height: 310px;
    }

    .final-cta {
        padding: 30px 22px;
    }

    .final-cta-primary,
    .final-cta-phone {
        width: 100%;
    }
}


/* Accessibility / motion preference */
@media (prefers-reduced-motion: reduce) {
    .premium-service-card,
    .hero-btn,
    .portfolio-item img,
    .portfolio-view,
    .service-card-link span,
    .final-cta-primary {
        transition: none !important;
    }
}


/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .header,
    .nav-toggle,
    .banner,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .section {
        padding: 20px 0;
    }
}


/* ========== SDS FINAL LAYOUT + CONTACT FIXES ========== */

/* Safety net for inline icons used by the new layout/contact markup */
.header svg,
.footer svg,
.quote-hero svg,
.quote-main-section svg,
.quote-map-section svg,
.quote-final-section svg {
    display: block;
    flex-shrink: 0;
}

/* Accessibility skip link: hidden until keyboard focus */
.skip-link {
    position: fixed;
    top: -120px;
    left: 18px;
    z-index: 100000;
    padding: 11px 16px;
    border-radius: 10px;
    background: #0b1626;
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    transition: top .18s ease;
}

    .skip-link:focus {
        top: 16px;
        color: #fff;
    }

/* ---------------- HEADER ---------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(15,23,42,.07);
    box-shadow: 0 4px 22px rgba(15,23,42,.035);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-container {
    height: 100%;
    max-width: var(--container);
}

.brand {
    gap: 12px;
}

.brand-logo-wrapper {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

    .brand-logo-wrapper .logo {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: contain;
    }

.brand-name {
    font-size: 1.08rem;
    font-weight: 850;
    letter-spacing: -.025em;
    color: #101828;
}

.brand-tagline {
    margin-top: 3px;
    font-size: .68rem;
    color: #8a94a5;
}

.nav {
    gap: 5px;
}

.nav-link {
    position: relative;
    padding: 10px 11px;
    border-radius: 9px;
    color: #4e596a;
    font-size: .82rem;
    font-weight: 650;
    transition: background .2s ease,color .2s ease;
}

    .nav-link:hover {
        background: #f7f8fa;
        color: #111827;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 2px;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: var(--primary);
        transform: translateX(-50%);
        transition: width .2s ease;
    }

    .nav-link:hover::after {
        width: 18px;
    }

.header-cta {
    gap: 9px;
}

.header-phone,
.header-quote {
    min-height: 44px;
    border-radius: 11px;
    font-size: .79rem;
}

.header-phone {
    padding: 0 14px;
    border-width: 1px;
    border-color: #d7dde6;
    color: #3b4657;
    background: #fff;
}

    .header-phone:hover {
        border-color: var(--primary);
        background: #fff7ed;
        color: #e65d0a;
    }

.header-quote {
    padding: 0 17px;
    border: 0;
    background: linear-gradient(135deg,#ff7c18,#f45d0b);
    color: #fff;
    box-shadow: 0 9px 22px rgba(249,115,22,.20);
}

    .header-quote:hover {
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 13px 28px rgba(249,115,22,.28);
    }

    .header-phone .btn-icon,
    .header-quote .btn-icon {
        width: 16px;
        height: 16px;
    }

/* ---------------- FOOTER ---------------- */
.footer {
    position: relative;
    overflow: hidden;
    margin-top: auto;
    padding: 62px 0 25px;
    background: radial-gradient(circle at 4% 0%,rgba(249,115,22,.09),transparent 28%),#0b2746;
    color: rgba(255,255,255,.68);
}

    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,transparent,#f97316 25%,#ff9b51 50%,#f97316 75%,transparent);
    }

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr .78fr 1fr;
    gap: 45px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex: 0 0 auto;
    opacity: 1;
}

.footer-company {
    margin-bottom: 7px;
    color: #fff;
    font-size: .94rem;
    font-weight: 800;
}

    .footer-company span {
        color: #ff8a34;
    }

.footer-desc {
    max-width: 250px;
    color: rgba(255,255,255,.55);
    font-size: .77rem;
    line-height: 1.6;
}

.footer-quote-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    color: #ff8a34;
    font-size: .74rem;
    font-weight: 750;
}

    .footer-quote-link:hover {
        color: #fff;
    }

.footer-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    .footer-col h4 {
        margin-bottom: 17px;
        color: #fff;
        font-size: .68rem;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .footer-col address {
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-style: normal;
    }

.footer-contact-line {
    display: flex !important;
    align-items: flex-start;
    gap: 9px;
    margin: 0 !important;
    color: rgba(255,255,255,.66) !important;
    font-size: .78rem !important;
    line-height: 1.55 !important;
}

    .footer-contact-line svg {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px;
        margin-top: 2px;
        color: #ff8a34;
    }

    .footer-contact-line span,
    .footer-contact-line a {
        min-width: 0;
        color: rgba(255,255,255,.68);
        font-size: .78rem;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

        .footer-contact-line a:hover {
            color: #ff9b51;
        }

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .footer-nav a {
        width: fit-content;
        color: rgba(255,255,255,.63);
        font-size: .78rem;
        transition: color .2s ease,transform .2s ease;
    }

        .footer-nav a:hover {
            color: #fff;
            transform: translateX(3px);
        }

.footer-availability {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.availability-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(47,214,135,.16);
    border-radius: 999px;
    background: rgba(47,214,135,.07);
    color: #67e4a6;
    font-size: .67rem;
    font-weight: 750;
}

.availability-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #33da89;
    box-shadow: 0 0 0 4px rgba(51,218,137,.10);
}

.footer-hours {
    font-size: .76rem;
    line-height: 1.5;
}

    .footer-hours strong,
    .footer-hours span {
        display: block;
    }

    .footer-hours strong {
        color: rgba(255,255,255,.88);
        margin-bottom: 3px;
    }

    .footer-hours span {
        color: rgba(255,255,255,.53);
    }

.footer-map-link {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #ff8a34;
    font-size: .72rem;
    font-weight: 700;
}

    .footer-map-link svg {
        width: 15px !important;
        height: 15px !important;
    }

    .footer-map-link:hover {
        color: #fff;
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 22px;
    text-align: left;
    color: rgba(255,255,255,.38);
    font-size: .68rem;
}

    .footer-bottom p {
        margin: 0;
    }

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .footer-bottom-links a {
        color: rgba(255,255,255,.44);
    }

        .footer-bottom-links a:hover {
            color: #ff8a34;
        }

/* ---------------- CONTACT HERO ---------------- */
.quote-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #071426;
}

.quote-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.quote-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg,rgba(3,14,28,.97) 0%,rgba(5,20,39,.91) 37%,rgba(5,20,39,.57) 67%,rgba(5,20,39,.20) 100%);
}

.quote-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg,#f97316,#ff9a4d 50%,#f97316);
}

.quote-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 62px;
    padding-bottom: 66px;
}

.quote-hero-content {
    max-width: 720px;
}

.quote-hero-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #ff9a50;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .15em;
}

.quote-hero h1 {
    max-width: 700px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.45rem,5vw,4.15rem);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -.05em;
}

    .quote-hero h1 span {
        display: block;
        color: #f97316;
    }

.quote-hero p {
    max-width: 650px;
    margin: 19px 0 0;
    color: rgba(255,255,255,.80);
    font-size: 1rem;
    line-height: 1.75;
}

.quote-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

    .quote-hero-badges > span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 8px 12px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 999px;
        background: rgba(6,18,34,.34);
        color: rgba(255,255,255,.84);
        font-size: .73rem;
        font-weight: 650;
        backdrop-filter: blur(10px);
    }

    .quote-hero-badges svg {
        width: 16px !important;
        height: 16px !important;
        color: #ff8530;
    }

/* ---------------- CONTACT MAIN ---------------- */
.quote-main-section {
    padding: 84px 0 92px;
    background: radial-gradient(circle at 7% 12%,rgba(249,115,22,.05),transparent 24%),#f8f9fb;
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(300px,.82fr) minmax(0,1.35fr);
    gap: 32px;
    align-items: start;
}

.quote-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 22px);
}

.quote-sidebar-card,
.quote-form-card {
    border: 1px solid #e4e8ef;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(17,24,39,.065);
}

.quote-sidebar-card {
    overflow: hidden;
    padding: 30px;
}

.quote-sidebar-heading {
    padding-bottom: 24px;
    border-bottom: 1px solid #edf0f4;
}

    .quote-sidebar-heading .premium-eyebrow {
        margin-bottom: 11px;
    }

    .quote-sidebar-heading h2 {
        margin: 0;
        color: #101828;
        font-size: 1.42rem;
        font-weight: 850;
        letter-spacing: -.035em;
    }

        .quote-sidebar-heading h2 span {
            color: #f97316;
        }

    .quote-sidebar-heading p {
        margin: 11px 0 0;
        color: #768193;
        font-size: .82rem;
        line-height: 1.65;
    }

.quote-contact-list {
    display: grid;
    gap: 3px;
    padding: 15px 0 4px;
}

.quote-contact-item {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0,1fr) auto;
    gap: 11px;
    align-items: center;
    min-height: 66px;
    padding: 9px 7px;
    border-radius: 13px;
    color: inherit;
    transition: background .18s ease,transform .18s ease;
}

.quote-contact-link:hover {
    background: #fff7f0;
    color: inherit;
    transform: translateX(2px);
}

.quote-contact-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff2e7;
    color: #f97316;
}

    .quote-contact-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

.quote-contact-label,
.quote-contact-item strong,
.quote-contact-item small {
    display: block;
}

.quote-contact-label {
    margin-bottom: 3px;
    color: #9aa3b1;
    font-size: .60rem;
    font-weight: 750;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.quote-contact-item strong {
    color: #253044;
    font-size: .79rem;
    font-weight: 750;
    line-height: 1.4;
}

.quote-contact-item small {
    margin-top: 2px;
    color: #8e97a6;
    font-size: .66rem;
}

.quote-contact-arrow {
    color: #f97316;
    font-size: .95rem;
}

.quote-email {
    overflow-wrap: anywhere;
}

.quote-availability {
    margin-top: 18px;
    padding: 17px;
    border: 1px solid #ffe0c7;
    border-radius: 16px;
    background: linear-gradient(145deg,#fff8f2,#fff3e9);
}

.quote-availability-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #137c4d;
    font-size: .68rem;
    font-weight: 800;
}

    .quote-availability-status > span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #22c97d;
        box-shadow: 0 0 0 5px rgba(34,201,125,.10);
    }

.quote-availability-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 11px;
}

    .quote-availability-grid div + div {
        padding-left: 12px;
        border-left: 1px solid #efd6c4;
    }

    .quote-availability-grid strong,
    .quote-availability-grid span {
        display: block;
    }

    .quote-availability-grid strong {
        color: #172033;
        font-size: .98rem;
        font-weight: 850;
    }

    .quote-availability-grid span {
        margin-top: 2px;
        color: #8b95a4;
        font-size: .64rem;
    }

.quote-form-card {
    padding: 36px 38px;
}

.quote-form-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 26px;
    padding-bottom: 27px;
    border-bottom: 1px solid #edf0f4;
}

    .quote-form-heading .premium-eyebrow {
        margin-bottom: 10px;
    }

    .quote-form-heading h2 {
        margin: 0;
        color: #101828;
        font-size: clamp(1.55rem,2.7vw,2rem);
        font-weight: 850;
        letter-spacing: -.04em;
    }

    .quote-form-heading p {
        margin: 7px 0 0;
        color: #8a94a4;
        font-size: .75rem;
    }

.quote-form-secure {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    margin-top: 4px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f3f7f5;
    color: #2e7a58;
    font-size: .63rem;
    font-weight: 750;
}

    .quote-form-secure svg {
        width: 15px !important;
        height: 15px !important;
    }

.validation-summary:empty {
    display: none;
}

.validation-summary {
    margin: 20px 0 0;
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 11px;
    background: #fef2f2;
    color: #b42318;
    font-size: .77rem;
}

.premium-form-section {
    margin: 0;
    padding: 28px 0;
    border: 0;
    border-bottom: 1px solid #edf0f4;
}

    .premium-form-section legend {
        display: flex;
        align-items: center;
        gap: 9px;
        width: 100%;
        margin-bottom: 20px;
        color: #172033;
        font-size: .83rem;
        font-weight: 850;
    }

.premium-form-number {
    width: 27px;
    height: 27px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: #fff0e4;
    color: #f97316;
    font-size: .61rem;
    font-weight: 850;
}

.premium-form-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
}

.premium-field {
    min-width: 0;
}

.field-full {
    grid-column: 1/-1;
}

.premium-field label {
    display: block;
    margin-bottom: 7px;
    color: #485365;
    font-size: .74rem;
    font-weight: 750;
}

    .premium-field label > span {
        color: #ef4444;
    }

.premium-field input,
.premium-field textarea,
.premium-field select {
    width: 100%;
    min-height: 49px;
    padding: 12px 14px;
    border: 1.5px solid #dfe4eb;
    border-radius: 11px;
    outline: 0;
    background: #fff;
    color: #172033;
    font: inherit;
    font-size: .87rem;
    transition: border-color .18s ease,box-shadow .18s ease,background .18s ease;
}

.premium-field textarea {
    min-height: 124px;
    resize: vertical;
    line-height: 1.6;
}

.premium-field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 38px;
    cursor: pointer;
}

.premium-select-wrap {
    position: relative;
}

    .premium-select-wrap::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 15px;
        width: 7px;
        height: 7px;
        border-right: 2px solid #8e98a7;
        border-bottom: 2px solid #8e98a7;
        transform: translateY(-65%) rotate(45deg);
        pointer-events: none;
    }

.premium-field input:focus,
.premium-field textarea:focus,
.premium-field select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249,115,22,.09);
    background: #fffdfa;
}

.premium-field input::placeholder,
.premium-field textarea::placeholder {
    color: #acb4c0;
}

.field-validation-error {
    display: block;
    margin-top: 6px;
    color: #dc2626;
    font-size: .68rem;
    font-weight: 600;
}

.premium-urgent {
    position: relative;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-top: 19px;
    padding: 14px 15px;
    border: 1px solid #e3e7ed;
    border-radius: 13px;
    background: #fafbfc;
    cursor: pointer;
    transition: border-color .18s ease,background .18s ease;
}

    .premium-urgent:hover {
        border-color: #fdcda9;
        background: #fff9f4;
    }

    .premium-urgent > input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.premium-urgent-box {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    display: grid;
    place-items: center;
    margin-top: 1px;
    border: 1.5px solid #cfd5de;
    border-radius: 7px;
    background: #fff;
    color: #fff;
    transition: all .16s ease;
}

    .premium-urgent-box svg {
        width: 14px !important;
        height: 14px !important;
        opacity: 0;
        transform: scale(.6);
        transition: opacity .16s ease,transform .16s ease;
    }

.premium-urgent > input:checked + .premium-urgent-box {
    border-color: #f97316;
    background: #f97316;
}

    .premium-urgent > input:checked + .premium-urgent-box svg {
        opacity: 1;
        transform: scale(1);
    }

.premium-urgent-text strong,
.premium-urgent-text small {
    display: block;
}

.premium-urgent-text strong {
    color: #273244;
    font-size: .77rem;
    font-weight: 800;
}

.premium-urgent-text small {
    margin-top: 3px;
    color: #8992a1;
    font-size: .66rem;
    line-height: 1.45;
}

.quote-submit-area {
    padding-top: 27px;
}

.premium-submit {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 19px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg,#ff7b18,#f25b09);
    box-shadow: 0 14px 30px rgba(249,115,22,.25);
    color: #fff;
    font: inherit;
    font-size: .85rem;
    font-weight: 850;
    cursor: pointer;
    transition: transform .19s ease,box-shadow .19s ease;
}

    .premium-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 19px 38px rgba(249,115,22,.34);
    }

    .premium-submit svg {
        width: 19px !important;
        height: 19px !important;
    }

.premium-submit-arrow {
    margin-left: auto;
    font-size: 1.1rem;
}

.quote-submit-area > p {
    margin: 10px 0 0;
    color: #9aa2af;
    font-size: .64rem;
    line-height: 1.5;
    text-align: center;
}

.premium-alert {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    gap: 12px;
    margin-top: 21px;
    padding: 15px;
    border-radius: 14px;
}

.premium-alert-success {
    border: 1px solid #b7ebd0;
    background: #effcf5;
}

.premium-alert-error {
    border: 1px solid #fecaca;
    background: #fff4f4;
}

.premium-alert-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
}

.premium-alert-success .premium-alert-icon {
    background: #daf6e6;
    color: #15935c;
}

.premium-alert-error .premium-alert-icon {
    background: #fee2e2;
    color: #dc2626;
}

.premium-alert-icon svg {
    width: 21px !important;
    height: 21px !important;
}

.premium-alert strong {
    display: block;
    margin-bottom: 4px;
    color: #172033;
    font-size: .79rem;
}

.premium-alert p {
    margin: 0 0 5px;
    color: #677286;
    font-size: .72rem;
    line-height: 1.55;
}

.premium-alert a {
    font-size: .69rem;
    font-weight: 750;
}

/* ---------------- CONTACT MAP ---------------- */
.quote-map-section {
    padding: 86px 0 38px;
    background: #fff;
}

.quote-map-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 28px;
    margin-bottom: 26px;
}

    .quote-map-heading .premium-eyebrow {
        margin-bottom: 9px;
    }

    .quote-map-heading h2 {
        margin: 0;
        color: #101828;
        font-size: clamp(1.7rem,3.5vw,2.6rem);
        font-weight: 850;
        letter-spacing: -.045em;
    }

        .quote-map-heading h2 span {
            color: #f97316;
        }

.quote-map-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border: 1px solid #e3e7ed;
    border-radius: 11px;
    color: #3f4a5d;
    font-size: .73rem;
    font-weight: 750;
}

    .quote-map-button:hover {
        border-color: #f97316;
        color: #e85c08;
    }

.quote-map {
    overflow: hidden;
    border: 1px solid #e5e9ef;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(17,24,39,.08);
}

    .quote-map iframe {
        width: 100%;
        height: 420px;
        display: block;
        border: 0;
    }

.quote-final-section {
    padding-top: 52px;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 991px) {
    .brand-info {
        display: none;
    }

    .brand-logo-wrapper {
        width: 48px;
        height: 48px;
    }

    .nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        padding: 18px 24px;
        background: #fff;
        border-bottom: 1px solid #e7eaf0;
        box-shadow: 0 14px 30px rgba(15,23,42,.10);
        flex-direction: column;
        align-items: stretch;
        z-index: 999;
    }

        .nav.active {
            display: flex;
        }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 11px 13px;
    }

        .nav-link::after {
            display: none;
        }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 36px;
    }

    .quote-layout {
        grid-template-columns: 1fr;
    }

    .quote-sidebar {
        position: static;
    }

    .quote-contact-list {
        grid-template-columns: repeat(2,1fr);
        gap: 5px 12px;
    }

    .quote-availability {
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    .header-phone {
        width: 44px;
        padding: 0;
    }

        .header-phone .btn-text {
            display: none;
        }

    .header-quote .btn-icon {
        display: none;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }

    .quote-hero {
        min-height: 430px;
        align-items: flex-end;
    }

    .quote-hero-bg {
        object-position: 62% center;
    }

    .quote-hero-overlay {
        background: linear-gradient(0deg,rgba(3,14,28,.98),rgba(3,14,28,.84) 55%,rgba(3,14,28,.34) 100%);
    }

    .quote-hero-container {
        padding-top: 120px;
        padding-bottom: 46px;
    }

    .quote-main-section {
        padding: 62px 0 72px;
    }

    .quote-contact-list {
        grid-template-columns: 1fr;
    }

    .quote-form-card {
        padding: 27px 22px;
    }

    .quote-form-heading {
        flex-direction: column;
        gap: 11px;
    }

    .quote-form-secure {
        margin-top: 0;
    }

    .premium-form-grid {
        grid-template-columns: 1fr;
    }

    .field-full {
        grid-column: auto;
    }

    .quote-map-section {
        padding-top: 62px;
    }

    .quote-map-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .quote-map iframe {
        height: 330px;
    }
}

@media (max-width: 575px) {
    .header-container {
        gap: 7px;
    }

    .brand-logo-wrapper {
        width: 43px;
        height: 43px;
    }

    .header-quote {
        padding: 0 12px;
    }

    .footer-company {
        font-size: .9rem;
    }

    .quote-hero {
        min-height: 405px;
    }

        .quote-hero h1 {
            font-size: 2.35rem;
        }

        .quote-hero p {
            font-size: .87rem;
        }

    .quote-hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .quote-sidebar-card {
        padding: 23px 18px;
        border-radius: 19px;
    }

    .quote-form-card {
        padding: 24px 17px;
        border-radius: 19px;
    }

    .quote-availability-grid {
        grid-template-columns: 1fr;
    }

        .quote-availability-grid div + div {
            padding-top: 9px;
            padding-left: 0;
            border-top: 1px solid #efd6c4;
            border-left: 0;
        }

    .premium-form-section {
        padding: 24px 0;
    }

    .premium-field input,
    .premium-field textarea,
    .premium-field select {
        font-size: 16px;
    }

    .premium-submit {
        min-height: 54px;
        padding: 0 13px;
        font-size: .78rem;
    }

    .quote-map {
        border-radius: 18px;
    }

        .quote-map iframe {
            height: 280px;
        }
}

/* ==========================================================================
   SDS FULL-BLEED HERO HEADER
   Header transparent over hero, white after scroll
   ========================================================================== */

/* Header floats above hero pages */
.hero-header-page .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    height: var(--header-h);
    background: linear-gradient( 180deg, rgba(4, 15, 29, 0.58) 0%, rgba(4, 15, 29, 0.22) 58%, rgba(4, 15, 29, 0.02) 100% );
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background .28s ease, box-shadow .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}


    /* Text over image */
    .hero-header-page .header:not(.scrolled) .brand-name {
        color: #fff;
    }

    .hero-header-page .header:not(.scrolled) .brand-tagline {
        color: rgba(255, 255, 255, 0.66);
    }

    .hero-header-page .header:not(.scrolled) .nav-link {
        color: rgba(255, 255, 255, 0.88);
    }

        .hero-header-page .header:not(.scrolled) .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .hero-header-page .header:not(.scrolled) .nav-link::after {
            background: #ff7a18;
        }

    .hero-header-page .header:not(.scrolled) .header-phone {
        border-color: rgba(255, 255, 255, 0.36);
        background: rgba(6, 18, 34, 0.23);
        color: #fff;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

        .hero-header-page .header:not(.scrolled) .header-phone:hover {
            border-color: rgba(255, 255, 255, 0.70);
            background: rgba(255, 255, 255, 0.10);
            color: #fff;
        }

    .hero-header-page .header:not(.scrolled) .nav-toggle span {
        background: #fff;
    }


    /* White sticky navbar after user scrolls */
    .hero-header-page .header.scrolled {
        background: rgba(255, 255, 255, 0.96);
        border-bottom-color: rgba(15, 23, 42, 0.08);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

        .hero-header-page .header.scrolled .brand-name {
            color: #101828;
        }

        .hero-header-page .header.scrolled .brand-tagline {
            color: #8a94a5;
        }

        .hero-header-page .header.scrolled .nav-link {
            color: #4f5969;
        }

            .hero-header-page .header.scrolled .nav-link:hover {
                background: #f7f8fa;
                color: #101828;
            }

        .hero-header-page .header.scrolled .header-phone {
            border-color: #d9dee7;
            background: #fff;
            color: #374151;
        }

        .hero-header-page .header.scrolled .nav-toggle span {
            background: #374151;
        }


/* Cleaner, clearer logo */
.brand-logo-wrapper {
    width: 50px;
    height: 61px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Homepage hero now begins at the very top of the page */
.home-page .home-hero {
    min-height: 790px;
}

.home-page .home-hero-container {
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 92px;
}


/* A little more darkness under navbar and copy */
.home-page .home-hero-overlay {
    background: linear-gradient( 90deg, rgba(3, 14, 28, 0.98) 0%, rgba(5, 20, 39, 0.94) 24%, rgba(5, 20, 39, 0.76) 46%, rgba(5, 20, 39, 0.24) 69%, rgba(5, 20, 39, 0.03) 100% ), linear-gradient( 180deg, rgba(4, 15, 29, 0.24) 0%, rgba(4, 15, 29, 0.02) 34%, rgba(4, 15, 29, 0.10) 100% );
}


/* Contact page uses the same premium top treatment */
.contact-page .quote-hero {
    min-height: 520px;
}

.contact-page .quote-hero-container {
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 76px;
}

.contact-page .quote-hero-overlay {
    background: linear-gradient( 90deg, rgba(3, 14, 28, 0.97) 0%, rgba(5, 20, 39, 0.91) 36%, rgba(5, 20, 39, 0.52) 68%, rgba(5, 20, 39, 0.16) 100% );
}


/* Keep normal inner pages from hiding underneath the sticky header */
.inner-page main {
    padding-top: var(--header-h);
}


/* Home/contact do not reserve white header space */
.home-page main,
.contact-page main {
    padding-top: 0;
}


/* Slightly stronger top hero proportions */
@media (min-width: 1200px) {
    .home-page .home-hero {
        min-height: 820px;
    }

    .home-page .home-hero-content {
        width: min(735px, 58%);
    }
}


/* Tablet */
@media (max-width: 991px) {

    .hero-header-page .header:not(.scrolled) {
        background: linear-gradient( 180deg, rgba(3, 14, 28, 0.80) 0%, rgba(3, 14, 28, 0.35) 72%, rgba(3, 14, 28, 0.05) 100% );
    }

        .hero-header-page .header:not(.scrolled) .nav {
            background: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid #e5e7eb;
            box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
        }

        .hero-header-page .header:not(.scrolled) .nav-link {
            color: #374151;
        }

            .hero-header-page .header:not(.scrolled) .nav-link:hover {
                color: #f97316;
                background: #fff7ed;
            }

    .home-page .home-hero-container {
        padding-top: calc(var(--header-h) + 70px);
    }

    .contact-page .quote-hero-container {
        padding-top: calc(var(--header-h) + 70px);
    }
}


/* Mobile */
@media (max-width: 767px) {

    .brand-logo-wrapper {
        width: 43px;
        height: 53px;
    }

    .home-page .home-hero {
        min-height: 820px;
    }

    .home-page .home-hero-container {
        padding-top: calc(var(--header-h) + 150px);
        padding-bottom: 42px;
    }

    .contact-page .quote-hero {
        min-height: 500px;
    }

    .contact-page .quote-hero-container {
        padding-top: calc(var(--header-h) + 150px);
        padding-bottom: 48px;
    }

    .hero-header-page .header:not(.scrolled) .header-quote {
        box-shadow: 0 8px 20px rgba(249, 115, 22, 0.24);
    }
}


/* Small phones */
@media (max-width: 575px) {

    .brand-logo-wrapper {
        width: 39px;
        height: 49px;
    }

    .home-page .home-hero-container {
        padding-top: calc(var(--header-h) + 130px);
    }

    .contact-page .quote-hero-container {
        padding-top: calc(var(--header-h) + 125px);
    }
}
