/* ============================================================
   Phone Aid Plus — Main Stylesheet (Orange Brand)
   ============================================================ */

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

:root {
  --primary:       #EC5E27;
  --primary-dark:  #d44d1a;
  --primary-light: #fef3ee;
  --charcoal:      #1F1F1F;
  --text:          #1F1F1F;
  --text-muted:    #6b7280;
  --border:        #EAEAEA;
  --bg:            #F8F8F5;
  --white:         #ffffff;
  --success:       #22c55e;
  --danger:        #ef4444;
  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:     0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:     0 10px 28px rgba(0,0,0,.12);
  --transition:    200ms ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius-sm); font-size: 15px;
  font-weight: 600; border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(236,94,39,.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(236,94,39,.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-charcoal { background: var(--charcoal); color: #fff; }
.btn-charcoal:hover { background: #2d2d2d; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ---- Navbar ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; text-decoration: none;
  letter-spacing: -.01em;
}
.nav-brand svg { color: var(--primary); }
.brand-phoneaid { color: var(--primary); }
.brand-plus     { color: var(--charcoal); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-link { color: #4b5563; font-size: 14px; font-weight: 500; text-decoration: none; padding: 7px 14px; border-radius: var(--radius-sm); transition: var(--transition); }
.nav-link:hover { color: var(--primary); background: var(--primary-light); }
.nav-link.active { color: var(--primary); background: var(--primary-light); font-weight: 600; }
.nav-btn { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #1F1F1F 0%, #2d2d2d 100%);
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: 0; width: 45%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(236,94,39,.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(236,94,39,.7), transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label { font-size: 12px; font-weight: 700; color: var(--primary); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.1; }
.page-hero-subtitle { color: #9ca3af; font-size: 17px; max-width: 520px; }
.page-hero-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== DESKTOP SLIDER FIX ===== */
@media (min-width: 768px) {

    .hero-desktop {
        width: 100%;
        height: auto !important;
        aspect-ratio: 1774 / 887;
        overflow: hidden;
        position: relative;
        background: #fff;
    }

    .hero-desktop .slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity .6s ease;
    }

    .hero-desktop .slide.active {
        opacity: 1;
        z-index: 2;
    }

    .hero-desktop .slide img,
    .hero-img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain !important;
        object-position: center center !important;
    }

}

/* Arrows */

.slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#1F1F1F;
    font-size:20px;
    cursor:pointer;
    z-index:20;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.slider-prev{
    left:20px;
}

.slider-next{
    right:20px;
}

/* Dots */

.slider-controls{
    position:absolute;
    bottom:18px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
    z-index:20;
}

.slider-dot{
    width:22px;
    height:4px;
    border:none;
    border-radius:50px;
    background:#d0d0d0;
    cursor:pointer;
}

.slider-dot.active{
    background:#EC5E27;
}




/* ---- Hero Mobile ---- */
.hero-mobile { display: none; }
.hero-mobile-slide {
  min-height: 500px;
  background-size: cover;
  background-position: center top;
  position: relative;
  display: flex; align-items: flex-end;
}
.hero-mobile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,31,31,.3) 0%, rgba(31,31,31,.78) 55%, rgba(31,31,31,.92) 100%);
  display: flex; align-items: flex-end; padding-bottom: 40px;
}
.hero-mobile-content { position: relative; z-index: 1; color: #fff; padding: 0 4px; }
.hero-mobile-content .slide-badge { display: inline-block; padding: 5px 14px; background: var(--primary); color: #fff; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.hero-mobile-content h1 { font-size: 32px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.hero-mobile-content h1 span { color: #FDA172; }
.hero-mobile-content p { color: rgba(255,255,255,.82); font-size: 16px; margin-bottom: 24px; }
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider shared controls */
.slider-controls { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 28px; height: 4px; background: rgba(255,255,255,.45); border: none; border-radius: 2px; cursor: pointer; transition: var(--transition); padding: 0; }
.hero-desktop .slider-dot { background: rgba(0,0,0,.25); }
.hero-desktop .slider-dot.active { background: var(--primary); width: 44px; }
.slider-dot.active { background: var(--primary); width: 44px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.9); border: 1px solid var(--border); color: var(--charcoal); width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 16px; transition: var(--transition); box-shadow: var(--shadow); }
.slider-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ---- Sections ---- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { font-size: 12px; font-weight: 700; color: var(--primary); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.section-header h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; color: var(--text); margin-bottom: 14px; }
.section-header p { color: var(--text-muted); font-size: 17px; max-width: 560px; margin: 0 auto; }

/* ---- Service Cards ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 16px;
  padding: 40px 32px; text-align: center; cursor: pointer;
  transition: all .25s ease; text-decoration: none; display: block; color: var(--text);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--primary); transform: scaleX(0); transition: transform .25s ease;
}
.service-card:hover { border-color: var(--primary); box-shadow: 0 12px 36px rgba(236,94,39,.14); transform: translateY(-5px); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-icon { background: var(--primary); color: #fff; transform: scale(1.08); }
.service-icon { width: 72px; height: 72px; background: var(--primary-light); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--primary); transition: all .25s ease; }
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 22px; }
.service-card .link-text { color: var(--primary); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }

/* ---- How It Works ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.step-item { text-align: center; }
.step-number { width: 60px; height: 60px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; margin: 0 auto 20px; box-shadow: 0 6px 18px rgba(236,94,39,.35); }
.step-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-item p { color: var(--text-muted); font-size: 14px; }

/* ---- Trust Badges ---- */
.badges-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.badge-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 30px 22px; text-align: center; transition: all .2s ease; }
.badge-card:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(236,94,39,.1); transform: translateY(-3px); }
.badge-card .badge-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary); }
.badge-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.badge-card p { color: var(--text-muted); font-size: 13px; }

/* ---- Reviews ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); border-color: #fcd9c9; }
.review-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.reviewer-name { font-weight: 700; font-size: 15px; }
.reviewer-date { color: var(--text-muted); font-size: 12px; }
.stars { display: flex; gap: 3px; color: #f59e0b; font-size: 16px; margin-bottom: 10px; }
.review-text { color: #475569; font-size: 14px; line-height: 1.75; font-style: italic; }

/* ---- CTA Banner ---- */
.cta-banner { background: linear-gradient(135deg, #1F1F1F 0%, #2d2d2d 60%, #EC5E27 200%); color: #fff; padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23EC5E27' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-banner h2 span { color: var(--primary); }
.cta-banner p { font-size: 18px; opacity: .82; margin-bottom: 40px; position: relative; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { position: relative; font-size: 16px; padding: 15px 44px; border-radius: var(--radius); box-shadow: 0 8px 24px rgba(236,94,39,.45); }
.cta-banner .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(236,94,39,.5); }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 11px 14px; font-size: 15px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--white); color: var(--text);
  font-family: inherit; transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(236,94,39,.1); }
.form-control.error { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-error { color: var(--danger); font-size: 12px; margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- Cards ---- */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card-header { padding: 18px 26px; border-bottom: 1px solid var(--border); background: var(--bg); }
.card-header h3 { font-size: 16px; font-weight: 700; }
.card-body { padding: 28px; }

/* ---- Alert ---- */
.alert { padding: 13px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 8px; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ---- Quote Flow ---- */
.quote-page { min-height: calc(100vh - 68px); background: var(--bg); padding: 52px 0 88px; }
.quote-container { max-width: 720px; margin: 0 auto; }

.quote-progress { display: flex; gap: 0; margin-bottom: 44px; }
.progress-step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.progress-step::after { content: ''; position: absolute; top: 14px; left: calc(50% + 14px); width: calc(100% - 28px); height: 2px; background: var(--border); }
.progress-step:last-child::after { display: none; }
.progress-step.done::after, .progress-step.active::after { background: var(--primary); }
.step-circle { width: 28px; height: 28px; border-radius: 50%; background: var(--border); color: var(--text-muted); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: var(--transition); }
.progress-step.active .step-circle { background: var(--primary); color: #fff; box-shadow: 0 0 0 4px rgba(236,94,39,.2); }
.progress-step.done .step-circle { background: var(--success); color: #fff; }
.step-label { font-size: 11px; font-weight: 600; color: var(--text-muted); margin-top: 6px; text-align: center; }
.progress-step.active .step-label { color: var(--primary); font-weight: 700; }

.quote-panel { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 44px; box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.quote-panel h2 { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.quote-panel .sub { color: var(--text-muted); font-size: 15px; margin-bottom: 34px; }

.device-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 8px; }
.device-option { border: 2px solid var(--border); border-radius: 14px; padding: 30px 16px; text-align: center; cursor: pointer; transition: all .2s ease; }
.device-option:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(236,94,39,.15); }
.device-option.selected { border-color: var(--primary); background: var(--primary-light); }
.device-option svg { color: var(--primary); margin-bottom: 12px; display: block; margin-left: auto; margin-right: auto; }
.device-option span { font-size: 14px; font-weight: 700; color: var(--text); display: block; }

.brand-grid, .model-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.option-btn { border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 15px 14px; text-align: center; cursor: pointer; background: none; font-size: 15px; font-weight: 600; color: var(--text); transition: var(--transition); width: 100%; }
.option-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.option-btn.selected { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

.back-link { background: none; border: none; color: var(--text-muted); font-size: 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; padding: 4px 0; margin-bottom: 24px; font-weight: 500; }
.back-link:hover { color: var(--primary); }

.success-box { text-align: center; padding: 52px 24px; }
.success-icon { width: 84px; height: 84px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--success); }
.success-icon svg { width: 42px; height: 42px; }
.success-box h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.success-box p { color: var(--text-muted); margin-bottom: 32px; font-size: 16px; max-width: 400px; margin-left: auto; margin-right: auto; }

/* ---- Pre-Owned Request ---- */
.preowned-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.preowned-option-btn {
  display: flex; align-items: center; gap: 14px;
  border: 2px solid var(--border); border-radius: 12px;
  padding: 16px 18px; cursor: pointer; transition: all .2s ease;
  background: var(--white); width: 100%; text-align: left;
}
.preowned-option-btn:hover { border-color: var(--primary); background: var(--primary-light); transform: translateY(-2px); }
.preowned-option-btn.selected { border-color: var(--primary); background: var(--primary-light); }
.po-icon { width: 42px; height: 42px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; transition: var(--transition); }
.preowned-option-btn.selected .po-icon { background: var(--primary); color: #fff; }
.po-label { font-size: 14px; font-weight: 700; color: var(--text); display: block; }
.po-sub { font-size: 12px; color: var(--text-muted); display: block; margin-top: 2px; }

/* ---- Reviews Page ---- */
.reviews-page { background: var(--bg); min-height: calc(100vh - 68px); padding: 52px 0 88px; }
.reviews-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }

.star-picker { display: flex; gap: 6px; margin-top: 6px; }
.star-picker button { background: none; border: none; cursor: pointer; font-size: 30px; color: #e2e8f0; transition: var(--transition); padding: 0; line-height: 1; }
.star-picker button.on, .star-picker button.hover { color: #f59e0b; }

/* ---- Contact Page ---- */
.contact-page { background: var(--bg); min-height: calc(100vh - 68px); padding: 52px 0 88px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 32px; }
.contact-info-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 16px; box-shadow: var(--shadow); transition: all .2s ease; }
.contact-info-card:hover { box-shadow: 0 8px 24px rgba(236,94,39,.1); border-color: #fcd9c9; transform: translateX(3px); }
.contact-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-info-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* ---- Footer ---- */
.footer { background: #1F1F1F; color: #9ca3af; padding: 68px 0 0; border-top: 3px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; margin-bottom: 14px; }
.footer-brand svg { color: var(--primary); }
.footer-brand .brand-phoneaid { color: var(--primary); }
.footer-brand .brand-plus { color: #fff; }
.footer-tagline { font-size: 14px; line-height: 1.7; max-width: 220px; }
.footer-col h4 { color: #f3f4f6; font-size: 12px; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .1em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a { color: #9ca3af; text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; text-align: center; font-size: 13px; }

/* ---- Spinner ---- */
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin .6s linear infinite; margin: 36px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Status badges ---- */
.badge { display: inline-flex; padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.badge-new { background: #fef3ee; color: #c2440f; }
.badge-contacted { background: #fef3c7; color: #92400e; }
.badge-booked { background: #ede9fe; color: #5b21b6; }
.badge-completed { background: #dcfce7; color: #14532d; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 12px; gap: 4px; border-bottom: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
  .nav-links.open { display: flex; }
  .navbar { position: relative; }
  .nav-inner { position: relative; }
  .hero-desktop { display: none !important; }
  .hero-mobile { display: block !important; }
  .reviews-layout, .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: 1fr; }
  .brand-grid, .model-grid { grid-template-columns: 1fr; }
  .preowned-options-grid { grid-template-columns: 1fr; }
  .quote-panel { padding: 24px 20px; }
  .page-hero { padding: 44px 0 40px; }
  .section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .slide-actions { flex-direction: column; }
  .slide-actions .btn { width: 100%; max-width: 280px; }
}
/* ===== Desktop Slider Image Fix ===== */

.hero-desktop{
    height:auto !important;
    min-height:580px !important;
    background:#fff;
}

.hero-desktop .slide img,
.hero-img{
    width:100% !important;
    height:auto !important;
    display:block !important;
    object-fit:contain !important;
    object-position:center top !important;
}

/* ===========================
   HERO MOBILE
=========================== */

.hero-mobile{
    display:none;
}

.hero-mobile-slide{
    position:relative;
    min-height:500px;
    background-size:cover;
    background-position:center top;
    display:flex;
    align-items:flex-end;
}

.hero-mobile-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(31,31,31,.25) 0%,
        rgba(31,31,31,.72) 50%,
        rgba(31,31,31,.90) 100%
    );
    display:flex;
    align-items:flex-end;
    padding-bottom:40px;
}

.hero-mobile-content{
    position:relative;
    z-index:20;
    color:#fff;
    max-width:58%;
}

.hero-mobile-content .slide-badge{
    display:inline-block;
    padding:6px 14px;
    background:#EC5E27;
    color:#fff;
    border-radius:50px;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:12px;
}

.hero-mobile-content h1{
    font-size:28px;
    line-height:1.08;
    font-weight:800;
    margin-bottom:12px;
}

.hero-mobile-content h1 span{
    color:#FDA172;
}

.hero-mobile-content p{
    font-size:15px;
    line-height:1.5;
    color:rgba(255,255,255,.9);
    margin-bottom:20px;
    max-width:220px;
}

.slide-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
}

/* ===========================
   MOBILE CLOCK
=========================== */

.hero-clock{
    position:absolute;
    right:18px;
    top:46%;
    transform:translateY(-50%);
    z-index:15;
}

.clock-circle{
    position:relative;
    width:115px;
    height:115px;
    border:4px solid #fff;
    border-radius:50%;
}

.hour-hand{
    position:absolute;
    width:4px;
    height:34px;
    background:#fff;
    left:50%;
    top:50%;
    transform:translate(-50%,-100%) rotate(-55deg);
    transform-origin:bottom center;
    border-radius:3px;
}

.minute-hand{
    position:absolute;
    width:40px;
    height:4px;
    background:#fff;
    left:50%;
    top:50%;
    transform:translateY(-50%) rotate(30deg);
    transform-origin:left center;
    border-radius:3px;
}

.clock-dot{
    position:absolute;
    width:10px;
    height:10px;
    background:#EC5E27;
    border-radius:50%;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.clock-btn{
    position:absolute;
    right:-14px;
    top:50%;
    transform:translateY(-50%);
    width:38px;
    height:38px;
    background:#EC5E27;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
}

/* ===========================
   SMALL MOBILE
=========================== */

@media(max-width:480px){

    .hero-mobile-slide{
        min-height:520px;
    }

    .hero-mobile-content{
        max-width:55%;
    }

    .hero-mobile-content h1{
        font-size:24px;
    }

    .hero-mobile-content p{
        font-size:14px;
        max-width:180px;
    }

    .hero-clock{
        right:12px;
        top:43%;
    }

    .clock-circle{
        width:100px;
        height:100px;
    }

    .hour-hand{
        height:30px;
    }

    .minute-hand{
        width:34px;
    }

    .clock-btn{
        width:34px;
        height:34px;
        right:-10px;
        font-size:16px;
    }

}