/* ========================================
   Solaxay TV Mounting - Light UI
   Modern, mobile-first, Apple-inspired
======================================== */

:root {
    --bg: #f0f2fa;
    --panel: #ffffff;
    --ink: #0f172a;
    --muted: #475569;
    --line: #dae2ff;
    --accent: #f97316;
    --accent-strong: #ea580c;
    --accent-soft: #ffedd5;
    --radius: 18px;
    --shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 16px 48px rgba(15, 23, 42, 0.12);
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.navbar {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--ink) !important;
}

.brand-logo {
    height: 52px;
    max-height: 55px;
    width: auto;
    display: block;
}

.brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ffb869);
    display: inline-block;
}

.navbar-toggler {
    border: 1px solid var(--line);
    padding: 0.35rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.25);
}

.navbar-toggler-icon {
    filter: invert(0.15);
}

.nav-link {
    color: var(--ink) !important;
    font-weight: 600;
    padding: 0.5rem 0.9rem !important;
    border-radius: 14px;
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
    color: var(--accent) !important;
    background: #f1f5f9;
}

.navbar .btn-call {
    color: #0f172a;
    background: #ffedd5;
    box-shadow: none;
}

.navbar .btn-call:hover {
    background: #ffd3a8;
    box-shadow: 0 10px 24px rgba(234, 88, 12, 0.2);
}

.btn-call {
    background: linear-gradient(135deg, var(--accent), #ffb869);
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-call:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(234, 88, 12, 0.32);
}

.btn-ghost {
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    background: #fff;
    transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.hero {
    position: relative;
    padding: 120px 0 90px;
    background: radial-gradient(circle at 10% 20%, #ffedd5 0%, transparent 35%), radial-gradient(circle at 80% 10%, #dbeafe 0%, transparent 32%), radial-gradient(circle at 30% 70%, #e0f2fe 0%, transparent 32%), #f8fafc;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
}

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

.eyebrow {
    color: var(--accent-strong);
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 14px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.05;
    margin: 18px 0 14px;
    color: var(--ink);
}

.hero-sub {
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
    align-items: center;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.badge-chip {
    background: #f1f5f9;
    border: 1px solid var(--line);
    padding: 10px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.hero-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
}

.hero-card i {
    color: var(--accent);
    font-size: 20px;
}

.stat-title {
    font-weight: 700;
    color: var(--ink);
}

.stat-sub {
    color: var(--muted);
    font-size: 14px;
}

.section-padding {
    padding: 80px 0;
}

section {
    scroll-margin-top: 90px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ink);
}

.section-sub {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
}

.card-surface {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card-surface:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: var(--shadow-strong);
}

.card-surface h4 {
    color: var(--ink);
    font-weight: 700;
}

.card-surface p {
    color: var(--muted);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
    color: var(--accent-strong);
    font-size: 20px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(249, 115, 22, 0.08), transparent 50%);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(249, 115, 22, 0.35);
}

.price {
    font-size: 34px;
    font-weight: 800;
    color: var(--ink);
}

.price small {
    color: var(--muted);
    font-size: 14px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}

.feature-list li {
    display: flex;
    gap: 10px;
    color: var(--ink);
}

.feature-list i {
    color: var(--accent);
}

.process-line {
    position: relative;
    padding-left: 46px;
}

.process-line::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.25), rgba(148, 163, 184, 0.1));
}

.process-step {
    position: relative;
    margin-bottom: 28px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-dot {
    position: absolute;
    left: -28px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ffb869);
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.15);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.gallery-card {
    border-radius: var(--radius);
    min-height: 180px;
    background: linear-gradient(135deg, #ffffff, #f2f6ff);
    border: 1px solid var(--line);
    padding: 16px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
    box-shadow: var(--shadow);
}

.gallery-card .tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.6);
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
}

.gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.25);
}

/* Work grid (uploads) */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.work-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.work-card img {
    width: 100%;
    height: auto;
    display: block;
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    height: 100%;
    box-shadow: var(--shadow);
}

.stars {
    color: #fbbf24;
}

.faq .accordion-item {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px !important;
    overflow: hidden;
}

.faq .accordion-button {
    background: #ffffff;
    color: var(--ink);
    font-weight: 700;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--accent-strong);
    box-shadow: none;
}

.faq .accordion-body {
    color: var(--muted);
}

.coverage-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.coverage-badges .badge {
    background: #f1f5f9;
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 10px 14px;
    border-radius: 12px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.form-control,
.form-select {
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.18rem rgba(249, 115, 22, 0.18);
    background: #fff7ed;
}

label {
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 6px;
}

.footer {
    padding: 40px 0 24px;
    color: var(--muted);
    font-size: 14px;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 25px;
    margin-top: 5px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #f1f5f9;
    color: #1877F2;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.social-icon:hover {
    background: var(--accent-soft);
    color: var(--accent-strong);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.floating-cta {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 999;
    display: flex;
    gap: 10px;
}

.floating-cta a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), #ffb869);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.32);
}

@media (max-width: 991px) {
    .hero {
        padding-top: 60px;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 14px;
        border-radius: 12px;
        box-shadow: var(--shadow);
    }

    .brand-logo {
        height: 46px;
        max-height: 50px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .floating-cta {
        right: 12px;
        bottom: 12px;
    }

    .card-surface,
    .pricing-card {
        padding: 16px;
    }

    .section-padding {
        padding: 64px 0;
    }

}

/* Quote modal styles (moved from inline in index.php) */
:root {
    --quote-bg: #0c0c0f;
    --quote-card: #242544;
    --quote-accent: #004c93;
    --quote-glow: 0 18px 64px rgba(122, 184, 255, 0.18);
}

.modal-content.quote-modal {
    background: radial-gradient(120% 90% at 15% 0%, #eef2f9 0%, #e3e9f4 55%, #d8e0ee 100%);
    color: #1f2937;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.modal-content.quote-modal .modal-header,
.modal-content.quote-modal .modal-footer {
    border: none;
}

.quote-layout {
    align-items: flex-start;
    padding-top: 10px;
}

.quote-sidebar {
    position: sticky;
    top: 10px;
}

.quote-sidebar-card {
    background: #f5f7fb;
    border: 1px solid #dbe3ef;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.quote-sidebar-card .text-muted {
    color: #6b7280 !important;
}

.quote-sidebar-card .quote-breakdown li {
    color: #1f2937;
    border-bottom-color: rgba(15, 23, 42, 0.12);
}

.quote-summary-bar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    border-radius: 0;
}

.quote-step {
    display: none;
}

.quote-step.active {
    display: block;
    animation: fadeSlide 0.68s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-option {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
}

.quote-option:hover {
    border-color: rgba(142, 197, 255, 0.6);
}

.quote-option input {
    accent-color: #004c93;
}

.quote-option.active {
    border-color: #004c93;
    box-shadow: var(--quote-glow);
}

.quote-pill {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.quote-price {
    color: #004c93;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.quote-total {
    font-size: 2.6rem;
    font-weight: 800;
    color: #004c93;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(122, 184, 255, 0.15);
}

.quote-breakdown {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.quote-breakdown li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    color: #034e94;
}

.quote-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(142, 197, 255, 0.1);
    color: #004c93;
    font-weight: 600;
    font-size: 0.85rem;
}

.quote-ghost {
    background: transparent;
    color: #525252;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-ghost:hover {
    border-color: #7ab8ff;
    color: #7ab8ff;
}

.quote-close-btn {
    border-color: transparent;
    color: #004c93;
}

.quote-close-btn:hover {
    border-color: #7ab8ff;
    color: #7ab8ff;
}

.hero-visual {
    background: #f7f9fc;
    border: 1px solid #e4e8f0;
    border-radius: 16px;
    padding: 28px;
    color: #1f2937;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-visual-icon {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 12px 28px rgba(96, 165, 250, 0.35);
}

.hero-visual-text {
    font-weight: 700;
    font-size: 1.05rem;
}

.hero-visual-note {
    color: #4b5563;
    margin-bottom: 0;
}

.hero-visual-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-visual-pill {
    padding: 8px 10px;
    border-radius: 12px;
    background: #eef2f8;
    border: 1px solid #e1e6f0;
    color: #111827;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-visual-pill i {
    color: #2563eb;
}

.quote-action {
    min-width: 160px;
}

.quote-modal.quote-start .quote-sidebar,
.quote-modal.quote-size .quote-sidebar,
.quote-modal.quote-mount .quote-sidebar {
    display: none;
}

.quote-modal.quote-start .quote-layout > .col-lg-7,
.quote-modal.quote-size .quote-layout > .col-lg-7,
.quote-modal.quote-mount .quote-layout > .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
}

.modal-content.quote-modal.quote-start .modal-footer,
.modal-content.quote-modal.quote-size .modal-footer,
.modal-content.quote-modal.quote-mount .modal-footer,
.modal-content.quote-modal.quote-wire .modal-footer,
.modal-content.quote-modal.quote-device .modal-footer,
.modal-content.quote-modal.quote-request .modal-footer {
    display: none;
}

.quote-start-center {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
}

.quote-start-title {
    color: #1f2937;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.quote-start-sub {
    color: #4b5563;
    margin-bottom: 0;
}

.quote-zip-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(10, 10, 46, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.quote-zip-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff7a2a;
}

.quote-zip-input {
    background: transparent;
    border: none;
    color: #f2f6ff;
    font-size: 1.05rem;
    width: 200px;
    padding: 6px 4px;
    outline: none;
}

.quote-zip-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.quote-zip-next {
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ff7a2a;
    color: #0c0c0f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 10px 20px rgba(255, 122, 42, 0.35);
}

.quote-zip-next:hover {
    background: #ff8a45;
}

.quote-step-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.quote-tv-option {
    background: #242544;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f8fbff;
    font-weight: 600;
    min-height: 62px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.quote-tv-option .quote-tv-price {
    color: #ff7a2a;
    font-weight: 700;
    margin-left: 8px;
}

.quote-tv-option:hover {
    border-color: rgba(255, 122, 42, 0.6);
}

.quote-tv-option.active {
    border-color: #ff7a2a;
    box-shadow: 0 10px 25px rgba(20, 22, 28, 0.35);
}

.quote-tv-grid {
    margin-bottom: 20px;
}

.quote-mount-grid {
    margin-bottom: 20px;
}

.quote-mount-card {
    background: #242544;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 16px;
    padding: 18px 16px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    color: #f8fbff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.quote-mount-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.quote-mount-card .quote-mount-title {
    font-weight: 400;
    font-size: 14px;
}

.quote-mount-card .quote-mount-price {
    color: #ff7a2a;
    font-weight: 700;
}

.quote-mount-card:hover {
    border-color: rgba(255, 122, 42, 0.6);
}

.quote-mount-card.active {
    border-color: #ff7a2a;
    box-shadow: 0 12px 26px rgba(20, 22, 28, 0.35);
}

.quote-mount-card .quote-mount-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ff7a2a;
}

.quote-wire-card {
    background: #242544;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 16px;
    padding: 18px 20px;
    color: #f8fbff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.quote-wire-card:hover {
    border-color: rgba(255, 122, 42, 0.6);
}

.quote-wire-card.active {
    border-color: #ff7a2a;
    box-shadow: 0 12px 26px rgba(20, 22, 28, 0.35);
}

.quote-wire-title {
    font-weight: 600;
}

.quote-wire-price {
    color: #ff7a2a;
    font-weight: 700;
    margin-left: 8px;
}

.quote-wire-card .text-muted {
    color: rgba(248, 251, 255, 0.7) !important;
}

.quote-device-card {
    background: #242544;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 16px;
    padding: 16px 18px;
    color: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.quote-device-card:hover {
    border-color: rgba(255, 122, 42, 0.6);
}

.quote-device-card.active {
    border-color: #ff7a2a;
    box-shadow: 0 12px 26px rgba(20, 22, 28, 0.35);
}

.quote-device-title {
    font-weight: 600;
}

.quote-device-note {
    color: rgba(248, 251, 255, 0.7);
    font-size: 0.9rem;
}

.quote-device-price {
    color: #ff7a2a;
    font-weight: 700;
    margin-left: 6px;
}

.quote-device-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ff7a2a;
    color: #0c0c0f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.quote-form .form-label {
    color: #1f2937;
    font-weight: 600;
}

.quote-input {
    background: rgba(10, 10, 46, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #f2f6ff;
    padding: 12px 14px;
}

.quote-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.quote-input:focus {
    border-color: rgba(255, 122, 42, 0.6);
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 42, 0.15);
    color: #f2f6ff;
    background: rgba(10, 10, 46, 0.9);
}

.quote-file {
    position: relative;
}

.quote-file-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(10, 10, 46, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f2f6ff;
    cursor: pointer;
}

.quote-file-label i {
    color: #ff7a2a;
    font-size: 1.1rem;
}

.quote-file-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

@media (max-width: 576px) {
    .quote-total {
        font-size: 2.1rem;
    }

    .quote-summary-bar {
        padding: 12px;
    }

    .quote-modal .modal-dialog {
        max-width: 100%;
        margin: 0;
    }

    .quote-modal .modal-content {
        border-radius: 0;
        min-height: 100vh;
    }

    .quote-modal .modal-body {
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }

    .quote-modal .modal-footer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    #quotePrev {
        order: 1;
        align-self: flex-start;
    }

    .quote-footer-nav {
        order: 2;
        gap: 8px;
        justify-content: flex-end;
        flex: 1 1 auto;
    }

    .quote-start-center {
        min-height: 260px;
    }

    .quote-zip-input {
        width: 140px;
    }

    .quote-action {
        width: 100%;
    }
}
