/* ============ Card ============ */
.card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 26px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; padding: 12px 22px;
  cursor: pointer; white-space: nowrap;
  transition: filter 0.12s, transform 0.06s;
}
.btn:active { transform: scale(0.98); }
.btn i { font-size: 16px; }
.btn-primary { background: var(--amber); color: var(--navy-900); }
.btn-primary:hover { filter: brightness(0.95); }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { filter: brightness(1.25); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border-color); }
.btn-outline:hover { background: var(--bg-soft); }
.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-white { background: #fff; color: var(--navy-900); }
.btn-white:hover { filter: brightness(0.96); }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn-lg { padding: 15px 30px; font-size: 14.5px; }
.btn-block { width: 100%; }

/* ============ Navbar ============ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  height: var(--navbar-h);
}
.navbar-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.navbar-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar-brand .brand-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--navy-900); color: var(--amber);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.navbar-brand h1 { font-size: 18px; font-weight: 900; color: var(--text-primary); }
.navbar-links { display: flex; align-items: center; gap: 6px; }
.navbar-links a {
  font-size: 13.5px; font-weight: 700; color: var(--text-secondary);
  padding: 9px 14px; border-radius: var(--radius-sm); transition: background 0.12s, color 0.12s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--navy-900); background: var(--bg-soft); }
.navbar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar-menu-btn { display: none; background: none; border: none; font-size: 22px; color: var(--text-primary); padding: 6px; }
.navbar-icon-btn {
  position: relative; width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--bg-soft); border: none; color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; cursor: pointer;
}
.navbar-icon-btn:hover { background: var(--border-color); color: var(--text-primary); }
.navbar-icon-dot {
  display: none; position: absolute; top: 6px; left: 7px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--danger); border: 2px solid var(--bg-soft);
}
.navbar-icon-dot.show { display: block; }

.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(15,27,45,0.5); z-index: 290;
}
.mobile-nav-overlay.show { display: block; }
.mobile-nav-panel {
  position: fixed; top: 0; bottom: 0; left: 0; width: 80%; max-width: 320px;
  background: #fff; z-index: 300; padding: 20px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(-100%); transition: transform 0.22s ease; box-shadow: var(--shadow-lg);
}
.mobile-nav-panel.show { transform: translateX(0); }
.mobile-nav-panel a {
  font-size: 14.5px; font-weight: 700; color: var(--text-primary);
  padding: 13px 14px; border-radius: var(--radius-sm);
}
.mobile-nav-panel a:hover, .mobile-nav-panel a.active { background: var(--bg-soft); }
.mobile-nav-close { align-self: flex-start; background: none; border: none; font-size: 22px; color: var(--text-muted); margin-bottom: 10px; }

/* ============ Hero ============ */
.hero {
  padding: 64px 0 80px;
  background:
    radial-gradient(700px 400px at 85% -10%, rgba(245,166,35,0.12), transparent 60%),
    radial-gradient(600px 400px at -10% 20%, rgba(30,58,95,0.06), transparent 60%);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero-copy h1 { font-size: 42px; font-weight: 900; line-height: 1.28; color: var(--text-primary); margin-bottom: 18px; }
.hero-copy h1 span { color: var(--amber-dark); }
.hero-copy p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 28px; max-width: 480px; }
.hero-cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-search {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-md);
  padding: 8px 8px 8px 16px; box-shadow: var(--shadow-sm); max-width: 480px;
}
.hero-search i { color: var(--text-muted); font-size: 18px; flex-shrink: 0; }
.hero-search input { flex: 1; border: none; outline: none; background: none; font-size: 13.5px; padding: 8px 0; }
.hero-trust-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.hero-trust-item strong { font-size: 17px; font-weight: 900; color: var(--text-primary); display: block; line-height: 1; }
.hero-trust-item span { font-size: 11px; color: var(--text-muted); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual-ring {
  width: 340px; height: 340px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-500));
  display: flex; align-items: center; justify-content: center;
  position: relative; box-shadow: var(--shadow-lg);
}
.hero-visual-ring i { font-size: 110px; color: var(--amber); }
.hero-float-card {
  position: absolute; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; animation: floatSlow 4s ease-in-out infinite;
}
.hero-float-card i { font-size: 20px; }
.hero-float-card .hf-title { font-size: 12px; font-weight: 800; color: var(--text-primary); }
.hero-float-card .hf-sub { font-size: 10.5px; color: var(--text-muted); }
.hero-float-1 { top: 6%; left: -4%; animation-delay: 0.4s; }
.hero-float-2 { bottom: 10%; right: -6%; animation-delay: 1.1s; }

/* ============ Department / Service cards ============ */
.dept-tile {
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 22px 18px; text-align: center; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.dept-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.dept-tile .dt-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 24px;
}
.dept-tile h4 { font-size: 13.5px; font-weight: 800; margin-bottom: 4px; }
.dept-tile span { font-size: 11px; color: var(--text-muted); }

.service-card {
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-top {
  height: 128px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft); position: relative;
}
.service-card-top i { font-size: 42px; }
.service-card-dept {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  font-size: 10.5px; font-weight: 700; color: var(--navy-700);
  padding: 4px 10px; border-radius: 20px;
}
.service-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-card-body h4 { font-size: 14.5px; font-weight: 800; color: var(--text-primary); }
.service-card-body p { font-size: 12px; color: var(--text-secondary); line-height: 1.7; flex: 1; }
.service-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.service-price { font-size: 13.5px; font-weight: 900; color: var(--success-text); }
.service-price small { font-size: 10.5px; font-weight: 500; color: var(--text-muted); }

/* ============ Developers / owners union ============ */
.dev-card {
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.dev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dev-card .dc-icon {
  width: 58px; height: 58px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 25px;
}
.dev-card h4 { font-size: 15px; font-weight: 800; }
.dev-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.8; flex: 1; }
.dev-plan-list { list-style: none; text-align: right; width: 100%; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.dev-plan-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 11.5px; color: var(--text-secondary); line-height: 1.6; }
.dev-plan-list li i { color: var(--success); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

/* ============ How it works ============ */
.step-card { text-align: center; position: relative; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 900; margin: 0 auto 16px;
}
.step-card h4 { font-size: 14.5px; font-weight: 800; margin-bottom: 6px; }
.step-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.7; }

/* ============ Stats band ============ */
.stats-band {
  background: var(--navy-900); border-radius: var(--radius-xl);
  padding: 44px 30px; display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-tile { text-align: center; }
.stat-tile strong { display: block; font-size: 30px; font-weight: 900; color: #fff; }
.stat-tile span { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ============ Testimonials ============ */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 22px; display: flex; flex-direction: column; gap: 14px;
}
.testimonial-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.85; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy-700); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { font-size: 12.5px; display: block; }
.testimonial-author span { font-size: 11px; color: var(--text-muted); }

/* ============ App CTA ============ */
.app-cta {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-500));
  border-radius: var(--radius-xl); padding: 50px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  color: #fff;
}
.app-cta-copy h2 { font-size: 25px; font-weight: 900; margin-bottom: 10px; }
.app-cta-copy p { font-size: 13.5px; color: rgba(255,255,255,0.75); max-width: 420px; line-height: 1.8; }
.app-store-row { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md); padding: 10px 18px; color: #fff;
}
.store-btn i { font-size: 24px; }
.store-btn .sb-line1 { font-size: 9.5px; opacity: 0.75; }
.store-btn .sb-line2 { font-size: 13px; font-weight: 800; }

/* ============ Badges ============ */
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.badge-success { background: var(--success-bg); color: var(--success-text); }
.badge-warning { background: var(--warning-bg); color: var(--warning-text); }
.badge-danger { background: var(--danger-bg); color: var(--danger-text); }
.badge-info { background: var(--info-bg); color: var(--info-text); }
.badge-neutral { background: var(--bg-soft); color: var(--text-secondary); }

/* ============ Blog ============ */
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-top { height: 150px; display: flex; align-items: center; justify-content: center; background: var(--bg-soft); }
.blog-card-top i { font-size: 46px; }
.blog-card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-body h4 { font-size: 14.5px; font-weight: 800; line-height: 1.5; }
.blog-card-body p { font-size: 12px; color: var(--text-secondary); line-height: 1.7; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--text-muted); }
.blog-meta span { display: flex; align-items: center; gap: 4px; }

.article-body { font-size: 14px; line-height: 2.1; color: var(--text-secondary); }
.article-body > * + * { margin-top: 16px; }
.article-body h3 { font-size: 15px; font-weight: 800; color: var(--text-primary); }
.article-header { margin-bottom: 26px; }
.article-header h1 { font-size: 24px; font-weight: 900; margin: 12px 0 14px; line-height: 1.5; }

/* ============ Orders list ============ */
.order-row {
  display: flex; align-items: center; gap: 14px; padding: 16px;
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md);
}
.order-row .or-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.order-row .or-info { flex: 1; min-width: 0; }
.order-row .or-info h4 { font-size: 13.5px; font-weight: 800; }
.order-row .or-info span { font-size: 11px; color: var(--text-muted); }
.order-row .or-price { font-size: 13.5px; font-weight: 800; color: var(--success-text); white-space: nowrap; }

/* ============ Filter tabs (services page) ============ */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 9px 18px; border-radius: 30px;
  background: var(--bg-card); border: 1px solid var(--border-color);
  font-size: 12.5px; font-weight: 700; color: var(--text-secondary);
  cursor: pointer; white-space: nowrap;
}
.filter-tab:hover { background: var(--bg-soft); }
.filter-tab.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.page-hero {
  background: var(--navy-900); padding: 54px 0 42px; color: #fff;
}
.page-hero h1 { font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.page-hero p { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { text-decoration: underline; }

.search-box {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: var(--radius-md);
  padding: 12px 16px; box-shadow: var(--shadow-sm); max-width: 380px;
}
.search-box i { color: var(--text-muted); }
.search-box input { border: none; outline: none; flex: 1; font-size: 13px; background: none; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); grid-column: 1 / -1; }
.empty-state i { font-size: 40px; margin-bottom: 12px; opacity: 0.5; }
.empty-state h4 { font-size: 14px; font-weight: 700; color: var(--text-secondary); }

/* ============ Service detail ============ */
.svc-detail-hero {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 26px; margin-bottom: 24px;
}
.svc-detail-icon {
  width: 84px; height: 84px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 36px; flex-shrink: 0;
}
.svc-detail-info { flex: 1; min-width: 220px; }
.svc-detail-info h1 { font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.svc-detail-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.svc-badge {
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  background: var(--bg-soft); color: var(--text-secondary);
}
.svc-detail-price { text-align: center; padding-right: 20px; border-right: 1px solid var(--border-color); }
.svc-detail-price strong { display: block; font-size: 22px; font-weight: 900; color: var(--success-text); }
.svc-detail-price span { font-size: 11px; color: var(--text-muted); }

/* ============ Footer ============ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 56px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 26px; padding-bottom: 34px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1); color: var(--amber);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.footer-brand h3 { font-size: 16px; font-weight: 900; color: #fff; }
.footer-col h4 { font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 12.5px; color: rgba(255,255,255,0.65); margin-bottom: 11px; line-height: 1.7; }
.footer-col a:hover { color: var(--amber); }
.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.footer-social a:hover { background: var(--amber); color: var(--navy-900); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 11.5px; color: rgba(255,255,255,0.5);
}

/* ============ Modals ============ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(15,27,45,0.55); z-index: 800;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; animation: modalFadeIn 0.18s ease; }
.modal-box {
  background: var(--bg-card); border-radius: var(--radius-lg);
  width: 100%; max-width: 540px; max-height: 88vh;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg); animation: modalSlideUp 0.2s ease;
}
.modal-box.modal-lg { max-width: 640px; }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--border-color); flex-shrink: 0;
}
.modal-header h3 { font-size: 16px; font-weight: 800; }
.modal-header .modal-sub { font-size: 11.5px; color: var(--text-muted); margin-top: 3px; }
.modal-close-btn {
  width: 32px; height: 32px; border-radius: var(--radius-sm); border: none;
  background: var(--bg-soft); color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.modal-close-btn:hover { background: var(--border-color); }
.modal-body { padding: 22px; overflow-y: auto; flex: 1; }
.modal-footer {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  padding: 16px 22px; border-top: 1px solid var(--border-color); flex-shrink: 0;
}

/* ============ Forms ============ */
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 12px; font-weight: 700; color: var(--text-secondary); }
.form-input {
  border: 1px solid var(--border-color); border-radius: var(--radius-sm);
  padding: 11px 13px; font-size: 13px; color: var(--text-primary);
  background: var(--bg-card); outline: none; width: 100%; font-family: inherit;
}
.form-input:focus { border-color: var(--amber); }
textarea.form-input { resize: vertical; min-height: 80px; }

/* ============ OTP inputs ============ */
.otp-row { display: flex; gap: 10px; justify-content: center; direction: ltr; }
.otp-input {
  width: 48px; height: 56px; text-align: center; font-size: 22px; font-weight: 800;
  border: 1.5px solid var(--border-color); border-radius: var(--radius-sm); outline: none;
  background: var(--bg-card); color: var(--text-primary); font-family: inherit;
}
.otp-input:focus { border-color: var(--amber); }

/* ============ Radio cards ============ */
.radio-card-row { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.radio-card {
  flex: 1; min-width: 160px;
  display: flex; align-items: flex-start; gap: 11px; padding: 14px;
  border: 1.5px solid var(--border-color); border-radius: var(--radius-md); cursor: pointer;
}
.radio-card:hover { background: var(--bg-soft); }
.radio-card.selected { border-color: var(--amber); background: var(--amber-light); }
.radio-card .rc-dot {
  width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border-color);
  flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center;
}
.radio-card.selected .rc-dot { border-color: var(--amber); }
.radio-card.selected .rc-dot::after { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--amber); }
.radio-card .rc-title { font-size: 13px; font-weight: 700; }
.radio-card .rc-desc { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ============ Upload grid ============ */
.upload-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.upload-thumb { position: relative; width: 84px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-soft); }
.upload-thumb img, .upload-thumb video { width: 100%; height: 100%; object-fit: cover; }
.upload-remove {
  position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(15,27,45,0.7); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 10px;
}
.upload-add-tile {
  width: 84px; height: 84px; border-radius: var(--radius-sm); border: 2px dashed var(--border-color);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  color: var(--text-muted); cursor: pointer; background: var(--bg-soft); font-size: 10.5px; font-weight: 600;
}
.upload-add-tile:hover { border-color: var(--amber); color: var(--amber-dark); }
.upload-add-tile i { font-size: 20px; }

/* ============ Timeline ============ */
.timeline-track { display: flex; flex-direction: column; }
.tl-pt { display: flex; align-items: flex-start; gap: 12px; padding-bottom: 18px; position: relative; }
.tl-pt:not(:last-child)::before {
  content: ''; position: absolute; top: 28px; right: 13px;
  bottom: 0; width: 2px; background: var(--border-color);
}
.tl-pt.done:not(:last-child)::before { background: var(--success); }
.tl-dot {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tl-dot i { font-size: 13px; color: #fff; }
.tl-pt.done .tl-dot  { background: var(--success); }
.tl-pt.active .tl-dot { background: var(--amber); }
.tl-pt.pending .tl-dot { background: var(--bg-soft); }
.tl-pt.pending .tl-dot i { color: var(--text-muted); }
.tl-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.tl-pt.pending .tl-title { color: var(--text-muted); font-weight: 500; }
.tl-time { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ============ Notifications ============ */
.notif-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; cursor: pointer; position: relative;
  transition: background 0.12s; border-bottom: 1px solid var(--border-color);
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: var(--bg-soft); }
.notif-item.unread { background: #FFFBF0; }
.notif-item.unread:hover { background: #fdf3d0; }
.notif-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.notif-icon i { font-size: 18px; }
.notif-body { flex: 1; min-width: 0; }
.notif-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.notif-sub   { font-size: 12px; color: var(--text-secondary); margin-top: 3px; }
.notif-time  { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.notif-unread-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--danger); margin-top: 6px;
}
.ft-count { background: var(--bg-soft); color: var(--text-secondary); font-size: 10.5px; font-weight: 800; border-radius: 10px; padding: 1px 7px; }
.filter-tab.active .ft-count { background: rgba(255,255,255,0.2); color: #fff; }

/* ============ FAQ accordion ============ */
.faq-item { border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; background: var(--bg-card); }
.faq-item + .faq-item { margin-top: 12px; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; cursor: pointer; font-size: 14px; font-weight: 800; color: var(--text-primary);
}
.faq-question i { color: var(--text-muted); font-size: 18px; transition: transform 0.18s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--amber-dark); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.22s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 20px 18px; font-size: 13px; line-height: 1.9; color: var(--text-secondary); }

/* ============ Star rating input ============ */
.star-picker { display: flex; gap: 6px; direction: ltr; justify-content: center; }
.star-picker i { font-size: 30px; color: var(--border-color); cursor: pointer; }
.star-picker i.active { color: var(--amber); }

/* ============ Addresses / reviews ============ */
.address-card {
  display: flex; align-items: center; gap: 14px; padding: 16px;
  background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md);
}
.address-card i.addr-icon { font-size: 20px; color: var(--amber-dark); flex-shrink: 0; }
.address-card .addr-info { flex: 1; min-width: 0; }
.address-card .addr-info strong { display: block; font-size: 13px; font-weight: 800; }
.address-card .addr-info span { font-size: 11.5px; color: var(--text-muted); }

.review-card {
  padding: 18px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md);
}
.review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.review-card-top strong { font-size: 13px; font-weight: 800; }
.review-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.8; }
.review-card .review-meta { font-size: 11px; color: var(--text-muted); margin-top: 8px; }

/* ============ Payment methods strip ============ */
.payment-methods-row { display: flex; gap: 10px; flex-wrap: wrap; }
.payment-method-chip {
  display: flex; align-items: center; gap: 8px; padding: 8px 14px;
  background: var(--bg-soft); border-radius: 20px; font-size: 11.5px; font-weight: 700; color: var(--text-secondary);
}
.payment-method-chip i { font-size: 16px; color: var(--amber-dark); }

/* ============ Mobile ============ */
@media (max-width: 900px) {
  .navbar-links { display: none; }
  .navbar-menu-btn { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual-ring { width: 220px; height: 220px; }
  .hero-visual-ring i { font-size: 70px; }
  .hero-copy h1 { font-size: 32px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .app-cta { flex-direction: column; text-align: center; }
  .app-cta-copy p { max-width: none; }
  .svc-detail-price { border-right: none; padding-right: 0; border-top: 1px solid var(--border-color); padding-top: 14px; width: 100%; }
  .order-row { flex-wrap: wrap; }
  .order-row .or-info { flex-basis: 100%; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 30px 20px; }
}
