/* =============================================
   Packers & Movers — Page Styles v2.4
   Color: Amber #F59E0B / #D97706
   Layout mirrors wedding-photography.css
   ============================================= */

/* =============================================
   Header Location Selector (shared with wedding-photography)
   ============================================= */
.hls-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    height: 38px;
    overflow: visible;
    flex-shrink: 0;
}
.hls-city-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.7rem;
    height: 100%;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    user-select: none;
    border-radius: 9px 0 0 9px;
    transition: background 0.15s;
}
.hls-city-btn:hover { background: #F3F4F6; }
.hls-chevron { transition: transform 0.2s; flex-shrink: 0; }
.hls-sep {
    width: 1px;
    height: 22px;
    background: #E5E7EB;
    flex-shrink: 0;
}
.hls-locality-wrap {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.7rem;
    height: 100%;
    color: #9CA3AF;
}
.hls-locality-wrap input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.85rem;
    color: #374151;
    width: 150px;
    font-family: inherit;
}
.hls-locality-wrap input::placeholder { color: #9CA3AF; }
.hls-city-drop,
.hls-locality-drop {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    min-width: 200px;
    max-height: 260px;
    overflow-y: auto;
    z-index: 2100;
    display: none;
}
.hls-locality-drop { left: auto; right: 0; min-width: 180px; }
.hls-city-drop.open,
.hls-locality-drop.open { display: block; }
.hls-opt {
    padding: 0.55rem 1rem;
    cursor: pointer;
    font-size: 0.88rem;
    color: #374151;
    transition: background 0.12s;
}
.hls-opt:hover { background: #FFFBEB; color: #D97706; }

/* Hire a Professional button */
.btn-hire-pro {
    background: #F59E0B;
    color: #fff !important;
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-hire-pro:hover { background: #D97706; transform: translateY(-1px); }

/* Mobile: hide location selector, show only button */
@media (max-width: 768px) {
    .hls-wrap { display: none; }
    .btn-hire-pro { display: inline-block !important; }
}
@media (max-width: 900px) {
    .hls-locality-wrap input { width: 110px; }
}

/* Dark mode */
html[data-theme="dark"] .hls-wrap {
    background: #1e1e2e;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .hls-city-btn { color: #c0cad8; }
html[data-theme="dark"] .hls-city-btn:hover { background: #2a2a3e; }
html[data-theme="dark"] .hls-sep { background: #2d2d3a; }
html[data-theme="dark"] .hls-locality-wrap { color: #5a6a7a; }
html[data-theme="dark"] .hls-locality-wrap input { color: #c0cad8; }
html[data-theme="dark"] .hls-locality-wrap input::placeholder { color: #5a6a7a; }
html[data-theme="dark"] .hls-city-drop,
html[data-theme="dark"] .hls-locality-drop {
    background: #1e1e2e;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .hls-opt { color: #c0cad8; }
html[data-theme="dark"] .hls-opt:hover { background: #2a1a00; color: #F59E0B; }

/* ── Animations ── */
@keyframes urgencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
@keyframes ctaPulse {
    0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(245,158,11,0.5); }
    50%  { transform: scale(1.04); box-shadow: 0 0 0 10px rgba(245,158,11,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #111827; background: #F9FAFB; line-height: 1.6; }

/* ── Buttons ── */
.btn-primary {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    display: inline-block;
    background: #F9FAFB;
    color: #374151;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    font-family: inherit;
}
.btn-secondary:hover { background: #F3F4F6; border-color: #D1D5DB; }

/* ── Urgency Bar ── */
#urgencyBar { position: relative; z-index: 100; flex-wrap: wrap; }
@media (max-width: 640px) {
    #urgencyBar { font-size: 0.75rem; padding: 0.5rem 2.5rem 0.5rem 0.75rem; gap: 0.5rem; }
    #urgencyBar button:first-of-type { font-size: 0.7rem; padding: 0.25rem 0.65rem; }
}

/* ── Hero Section ── */
.service-hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 2rem 3rem;
}
.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
}
.hero-content {
    animation: fadeInUp 0.6s ease both;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: #34D399;
    border-radius: 50%;
    animation: urgencyPulse 1.5s infinite;
    flex-shrink: 0;
}
.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #fff; /* always white — hero bg is always a dark overlay image */
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.hero-content h1 span { color: #FCD34D; }
.hero-bullets {
    list-style: none;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.9); /* white — hero always has dark bg */
}
.hero-bullets li .check { color: #34D399; font-size: 1.1rem; line-height: 1.35; flex-shrink: 0; }
.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.13);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    min-width: 90px;
}
.hero-stat .num { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.hero-stat .label { font-size: 0.75rem; opacity: 0.85; margin-top: 0.2rem; }

/* ── Hero Form Card ── */
.hero-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    color: #111827;
    animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-form-card .form-header {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    padding: 1.25rem 1.5rem;
}
.hero-form-card .form-header h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.2rem; }
.hero-form-card .form-header p { font-size: 0.82rem; opacity: 0.9; margin: 0; }
.hero-form-card .form-body { padding: 1.5rem; }
.hero-form-card .form-group { margin-bottom: 1rem; }
.hero-form-card .form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: #374151; margin-bottom: 0.35rem; }
.hero-form-card input,
.hero-form-card select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #111827;
    background: #fff;
    font-family: inherit;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.hero-form-card input:focus,
.hero-form-card select:focus { outline: none; border-color: #F59E0B; }
.hero-form-card .phone-input-wrapper {
    display: flex;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}
.hero-form-card .phone-prefix {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.75rem;
    background: #F9FAFB;
    border-right: 1.5px solid #E5E7EB;
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}
.hero-form-card .phone-prefix:focus-within { border-color: #F59E0B; }
.hero-form-card .phone-input-wrapper input {
    border: none;
    border-radius: 0;
    flex: 1;
}
.hero-form-card .phone-input-wrapper input:focus { border-color: transparent; box-shadow: none; }
.hero-trust-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.75rem;
}
.hero-trust-row span { font-size: 0.7rem; color: #6B7280; }

/* ── Promise Strip ── */
.promise-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    border-bottom: 1px solid #E5E7EB;
}
.promise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    flex: 1;
    min-width: 190px;
}
.promise-icon-wrap { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.promise-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: #111827; margin-bottom: 0.1rem; }
.promise-item span { font-size: 0.77rem; color: #6B7280; line-height: 1.4; }
.promise-divider { width: 1px; height: 36px; background: #E5E7EB; flex-shrink: 0; }
@media (max-width: 768px) {
    .promise-strip { display: grid; grid-template-columns: 1fr 1fr; }
    .promise-divider { display: none; }
    .promise-item { padding: 0.85rem; border-bottom: 1px solid #F3F4F6; min-width: unset; }
    .promise-item:nth-child(odd) { border-right: 1px solid #F3F4F6; }
}

/* ── Sticky Section Nav ── */
.section-nav-bar {
    background: #fff;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.section-nav-bar.scrolled { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.section-nav-inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav-link {
    flex-shrink: 0;
    padding: 0.85rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6B7280;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.section-nav-link:hover { color: #D97706; }
.section-nav-link.active { color: #111827; border-bottom-color: #F59E0B; font-weight: 700; }

/* ── Main 2-column Layout ── */
.main-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2.5rem;
    align-items: start;
}
.content-left { min-width: 0; }

/* ── Content Sections ── */
.content-section {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.content-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ── Why MatchedNeeds — List ── */
.why-list { display: flex; flex-direction: column; }
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #F3F4F6;
}
.why-item:last-child { border-bottom: none; }
.why-item-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}
.why-item-text { display: flex; flex-direction: column; gap: 0.2rem; padding-top: 0.25rem; }
.why-item-text strong { font-size: 0.97rem; color: #111827; font-weight: 700; }
.why-item-text span { font-size: 0.85rem; color: #6B7280; }

/* ── How It Works — Timeline ── */
.hiw-timeline { display: flex; flex-direction: column; }
.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid #F3F4F6;
    position: relative;
}
.hiw-step:last-child { border-bottom: none; }
.hiw-icon-wrap {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid #F59E0B;
    background: #FFFBEB;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #D97706;
}
.hiw-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #D97706;
}
.hiw-content { display: flex; flex-direction: column; gap: 0.2rem; padding-top: 0.2rem; }
.hiw-content strong { font-size: 0.97rem; color: #111827; font-weight: 700; }
.hiw-content span { font-size: 0.85rem; color: #6B7280; }

/* ── Provider Cards ── */
.providers-list { display: flex; flex-direction: column; gap: 1.25rem; }
.provider-card {
    background: #FAFAFA;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.provider-card:hover { border-color: #FCD34D; box-shadow: 0 4px 20px rgba(245,158,11,0.12); }

/* Photo strip (3 images) */
.pc-photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    height: 140px;
}
.pc-photo-wrap { position: relative; overflow: hidden; }
.pc-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.pc-photo-wrap:hover img { transform: scale(1.08); }
.pc-photo-last { position: relative; }
.pc-photo-more {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.25rem; font-weight: 700;
}

/* Card body */
.pc-body {
    display: flex;
    gap: 1rem;
    padding: 1.1rem 1.25rem 1.25rem;
}
.pc-avatar {
    width: 56px; height: 56px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #FCD34D;
    flex-shrink: 0;
}
.pc-right { flex: 1; min-width: 0; }
.pc-name { font-size: 0.97rem; font-weight: 700; color: #111827; }
.pc-location { font-size: 0.78rem; color: #6B7280; margin-top: 0.15rem; }
.pc-rating-row { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.4rem; font-size: 0.8rem; color: #6B7280; }
.pc-stars { color: #F59E0B; font-weight: 700; font-size: 0.88rem; }
.pc-dot { color: #D1D5DB; }
.pc-hired { color: #6B7280; font-size: 0.78rem; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }
.pc-tag {
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    color: #92400E;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
}
/* Reviews */
.pc-reviews-section { margin-top: 0.75rem; }
.provider-review-snippet {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 0.5rem;
}
.provider-review-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #F59E0B;
    color: #fff;
    font-size: 0.78rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.provider-review-avatar.prs-av2 { background: #059669; }
.provider-review-body { flex: 1; min-width: 0; }
.prs-byline { font-size: 0.76rem; color: #374151; font-weight: 600; margin-bottom: 0.12rem; }
.prs-star { color: #F59E0B; }
.prs-text { font-size: 0.78rem; color: #6B7280; line-height: 1.5; }
.prs-read-more { color: #D97706; font-size: 0.75rem; text-decoration: none; }
.prs-read-more:hover { text-decoration: underline; }
.pc-expand-btn {
    background: none; border: none;
    font-size: 0.78rem; color: #D97706;
    cursor: pointer; padding: 0.4rem 0;
    text-decoration: underline;
    font-family: inherit;
    display: block;
    margin-top: 0.4rem;
}
.pc-more-reviews-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem; color: #D97706;
    text-decoration: underline; cursor: pointer;
}

/* ── Price Guide Table ── */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}
.price-table th, .price-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}
.price-table th { background: #FFFBEB; font-weight: 700; color: #374151; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em; }
.price-table td { color: #4B5563; }
.price-table .price-cell { font-weight: 700; color: #D97706; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: #FFFBEB; }
.price-note { font-size: 0.8rem; color: #9CA3AF; margin-top: 0.75rem; font-style: italic; }

/* ── City-Specific Section ── */
.city-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}
.city-info-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.25rem;
}
.city-info-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
.city-info-card h4 { font-size: 0.88rem; font-weight: 700; color: #111827; margin-bottom: 0.35rem; }
.city-info-card p { font-size: 0.82rem; color: #4B5563; line-height: 1.6; margin: 0; }
@media (max-width: 768px) { .city-info-grid { grid-template-columns: 1fr; } }

/* ── FAQ / Hiring Guide ── */
.faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    gap: 1rem;
}
.faq-question::after {
    content: "+";
    font-size: 1.4rem;
    color: #F59E0B;
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s;
}
.faq-item.active .faq-question::after { content: "−"; }
.faq-answer {
    display: none;
    padding: 0 0 1rem;
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.8;
}
.faq-item.active .faq-answer { display: block; }
.faq-answer ul { padding-left: 1.25rem; margin-top: 0.5rem; line-height: 2; }

/* ── Hiring Guide ── */
.hg-section {
    border-left: 3px solid #F59E0B;
    padding: 0 0 0 1.25rem;
    margin-bottom: 2rem;
}
.hg-section:last-child { margin-bottom: 0; }
.hg-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.6rem;
}
.hg-intro {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 0.85rem;
}
.hg-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.hg-list li {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.7;
    padding-left: 1.1rem;
    position: relative;
}
.hg-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-size: 0.75rem;
    top: 0.2rem;
}
.hg-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.hg-checklist li {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.7;
    padding-left: 1.6rem;
    position: relative;
}
.hg-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
    font-size: 0.85rem;
}
.hg-note {
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: #92400E;
    margin-top: 0.85rem;
    line-height: 1.6;
}

html[data-theme="dark"] .hg-title { color: #f0f0f0; }
html[data-theme="dark"] .hg-intro { color: #8899a6; }
html[data-theme="dark"] .hg-list li { color: #8899a6; }
html[data-theme="dark"] .hg-checklist li { color: #8899a6; }
html[data-theme="dark"] .hg-note { background: #2a1a00; border-color: #78350F; color: #FCD34D; }

/* Hiring Guide tables (wider layout) */
.hg-table { font-size: 0.82rem; }
.hg-table th { white-space: nowrap; }
.hg-table td:last-child { font-size: 0.8rem; color: #6B7280; }

/* ── Localities ── */
.localities-container {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.localities-title { font-size: 0.82rem; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.localities-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.locality-tag {
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    color: #92400E;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.locality-tag:hover { background: #F59E0B; color: #fff; border-color: #F59E0B; }

/* ── Trust Badge Row ── */
.trust-badge-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1rem;
}
.trust-stat-num { font-size: 1.5rem; font-weight: 800; color: #D97706; }
.trust-stat-label { font-size: 0.75rem; color: #6B7280; }
.trust-stat-sep { width: 1px; height: 40px; background: #E5E7EB; flex-shrink: 0; }

/* ── Pro CTA Card ── */
.pro-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
}
.pro-cta-text { font-size: 1rem; color: #6B7280; }
.pro-cta-btn {
    display: inline-block;
    background: #D97706;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.pro-cta-btn:hover { background: #B45309; transform: translateY(-1px); }
@media (max-width: 540px) { .pro-cta-card { flex-direction: column; align-items: flex-start; gap: 0.75rem; } }

/* ── Sticky Form Wrapper ── */
.sticky-form-wrapper {
    position: sticky;
    top: 80px;
}
.sticky-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    overflow: hidden;
}
.sticky-form .form-header {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    padding: 1.25rem 1.5rem;
}
.sticky-form .form-header h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.2rem; }
.sticky-form .form-header p { font-size: 0.8rem; opacity: 0.9; margin: 0; }
.sticky-form .form-body { padding: 1.5rem; }

/* Step indicator */
.step-indicator { display: flex; gap: 6px; margin-bottom: 1.25rem; }
.step-dot {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: #E5E7EB;
    transition: background 0.3s;
}
.step-dot.active { background: #F59E0B; }
.step-dot.completed { background: #D97706; }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; }
.step-title { font-size: 0.95rem; font-weight: 700; color: #111827; margin-bottom: 1rem; }
.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: #374151; margin-bottom: 0.35rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #111827;
    background: #fff;
    font-family: inherit;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: #F59E0B; }
.form-group textarea { resize: vertical; min-height: 70px; }

/* Phone wrapper in form */
.phone-input-wrapper {
    display: flex;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.phone-input-wrapper:focus-within { border-color: #F59E0B; }
.phone-prefix {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0 0.7rem;
    background: #F9FAFB;
    border-right: 1.5px solid #E5E7EB;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}
.phone-input-wrapper input {
    border: none !important;
    border-radius: 0 !important;
    flex: 1;
    padding: 0.65rem 0.75rem;
}
.phone-input-wrapper input:focus { box-shadow: none; }

/* Option grid (step 1 tiles) */
.option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.option-btn {
    background: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 0.75rem 0.5rem;
    cursor: pointer;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    transition: all 0.15s;
    font-family: inherit;
}
.option-btn:hover { border-color: #F59E0B; background: #FFFBEB; }
.option-btn.selected { border-color: #F59E0B; background: #FFFBEB; color: #92400E; }
.option-btn .icon { font-size: 1.5rem; margin-bottom: 0.35rem; }

/* Form nav buttons */
.form-buttons { display: flex; gap: 0.6rem; margin-top: 1rem; }
.btn-next {
    flex: 1;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-next:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,158,11,0.4); }
.btn-back {
    background: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    color: #374151;
    font-family: inherit;
}

/* Success step */
.success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    margin: 0 auto 1.25rem;
}
.success-message { text-align: center; }
.success-message h4 { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.success-message p { font-size: 0.88rem; color: #6B7280; margin-bottom: 0.5rem; }

/* Form benefits (bottom of sticky form) */
.form-benefits {
    padding: 1rem 1.5rem;
    background: #FFFBEB;
    border-top: 1px solid #FCD34D;
}
.benefit-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #92400E;
    margin-bottom: 0.4rem;
}
.benefit-row:last-child { margin-bottom: 0; }
.benefit-row svg { color: #D97706; flex-shrink: 0; }

/* ── Form actions row ─────────────────────────────────────────────────────── */
.form-actions { display: flex; gap: 0.6rem; margin-top: 1rem; }
.form-actions .btn-primary { flex: 1; }
.form-actions .btn-secondary { flex: 0 0 auto; }
.step-subtitle { font-size: 0.8rem; color: #6B7280; margin-top: -0.5rem; margin-bottom: 0.75rem; }

/* ── Option grid — big role tiles ─────────────────────────────────────────── */
.option-grid.single-col { grid-template-columns: 1fr; }
.big-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    font-family: inherit;
}
.big-option:hover { border-color: #F59E0B; background: #FFFBEB; }
.big-option.selected { border-color: #F59E0B; background: #FFFBEB; }
.big-option .icon {
    font-size: 2.2rem;
    width: 56px; height: 56px;
    background: #FEF3C7;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.big-option.selected .icon { background: #F59E0B; }
.big-option .text { flex: 1; text-align: left; }
.big-option strong { display: block; font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 0.2rem; }
.big-option span { font-size: 0.83rem; color: #6B7280; }

/* ── Typeform-style option list ───────────────────────────────────────────── */
.tf-list { display: flex; flex-direction: column; gap: 0.45rem; }
.tf-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    background: #fff;
    line-height: 1.3;
}
.tf-option:hover  { border-color: #F59E0B; background: #FFFBEB; }
.tf-option.selected { border-color: #F59E0B; background: #FEF3C7; color: #92400E; }
.tf-icon  { font-size: 1.15rem; flex-shrink: 0; line-height: 1; }
.tf-label { flex: 1; }
.tf-label small { display: block; font-size: 0.75rem; color: #9CA3AF; font-weight: 400; margin-top: 0.1rem; }
.tf-option.selected .tf-label small { color: #B45309; }

/* ── Mobile-fullscreen / typeform modal ───────────────────────────────────── */
.sticky-form-wrapper.mobile-fullscreen {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
}
.sticky-form-wrapper.mobile-fullscreen .sticky-form {
    border-radius: 0;
    box-shadow: none;
    min-height: 100vh;
}
@media (min-width: 1025px) {
    .sticky-form-wrapper.mobile-fullscreen .sticky-form {
        max-width: 600px;
        margin: 0 auto;
        min-height: auto;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        margin-top: 5vh;
    }
    .sticky-form-wrapper.mobile-fullscreen {
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(5px);
    }
}
.sticky-form-wrapper.mobile-fullscreen .form-header {
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 10;
    border-radius: 0;
}
.sticky-form-wrapper.mobile-fullscreen .form-header h3 { font-size: 1.1rem; margin: 0; }
.sticky-form-wrapper.mobile-fullscreen .form-header p  { display: none; }
.mobile-form-close {
    display: none;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}
.sticky-form-wrapper.mobile-fullscreen .mobile-form-close { display: flex; }
.sticky-form-wrapper.mobile-fullscreen .form-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Hide sidebar trust in modal view */
.sticky-form-wrapper.mobile-fullscreen .sidebar-trust { display: none !important; }

/* ── Location input wrapper (inside form steps) ───────────────────────────── */
.location-input-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    background: #F9FAFB;
    overflow: hidden;
    transition: border-color 0.2s;
}
.location-input-wrapper:focus-within { border-color: #F59E0B; }
.location-input-wrapper input {
    flex: 1;
    border: none !important;
    background: transparent;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
    color: #111827;
    cursor: pointer;
    outline: none;
    font-family: inherit;
}
.location-input-wrapper input::placeholder { color: #9CA3AF; }
.current-location-btn {
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: #F59E0B;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-left: 1.5px solid #E5E7EB;
}
.current-location-btn:hover { color: #D97706; background: #FFFBEB; }
.current-location-btn svg { width: 18px; height: 18px; }

/* ── PM Location modal (mirrors wedding-photography form exactly) ───────────── */
#pmLocationModal {
    position: fixed;
    z-index: 10010;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #fff; /* full-screen white on mobile */
}
.pm-location-modal-content {
    background-color: #fff;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pm-location-modal-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    background: #fff;
}
.pm-location-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 1rem;
    color: #333;
    padding: 0;
    line-height: 1;
}
.pm-location-modal-close:hover { color: #111827; }
.location-search-wrapper { flex-grow: 1; position: relative; }
#pmLocationSearchInput {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    background: #f9f9f9;
    font-family: inherit;
    box-sizing: border-box;
    color: #111827;
}
#pmLocationSearchInput:focus { border-color: #F59E0B; background: #fff; }
.pm-location-modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0;
}
.current-location-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    color: #F59E0B;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    transition: background 0.15s;
}
.current-location-option:hover { background: #FFFBEB; }
.current-location-option svg { width: 22px; height: 22px; flex-shrink: 0; fill: #F59E0B; }
.location-prediction-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}
.location-prediction-item:hover { background-color: #f9fafb; }
.prediction-icon { color: #9CA3AF; flex-shrink: 0; margin-top: 2px; }
.prediction-icon svg { width: 20px; height: 20px; fill: currentColor; }
.prediction-text { flex: 1; min-width: 0; }
.main-text { font-size: 0.95rem; font-weight: 600; color: #111827; }
.secondary-text { font-size: 0.85rem; color: #6B7280; margin-top: 0.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* Desktop: overlay + centered card */
@media (min-width: 768px) {
    #pmLocationModal { background-color: rgba(0,0,0,0.5); }
    .pm-location-modal-content {
        width: 600px;
        height: auto;
        max-height: 80vh;
        margin: 5% auto;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
}

/* ── Trust signals sidebar */
.sidebar-trust {
    margin-top: 1rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sidebar-trust-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}
.sidebar-trust-row:last-child { margin-bottom: 0; }
.sidebar-trust-icon { color: #10B981; font-size: 1.2rem; flex-shrink: 0; }
.sidebar-trust-text { font-size: 0.85rem; color: #374151; font-weight: 500; }

/* ── Recent Bookings ── */
.rb-scroll-track {
    display: flex;
    overflow-x: auto;
    gap: 0.9rem;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: #FCD34D transparent;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
}
.rb-scroll-track::-webkit-scrollbar { height: 4px; }
.rb-scroll-track::-webkit-scrollbar-track { background: transparent; }
.rb-scroll-track::-webkit-scrollbar-thumb { background: #FCD34D; border-radius: 4px; }
.rb-scroll-track.drag-active { cursor: grabbing; }

.rb-card {
    flex-shrink: 0;
    width: 260px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    background: #fff;
    font-size: 0.84rem;
}
.rb-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.rb-badge {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.rb-badge--local    { background: #FFFBEB; border: 1px solid #FCD34D; color: #92400E; }
.rb-badge--intercity { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.rb-badge--office   { background: #F0FDF4; border: 1px solid #BBF7D0; color: #14532D; }
.rb-booked-ago {
    font-size: 0.7rem;
    color: #9CA3AF;
}
.rb-field { margin-bottom: 0.55rem; }
.rb-label {
    display: block;
    font-weight: 700;
    color: #111827;
    font-size: 0.78rem;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.rb-value {
    color: #374151;
    font-size: 0.84rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rb-divider {
    height: 1px;
    background: #F3F4F6;
    margin: 0.65rem 0;
}
.rb-requirements strong {
    display: block;
    font-size: 0.78rem;
    color: #6B7280;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}
.rb-see-full {
    font-size: 0.8rem;
    color: #D97706;
    cursor: pointer;
    margin-top: 0.65rem;
    display: inline-block;
    user-select: none;
    text-decoration: underline;
    font-weight: 600;
}
.rb-see-full:hover { color: #92400E; }

/* ── Recent Bookings Modal ── */
.rb-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9000;
    align-items: flex-end;
    justify-content: center;
}
.rb-modal-backdrop.open { display: flex; }
.rb-modal-sheet {
    background: #fff;
    width: 100%;
    max-width: 520px;
    border-radius: 16px 16px 0 0;
    max-height: 85vh;
    overflow-y: auto;
    padding: 0 0 2rem;
    animation: rbSlideUp 0.22s ease-out;
}
@keyframes rbSlideUp {
    from { transform: translateY(100%); opacity: 0.6; }
    to   { transform: translateY(0);    opacity: 1; }
}
.rb-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem 0.75rem;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}
.rb-modal-title { font-size: 1rem; font-weight: 700; color: #111827; }
.rb-modal-close {
    background: none; border: none; font-size: 1.1rem;
    color: #6B7280; cursor: pointer; padding: 0.2rem 0.4rem; border-radius: 4px;
}
.rb-modal-close:hover { background: #F3F4F6; }
.rb-modal-body { padding: 1rem 1.25rem 0; }
.rbt-inner { display: flex; flex-direction: column; gap: 0.85rem; }
.rbt-row {
    display: flex; flex-direction: column; gap: 0.15rem;
    border-bottom: 1px solid #F3F4F6; padding-bottom: 0.75rem;
}
.rbt-row:last-child { border-bottom: none; }
.rbt-label {
    font-size: 0.72rem; color: #9CA3AF;
    text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600;
}
.rbt-val { font-size: 0.9rem; color: #111827; font-weight: 500; }

/* Dark mode for recent bookings */
html[data-theme="dark"] .rb-card { background: #1e1e2e; border-color: #2d2d3a; }
html[data-theme="dark"] .rb-label { color: #8899a6; }
html[data-theme="dark"] .rb-value { color: #f0f0f0; }
html[data-theme="dark"] .rb-booked-ago { color: #5a6a7a; }
html[data-theme="dark"] .rb-divider { background: #2d2d3a; }
html[data-theme="dark"] .rb-requirements strong { color: #8899a6; }
html[data-theme="dark"] .rb-see-full { color: #F59E0B; }
html[data-theme="dark"] .rb-modal-sheet { background: #1e1e2e; }
html[data-theme="dark"] .rb-modal-header { background: #1e1e2e; border-bottom-color: #2d2d3a; }
html[data-theme="dark"] .rb-modal-title { color: #f0f0f0; }
html[data-theme="dark"] .rb-modal-close { color: #8899a6; }
html[data-theme="dark"] .rb-modal-close:hover { background: #222230; }
html[data-theme="dark"] .rbt-row { border-bottom-color: #2d2d3a; }
html[data-theme="dark"] .rbt-label { color: #8899a6; }
html[data-theme="dark"] .rbt-val { color: #f0f0f0; }
html[data-theme="dark"] .rb-badge--local { background: #2a1a00; border-color: #78350F; color: #FCD34D; }
html[data-theme="dark"] .rb-badge--intercity { background: #0c1a2e; border-color: #1D4ED8; color: #93C5FD; }
html[data-theme="dark"] .rb-badge--office { background: #052e16; border-color: #15803D; color: #86EFAC; }

/* ── Related Services ── */
.related-services-section {
    background: #fff;
    border-top: 1px solid #E5E7EB;
    padding: 3rem 2rem;
}
.related-services-container { max-width: 1320px; margin: 0 auto; }
.related-services-container h2 { font-size: 1.35rem; font-weight: 700; color: #111827; margin-bottom: 0.4rem; }
.related-services-subtitle { color: #6B7280; font-size: 0.9rem; margin-bottom: 1.5rem; }
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.related-service-card {
    text-decoration: none;
    background: #F9FAFB;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #E5E7EB;
}
.related-service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.related-service-img { width: 100%; height: 120px; object-fit: cover; display: block; }
.related-service-info { padding: 0.85rem 1rem; }
.related-service-title { font-size: 0.88rem; font-weight: 700; color: #111827; }

/* ── Floating WhatsApp ── */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 1.5rem;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 200;
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── Mobile Sticky CTA ── */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid #E5E7EB;
    padding: 0.75rem 1rem;
    gap: 0.6rem;
    z-index: 150;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}
.mobile-sticky-cta .btn-wa {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
    font-family: inherit;
}
.mobile-sticky-cta .btn-quote {
    flex: 1;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.75rem;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-form-card { max-width: 480px; }
    .main-container { grid-template-columns: 1fr; }
    /* Hide right-panel form on mobile — hero form already shown above */
    .sticky-form-wrapper { display: none; }
    .related-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .service-hero { min-height: auto; padding: 2rem 1rem 2.5rem; }
    .main-container { padding: 1rem; gap: 1.25rem; }
    .content-section { padding: 1.25rem; }
    .hero-stats { gap: 0.5rem; justify-content: center; }
    .hero-stat { padding: 0.6rem 0.75rem; min-width: 70px; }
    .hero-stat .num { font-size: 1.3rem; }
    .whatsapp-float { display: none; }
    .mobile-sticky-cta { display: flex; }
    .city-info-grid { grid-template-columns: 1fr; }
    .pc-photo-strip { height: 110px; }
}

@media (max-width: 540px) {
    .hero-content h1 { font-size: 1.75rem; }
    .option-grid { grid-template-columns: 1fr 1fr; }
    .related-services-grid { grid-template-columns: 1fr 1fr; }
    .trust-badge-row { gap: 0.75rem; }
    .pc-body { flex-direction: column; }
    .pro-cta-card { padding: 1rem; }
}

/* =============================================================
   DARK MODE — Packers & Movers Page
   ============================================================= */

/* ── Page / Hero Background ── */
html[data-theme="dark"] .service-hero {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}
/* Hero is always on a dark image overlay — keep text white in dark mode too */
html[data-theme="dark"] .hero-content h1 { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
html[data-theme="dark"] .hero-content h1 span { color: #FCD34D; }
html[data-theme="dark"] .hero-subtitle { color: rgba(255,255,255,0.82); }
html[data-theme="dark"] .hero-bullets li { color: rgba(255,255,255,0.88); }
html[data-theme="dark"] .hero-form-card .form-header { color: #fff; }
html[data-theme="dark"] .hero-form-card .form-header p { color: rgba(255,255,255,0.92); opacity: 1; }
html[data-theme="dark"] .sticky-form .form-header { color: #fff; }
html[data-theme="dark"] .sticky-form .form-header p { color: rgba(255,255,255,0.92); opacity: 1; }

/* ── Urgency Bar ── */
html[data-theme="dark"] .urgency-bar {
    background: linear-gradient(90deg, #78350F, #92400E);
}

/* ── Hero Stats ── */
html[data-theme="dark"] .hero-stat {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.1);
}
html[data-theme="dark"] .hero-stat .num { color: #FCD34D; }
html[data-theme="dark"] .hero-stat .lbl { color: #8899a6; }

/* ── Hero Form Card ── */
html[data-theme="dark"] .hero-form-card {
    background: #1e1e2e;
    border-color: #2d2d3a;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
html[data-theme="dark"] .hero-form-card .form-group label { color: #c0cad8; }
html[data-theme="dark"] .hero-form-card input,
html[data-theme="dark"] .hero-form-card select {
    background: #252535;
    border-color: #3a3a4a;
    color: #f0f0f0;
}
html[data-theme="dark"] .hero-form-card input::placeholder { color: #5a6a7a; }
html[data-theme="dark"] .hero-form-card input:focus,
html[data-theme="dark"] .hero-form-card select:focus {
    border-color: #F59E0B;
    background: #2a2a3e;
}

/* ── Section Nav Bar ── */
html[data-theme="dark"] .section-nav-bar {
    background: #1e1e2e;
    border-bottom-color: #2d2d3a;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
html[data-theme="dark"] .section-nav-link { color: #8899a6; }
html[data-theme="dark"] .section-nav-link:hover { color: #F59E0B; }
html[data-theme="dark"] .section-nav-link.active {
    color: #F59E0B;
    border-bottom-color: #F59E0B;
}

/* ── Content Sections ── */
html[data-theme="dark"] .content-section {
    background: #1e1e2e;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .content-section h2 { color: #f0f0f0; }
html[data-theme="dark"] .content-section > p { color: #8899a6; }

/* ── Why MatchedNeeds ── */
html[data-theme="dark"] .why-list { background: #1e1e2e; }
html[data-theme="dark"] .why-item { border-bottom-color: #2d2d3a; }
html[data-theme="dark"] .why-item-text strong { color: #f0f0f0; }
html[data-theme="dark"] .why-item-text span { color: #8899a6; }

/* ── How It Works ── */
html[data-theme="dark"] .hiw-timeline { background: #1e1e2e; }
html[data-theme="dark"] .hiw-step { border-bottom-color: #2d2d3a; }
html[data-theme="dark"] .hiw-content strong { color: #f0f0f0; }
html[data-theme="dark"] .hiw-content span { color: #8899a6; }

/* ── Provider / Professional Cards ── */
html[data-theme="dark"] .providers-list { background: #1e1e2e; }
html[data-theme="dark"] .provider-card {
    background: #252535;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .provider-card:hover {
    border-color: #F59E0B;
    box-shadow: 0 4px 20px rgba(245,158,11,0.15);
}
html[data-theme="dark"] .pc-name { color: #f0f0f0; }
html[data-theme="dark"] .pc-location { color: #8899a6; }
html[data-theme="dark"] .pc-rating-row { color: #8899a6; }
html[data-theme="dark"] .pc-dot { color: #3a3a4a; }
html[data-theme="dark"] .pc-hired { color: #8899a6; }
html[data-theme="dark"] .pc-tag {
    background: rgba(245,158,11,0.12);
    border-color: #78350F;
    color: #FCD34D;
}
html[data-theme="dark"] .pc-body { border-top-color: #2d2d3a; }
html[data-theme="dark"] .prs-byline { color: #c0cad8; }
html[data-theme="dark"] .prs-text { color: #8899a6; }
html[data-theme="dark"] .prs-read-more { color: #F59E0B; }
html[data-theme="dark"] .pc-expand-btn {
    color: #F59E0B;
    border-top-color: #2d2d3a;
}

/* ── Customer Review Cards (What Customers Say section) ── */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; }
}
.customer-review-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.25rem;
}
.crv-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}
.crv-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.95rem;
    flex-shrink: 0;
}
.crv-meta { flex: 1; min-width: 0; }
.crv-name { font-weight: 700; font-size: 0.88rem; color: #111827; }
.crv-loc  { font-size: 0.75rem; color: #6B7280; }
.crv-stars { margin-left: auto; color: #F59E0B; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.crv-text  { font-size: 0.82rem; color: #4B5563; line-height: 1.65; margin: 0; }

/* Dark mode */
html[data-theme="dark"] .customer-review-card {
    background: #252535;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .crv-name  { color: #f0f0f0; }
html[data-theme="dark"] .crv-loc   { color: #8899a6; }
html[data-theme="dark"] .crv-text  { color: #c0cad8; }

/* ── Provider Review Cards (inside professional cards) ── */
html[data-theme="dark"] .review-card {
    background: #252535;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .review-card .reviewer-name { color: #f0f0f0; }
html[data-theme="dark"] .review-card .reviewer-location { color: #8899a6; }
html[data-theme="dark"] .review-card .review-text { color: #c0cad8; }
html[data-theme="dark"] .review-card .review-service { color: #8899a6; }

/* ── Price Table ── */
html[data-theme="dark"] .price-table { border-color: #2d2d3a; }
html[data-theme="dark"] .price-table th {
    background: rgba(245,158,11,0.12);
    color: #f0f0f0;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .price-table td {
    color: #c0cad8;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .price-table .price-cell { color: #F59E0B; }
html[data-theme="dark"] .price-table tr:hover td { background: rgba(245,158,11,0.06); }
html[data-theme="dark"] .price-note { color: #5a6a7a; }
html[data-theme="dark"] .hg-table td:last-child { color: #8899a6; }

/* ── FAQ ── */
html[data-theme="dark"] .faq-item { border-bottom-color: #2d2d3a; }
html[data-theme="dark"] .faq-question { color: #f0f0f0; }
html[data-theme="dark"] .faq-answer { color: #8899a6; }
html[data-theme="dark"] .faq-answer strong { color: #c0cad8; }

/* ── Hiring Guide Sections ── */
html[data-theme="dark"] .hg-section { border-left-color: #D97706; }

/* ── City Info Cards ── */
html[data-theme="dark"] .city-info-card {
    background: #252535;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .city-info-card h4 { color: #f0f0f0; }
html[data-theme="dark"] .city-info-card p { color: #8899a6; }
html[data-theme="dark"] .city-info-card[style*="#FFFBEB"] {
    background: #2a1a00 !important;
    border-color: #78350F !important;
}

/* ── Localities ── */
html[data-theme="dark"] .localities-container {
    background: #1e1e2e;
    border-color: #2d2d3a;
    box-shadow: none;
}
html[data-theme="dark"] .localities-title { color: #5a6a7a; }
html[data-theme="dark"] .locality-tag {
    background: rgba(245,158,11,0.1);
    border-color: #78350F;
    color: #FCD34D;
}
html[data-theme="dark"] .locality-tag:hover {
    background: #D97706;
    color: #fff;
    border-color: #D97706;
}

/* ── Trust Badge Row ── */
html[data-theme="dark"] .trust-badge-row {
    background: #252535;
    box-shadow: none;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .trust-stat-num { color: #F59E0B; }
html[data-theme="dark"] .trust-stat-label { color: #8899a6; }
html[data-theme="dark"] .trust-stat-sep { background: #2d2d3a; }

/* ── Pro CTA Card ── */
html[data-theme="dark"] .pro-cta-card {
    background: #252535;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .pro-cta-text { color: #8899a6; }
html[data-theme="dark"] .pro-cta-btn { background: #D97706; }
html[data-theme="dark"] .pro-cta-btn:hover { background: #B45309; }

/* ── Sticky Sidebar Form ── */
html[data-theme="dark"] .sticky-form-wrapper { background: transparent; }
html[data-theme="dark"] .sticky-form {
    background: #1e1e2e;
    border-color: #2d2d3a;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
html[data-theme="dark"] .step-indicator { background: #1e1e2e; border-bottom-color: #2d2d3a; }
html[data-theme="dark"] .step-dot { background: #2d2d3a; }
html[data-theme="dark"] .step-dot.completed { background: #D97706; }
html[data-theme="dark"] .step-title { color: #8899a6; }
html[data-theme="dark"] .form-step-title { color: #f0f0f0; }
html[data-theme="dark"] .form-group label { color: #c0cad8; }
html[data-theme="dark"] .sticky-form input,
html[data-theme="dark"] .sticky-form select,
html[data-theme="dark"] .sticky-form textarea {
    background: #252535;
    border-color: #3a3a4a;
    color: #f0f0f0;
}
html[data-theme="dark"] .sticky-form input::placeholder,
html[data-theme="dark"] .sticky-form textarea::placeholder { color: #5a6a7a; }
html[data-theme="dark"] .sticky-form input:focus,
html[data-theme="dark"] .sticky-form select:focus,
html[data-theme="dark"] .sticky-form textarea:focus {
    border-color: #F59E0B;
    background: #2a2a3e;
}
html[data-theme="dark"] .option-btn {
    background: #252535;
    border-color: #3a3a4a;
    color: #c0cad8;
}
html[data-theme="dark"] .option-btn:hover {
    border-color: #F59E0B;
    background: rgba(245,158,11,0.1);
    color: #FCD34D;
}
html[data-theme="dark"] .option-btn.selected {
    border-color: #F59E0B;
    background: rgba(245,158,11,0.15);
    color: #FCD34D;
}
html[data-theme="dark"] .phone-input-wrapper {
    background: #252535;
    border-color: #3a3a4a;
}
html[data-theme="dark"] .phone-input-wrapper input { background: transparent; color: #f0f0f0; }
html[data-theme="dark"] .phone-prefix { color: #8899a6; border-right-color: #3a3a4a; }
html[data-theme="dark"] .btn-back {
    background: #252535;
    color: #c0cad8;
    border-color: #3a3a4a;
}
html[data-theme="dark"] .btn-back:hover { background: #2d2d3a; }

/* ── Success / Form Benefits ── */
html[data-theme="dark"] .success-message { background: #1e1e2e; }
html[data-theme="dark"] .success-message h4 { color: #f0f0f0; }
html[data-theme="dark"] .success-message p { color: #8899a6; }
html[data-theme="dark"] .form-benefits {
    background: rgba(245,158,11,0.08);
    border-left-color: #D97706;
}
html[data-theme="dark"] .benefit-row { color: #c0cad8; }
html[data-theme="dark"] .benefit-row svg { color: #F59E0B; }

/* ── Typeform options dark ── */
html[data-theme="dark"] .tf-option { background: #1e1e30; border-color: #2d2d3a; color: #c0cad8; }
html[data-theme="dark"] .tf-option:hover { background: #252540; border-color: #F59E0B; }
html[data-theme="dark"] .tf-option.selected { background: #2a1a00; border-color: #F59E0B; color: #FCD34D; }
html[data-theme="dark"] .tf-label small { color: #8899a6; }
html[data-theme="dark"] .tf-option.selected .tf-label small { color: #D97706; }
html[data-theme="dark"] .big-option { background: #222230; border-color: #2d2d3a; box-shadow: 0 2px 4px rgba(0,0,0,0.3); }
html[data-theme="dark"] .big-option:hover { background: #252540; border-color: #F59E0B; }
html[data-theme="dark"] .big-option .icon { background: #2a2a3e; }
html[data-theme="dark"] .big-option strong { color: #f0f0f0; }
html[data-theme="dark"] .big-option span { color: #8899a6; }
html[data-theme="dark"] .option-btn { background: #222230; border-color: #2d2d3a; color: #c0cad8; }
html[data-theme="dark"] .option-btn:hover,
html[data-theme="dark"] .option-btn.selected { border-color: #F59E0B; background: #2a1a00; color: #FCD34D; }
html[data-theme="dark"] .sticky-form-wrapper.mobile-fullscreen { background: #0f0f0f; }
html[data-theme="dark"] .sticky-form-wrapper.mobile-fullscreen .sticky-form { background: #1e1e2e; }
html[data-theme="dark"] .otp-input { background: #222230 !important; border-color: #3d3d50 !important; color: #f0f0f0 !important; }
html[data-theme="dark"] .location-input-wrapper { background: #252535; border-color: #3a3a4a; }
html[data-theme="dark"] .location-input-wrapper input { color: #f0f0f0; }
html[data-theme="dark"] .current-location-btn { border-left-color: #3a3a4a; }
html[data-theme="dark"] #pmLocationModal,
html[data-theme="dark"] .pm-location-modal-content { background: #1e1e2e; }
html[data-theme="dark"] .pm-location-modal-header { background: #1e1e2e; border-bottom-color: #2d2d3a; }
html[data-theme="dark"] .pm-location-modal-close { color: #8899a6; }
html[data-theme="dark"] #pmLocationSearchInput { background: #252535; border-color: #3a3a4a; color: #f0f0f0; }
html[data-theme="dark"] #pmLocationSearchInput:focus { border-color: #F59E0B; background: #2a2a3e; }
html[data-theme="dark"] .current-location-option { border-bottom-color: #2d2d3a; }
html[data-theme="dark"] .current-location-option:hover { background: rgba(245,158,11,0.08); }
html[data-theme="dark"] .location-prediction-item { border-bottom-color: #2d2d3a; }
html[data-theme="dark"] .location-prediction-item:hover { background: #252535; }
html[data-theme="dark"] .main-text { color: #f0f0f0; }
html[data-theme="dark"] .secondary-text { color: #5a6a7a; }
@media (min-width: 768px) {
    html[data-theme="dark"] #pmLocationModal { background: rgba(0,0,0,0.7); }
}

/* ── Inline-styled element dark overrides ── */
/* OTP step icon, heading, subtext */
html[data-theme="dark"] .form-step[data-step="5"] > div > div:first-child { background: rgba(245,158,11,0.12) !important; }
html[data-theme="dark"] .form-step[data-step="5"] h3 { color: #f0f0f0 !important; }
html[data-theme="dark"] .form-step[data-step="5"] > div > p { color: #8899a6 !important; }
html[data-theme="dark"] #otpDisplayPhone { color: #FCD34D !important; }

/* Success step (step 6) */
html[data-theme="dark"] .form-step[data-step="6"] > div > p { color: #8899a6 !important; }
html[data-theme="dark"] .form-step[data-step="6"] > div > div:nth-child(4) { background: #0d2318 !important; }
html[data-theme="dark"] .form-step[data-step="6"] > div > div:nth-child(4) p { color: #6ee7b7 !important; }
html[data-theme="dark"] .form-step[data-step="6"] > div > hr { border-top-color: #2d2d3a !important; }
html[data-theme="dark"] .form-step[data-step="6"] > div > div:nth-child(6) { color: #8899a6 !important; }

/* Partner success step */
html[data-theme="dark"] .form-step[data-step="partner-success"] > div > p { color: #8899a6 !important; }
html[data-theme="dark"] .form-step[data-step="partner-success"] > div > p:last-of-type { color: #5a6a7a !important; }

/* ── Sidebar Trust ── */
html[data-theme="dark"] .sidebar-trust {
    background: #1e1e2e;
    border-color: #2d2d3a;
}
html[data-theme="dark"] .sidebar-trust-row { border-bottom-color: #2d2d3a; }
html[data-theme="dark"] .sidebar-trust-text { color: #8899a6; }

/* ── Related Services ── */
html[data-theme="dark"] .related-services-section {
    background: #13131f;
    border-top-color: #2d2d3a;
}
html[data-theme="dark"] .related-services-container h2 { color: #f0f0f0; }
html[data-theme="dark"] .related-services-subtitle { color: #8899a6; }
html[data-theme="dark"] .related-service-card {
    background: #1e1e2e;
    border-color: #2d2d3a;
    box-shadow: none;
}
html[data-theme="dark"] .related-service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border-color: #F59E0B;
}
html[data-theme="dark"] .related-service-title { color: #f0f0f0; }

/* ── Mobile Sticky CTA ── */
html[data-theme="dark"] .mobile-sticky-cta {
    background: #1e1e2e;
    border-top-color: #2d2d3a;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.5);
}

/* ── CTA blocks (inline-styled, catch-all) ── */
html[data-theme="dark"] .content-section div[style*="background:linear-gradient(135deg,#FFFBEB"] {
    background: linear-gradient(135deg, #2a1a00, #1a1200) !important;
    border-color: #78350F !important;
}
html[data-theme="dark"] .content-section div[style*="background:linear-gradient(135deg,#FFFBEB"] h3 { color: #f0f0f0; }
html[data-theme="dark"] .content-section div[style*="background:linear-gradient(135deg,#FFFBEB"] p { color: #8899a6; }
