/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #0f172a; background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-block; padding: 12px 24px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s; text-align: center;
}
.btn-primary { background: #f97316; color: #fff; border-color: #f97316; }
.btn-primary:hover { background: #ea6c0a; border-color: #ea6c0a; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-dark { background: transparent; color: #0f172a; border-color: #0f172a; }
.btn-outline-dark:hover { background: #0f172a; color: #fff; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { display: block; width: 100%; }

/* ── NAVBAR ───────────────────────────────────────── */
.navbar { background: #0f172a; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 1.3rem; font-weight: 800; color: #fff; }
.nav-logo span { color: #f97316; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #94a3b8; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }
.nav-mobile { display: none; flex-direction: column; background: #1e293b; padding: 16px 24px; gap: 16px; }
.nav-mobile a { color: #94a3b8; font-size: 1rem; font-weight: 500; }
.nav-mobile.open { display: flex; }

/* ── FLASH ────────────────────────────────────────── */
.flash-container { padding: 12px 24px; }
.flash { padding: 12px 16px; border-radius: 6px; font-size: 0.9rem; }
.flash-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.flash-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }

/* ── HERO ─────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); padding: 100px 24px; text-align: center; }
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero-badge { display: inline-block; background: rgba(249,115,22,0.15); color: #f97316; border: 1px solid rgba(249,115,22,0.3); padding: 6px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: #f97316; }
.hero-sub { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.hero-trust span { color: #94a3b8; font-size: 0.85rem; font-weight: 500; }

/* ── SECTION TITLES ───────────────────────────────── */
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: #64748b; margin-bottom: 48px; font-size: 1rem; }

/* ── SERVICES ─────────────────────────────────────── */
.services { padding: 80px 0; background: #f8fafc; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-bottom: 48px; }
.service-card { background: #fff; border-radius: 12px; padding: 28px 24px; border: 1px solid #e2e8f0; transition: box-shadow 0.2s, transform 0.2s; }
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: #475569; line-height: 1.6; }
.services-cta { text-align: center; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.services-cta p { width: 100%; color: #64748b; margin-bottom: 4px; }
.services-cta .btn-outline { color: #0f172a; border-color: #0f172a; }
.services-cta .btn-outline:hover { background: #0f172a; color: #fff; }

/* ── WHY US ───────────────────────────────────────── */
.why-us { padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 32px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { font-size: 1.8rem; flex-shrink: 0; }
.why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: #475569; }

/* ── HOURS ────────────────────────────────────────── */
.hours { padding: 80px 0; background: #0f172a; color: #fff; }
.hours-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.hours-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.address { color: #cbd5e1; margin-bottom: 8px; }
.phone-link { display: inline-block; font-size: 1.4rem; font-weight: 700; color: #f97316; margin-bottom: 24px; }
.phone-link:hover { color: #ea6c0a; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; }
.hours-table td:first-child { color: #94a3b8; }
.hours-table td:last-child { font-weight: 600; text-align: right; }
.hours-table tr.half-day td { color: #f97316; }
.hours-table tr.closed td { color: #475569; }

/* ── FINAL CTA ────────────────────────────────────── */
.final-cta { background: #f97316; padding: 80px 24px; text-align: center; }
.final-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-primary { background: #fff; color: #f97316; border-color: #fff; }
.final-cta .btn-primary:hover { background: #f1f5f9; border-color: #f1f5f9; }
.final-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.final-cta .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: #0f172a; color: #94a3b8; padding: 60px 0 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-brand { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.footer-brand span { color: #f97316; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.footer-col p { font-size: 0.85rem; line-height: 1.8; color: #cbd5e1; }
.footer-col a { color: #cbd5e1; transition: color 0.2s; }
.footer-col a:hover { color: #f97316; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 20px 24px; text-align: center; font-size: 0.8rem; color: #475569; }

/* ── PAGE HERO ────────────────────────────────────── */
.page-hero { background: #0f172a; padding: 60px 24px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero p { color: #94a3b8; font-size: 1rem; max-width: 560px; }

/* ── BOOKING ──────────────────────────────────────── */
.booking-section { padding: 60px 0 80px; }
.booking-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.booking-form { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: #374151; }
.required { color: #f97316; }
input, textarea, select {
  width: 100%; padding: 10px 14px; border: 1px solid #d1d5db; border-radius: 8px;
  font-family: inherit; font-size: 0.9rem; color: #0f172a; background: #fff;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: #f97316; box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
textarea { resize: vertical; }
.form-note { font-size: 0.8rem; color: #9ca3af; text-align: center; margin-top: 12px; }
.aside-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.aside-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.aside-card p { font-size: 0.85rem; color: #64748b; margin-bottom: 6px; }
.hours-table-sm td { color: #374151 !important; }
.hours-table-sm tr.half-day td { color: #f97316 !important; }
.hours-table-sm tr.closed td { color: #9ca3af !important; }

/* ── REFURBISHED ──────────────────────────────────── */
.refurbished { padding: 80px 0; background: #fff; }
.refurb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-bottom: 40px; }
.refurb-card { background: #f8fafc; border-radius: 12px; padding: 28px 24px; border: 2px solid #e2e8f0; transition: border-color 0.2s, box-shadow 0.2s; }
.refurb-card:hover { border-color: #f97316; box-shadow: 0 4px 16px rgba(249,115,22,0.1); }
.refurb-card-buy { background: #fff7ed; border-color: #fed7aa; }
.refurb-card-buy:hover { border-color: #f97316; }
.refurb-icon { font-size: 2rem; margin-bottom: 12px; }
.refurb-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #0f172a; }
.refurb-card p { font-size: 0.88rem; color: #475569; line-height: 1.6; }
.refurb-cta { text-align: center; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.refurb-cta p { width: 100%; color: #475569; margin-bottom: 4px; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hours-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .booking-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .why-grid { grid-template-columns: 1fr; }
}
