/* ==========================================================================
   SRAJ Packers And Movers — Main Stylesheet
   Brand Colors:
     --primary        #0B2D5B  (Navy Blue  - trust, logistics)
     --primary-dark   #071A33  (Deep Navy  - footer/backgrounds)
     --accent         #FF6A00  (Orange     - CTA / energy, matches logo)
     --accent-light   #FFA94D  (Light Orange - hovers/highlights)
     --whatsapp       #25D366
   ========================================================================== */

:root {
  --primary: #0B2D5B;
  --primary-dark: #071A33;
  --primary-light: #1E4C8A;
  --accent: #FF6A00;
  --accent-dark: #E05A00;
  --accent-light: #FFA94D;
  --whatsapp: #25D366;
  --bg-light-alt: #F4F7FB;
  --text-dark: #1B1F27;
  --text-muted: #5B6472;
  --border-color: #E4E9F1;
  --white: #ffffff;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 10px 30px rgba(11, 45, 91, 0.08);
  --shadow-strong: 0 20px 45px rgba(11, 45, 91, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, .brand-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-top: 1.75rem; margin-bottom: .75rem; }

p { color: var(--text-muted); }

a { text-decoration: none; color: inherit; transition: all .2s ease; }

/* ---------- Skip link (accessibility) ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

/* Visible focus outline everywhere for keyboard nav */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary-dark);
  color: #cfd9ea;
  font-size: .85rem;
  padding: 8px 0;
}
.top-bar a { color: #cfd9ea; }
.top-bar a:hover { color: var(--accent-light); }
.top-bar-left span { margin-right: 22px; }
.top-bar-right a { margin-left: 18px; }
.top-bar i { color: var(--accent); margin-right: 4px; }

/* ---------- Navbar ---------- */
.main-navbar {
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 10px 0;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-brand img { border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { color: var(--primary); font-size: 1.15rem; }
.brand-text em { color: var(--accent); font-style: normal; font-weight: 600; font-size: .78rem; }
.brand-text small { color: var(--text-muted); font-size: .68rem; letter-spacing: .04em; }

.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 8px;
  position: relative;
}
.nav-link.active, .nav-link:hover { color: var(--accent) !important; }
.dropdown-menu { border: none; box-shadow: var(--shadow-strong); border-radius: var(--radius-md); }
.dropdown-item:hover { background: var(--bg-light-alt); color: var(--accent); }

.btn-cta-call, .btn-cta-quote, .btn-whatsapp-outline {
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 22px;
  border: none;
  white-space: nowrap;
}
.btn-cta-call { background: var(--primary); color: #fff; }
.btn-cta-call:hover { background: var(--primary-light); color: #fff; }
.btn-cta-quote { background: var(--accent); color: #fff; }
.btn-cta-quote:hover { background: var(--accent-dark); color: #fff; }
.btn-whatsapp-outline { background: transparent; color: var(--whatsapp); border: 2px solid var(--whatsapp); }
.btn-whatsapp-outline:hover { background: var(--whatsapp); color: #fff; }

/* ---------- Sticky Buttons ---------- */
.sticky-btn {
  position: fixed;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  z-index: 1200;
  box-shadow: var(--shadow-strong);
}
.sticky-call { bottom: 92px; background: var(--primary); }
.sticky-whatsapp { bottom: 24px; background: var(--whatsapp); }
.sticky-btn:hover { transform: scale(1.08); color: #fff; }

/* ---------- Hero (Home) ---------- */
.hero-section {
  position: relative;
  color: #fff;
  padding: 130px 0 100px;
  background: linear-gradient(120deg, rgba(7,26,51,.92), rgba(11,45,91,.82)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero-section .section-eyebrow { color: var(--accent-light); }
.hero-section h1 { color: #fff; }
.hero-section .lead { color: #dbe4f2; max-width: 620px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0; }
.hero-trust-strip {
  display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px;
}
.hero-trust-strip .item { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: .92rem;}
.hero-trust-strip i { color: var(--accent-light); font-size: 1.3rem; }

.hero-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  margin-bottom: 18px;
  color: #fff;
}

/* ---------- District Hero ---------- */
.district-hero {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 60px 0 55px;
}
.district-hero h1 { color: #fff; }
.district-hero .lead { color: #dbe4f2; max-width: 700px; }
.district-hero .breadcrumb { --bs-breadcrumb-divider-color: #9db3d1; margin-bottom: 18px;}
.district-hero .breadcrumb a { color: #cfd9ea; }
.district-hero .breadcrumb-item.active { color: var(--accent-light); }
.hero-meta { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 22px; }
.hero-meta li { color: #dbe4f2; font-weight: 500; font-size: .92rem; }
.hero-meta i { color: var(--accent-light); margin-right: 6px; }

/* ---------- Generic Sections ---------- */
.section-pad { padding: 80px 0; }
.bg-light-alt { background: var(--bg-light-alt); }
.section-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  margin-bottom: 10px;
}

/* ---------- Trust / Stats ---------- */
.trust-strip { background: var(--primary); padding: 28px 0; }
.trust-strip .trust-item { color: #fff; text-align: center; font-weight: 600; }
.trust-strip i { display: block; font-size: 2rem; color: var(--accent-light); margin-bottom: 8px; }

.stats-section { background: var(--primary-dark); color: #fff; padding: 60px 0; }
.stat-block { text-align: center; }
.stat-block .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--accent-light); }
.stat-block .label { color: #cfd9ea; font-weight: 500; }

/* ---------- Cards ---------- */
.service-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  height: 100%;
  transition: all .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); border-color: transparent; }
.service-card .icon-wrap {
  width: 62px; height: 62px; border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem; margin-bottom: 18px;
}
.service-card h3 { margin-top: 0; font-size: 1.15rem; }
.service-card a.learn-more { color: var(--accent); font-weight: 600; font-size: .9rem; }

.why-card { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border-color); }
.why-card i { font-size: 1.6rem; color: var(--accent); flex-shrink: 0; }
.why-card h3 { margin: 0 0 4px; font-size: 1.05rem; }

.process-step { text-align: center; position: relative; padding: 0 10px; }
.process-step .step-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; border: 4px solid var(--accent-light);
}
.process-step h3 { font-size: 1rem; }

.testimonial-card {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-soft); height: 100%;
}
.testimonial-card .stars { color: var(--accent); margin-bottom: 10px; }
.testimonial-card strong { color: var(--primary); display: block; margin-top: 12px; font-size: .9rem; }

.gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.08); }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 6px 0; color: var(--text-dark); }
.checklist i { color: var(--accent); margin-right: 8px; }

.fact-list { list-style: none; padding: 0; margin: 0 0 10px; }
.fact-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--border-color); font-size: .92rem; }
.fact-list span { color: var(--text-muted); }
.fact-list strong { color: var(--primary); }

.sidebar-card { background: var(--bg-light-alt); border-radius: var(--radius-lg); padding: 26px; }
.sidebar-card h3 { margin-top: 0; }

.related-links { display: flex; flex-wrap: wrap; gap: 12px; }
.related-pill {
  background: #fff; border: 1px solid var(--border-color); border-radius: 50px;
  padding: 8px 18px; font-weight: 600; font-size: .88rem; color: var(--primary);
}
.related-pill:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Coverage / Map ---------- */
.coverage-map iframe { border-radius: var(--radius-lg); width: 100%; }
.district-chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.district-chip {
  background: var(--bg-light-alt); border-radius: 50px; padding: 8px 16px;
  font-size: .85rem; font-weight: 600; color: var(--primary);
}
.district-chip:hover { background: var(--primary); color: #fff; }

/* ---------- FAQ Accordion ---------- */
.accordion-item { border: none; margin-bottom: 12px; border-radius: var(--radius-md) !important; overflow: hidden; box-shadow: var(--shadow-soft); }
.accordion-button { font-weight: 700; color: var(--primary); }
.accordion-button:not(.collapsed) { background: var(--primary); color: #fff; }
.accordion-button:not(.collapsed)::after { filter: invert(1); }
.accordion-button:focus { box-shadow: none; outline: 3px solid var(--accent); }

/* ---------- Quote Section ---------- */
.quote-section {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
}
.quote-points li { color: #dbe4f2; padding: 5px 0; }
.quote-points i { color: var(--accent-light); margin-right: 8px; }
.quote-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-strong);
}
.quote-form .form-label { font-weight: 600; color: var(--primary); font-size: .9rem; }
.quote-form .form-control, .quote-form .form-select {
  border-radius: 10px; border: 1px solid var(--border-color); padding: 10px 14px;
}
.quote-form .form-control:focus, .quote-form .form-select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 .2rem rgba(255,106,0,.15);
}

/* ---------- Quote Offcanvas Sidebar ---------- */
.quote-offcanvas { width: 420px; max-width: 92vw; }
.quote-offcanvas .offcanvas-header {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 22px 26px;
}
.quote-offcanvas .offcanvas-title { color: #fff; font-size: 1.2rem; margin: 0; }
.quote-offcanvas .btn-close { filter: invert(1); opacity: .9; }
.quote-offcanvas .offcanvas-body { padding: 26px; }
.quote-offcanvas .form-label { font-weight: 600; color: var(--primary); font-size: .9rem; }
.quote-offcanvas .form-control, .quote-offcanvas .form-select {
  border-radius: 10px; border: 1px solid var(--border-color); padding: 10px 14px;
}
.quote-offcanvas .form-control:focus, .quote-offcanvas .form-select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 .2rem rgba(255,106,0,.15);
}
.quote-offcanvas .form-control.is-invalid, .quote-offcanvas .form-select.is-invalid {
  border-color: #dc3545;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--primary-dark); color: #b9c6dc; padding: 70px 0 0; }
.site-footer p { color: #9fb0c9; }
.footer-brand { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.footer-heading { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #9fb0c9; }
.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center; margin-right: 8px; color: #fff;
}
.social-links a:hover { background: var(--accent); }
.footer-bottom-row { border-top: 1px solid rgba(255,255,255,.1); color: #9fb0c9; }
.footer-map iframe { border-radius: var(--radius-md); }
.copyright-row { border-top: 1px solid rgba(255,255,255,.1); margin-top: 30px; padding: 20px 0; font-size: .85rem; }

/* ---------- Misc pages (about/contact/services) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff; padding: 70px 0 55px;
}
.page-hero h1 { color: #fff; }
.page-hero .breadcrumb-item.active { color: var(--accent-light); }
.page-hero .breadcrumb a { color: #cfd9ea; }

.contact-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: 28px; height: 100%; text-align: center; }
.contact-card i { font-size: 1.8rem; color: var(--accent); margin-bottom: 12px; }

.timeline { border-left: 3px solid var(--accent-light); padding-left: 24px; }
.timeline-item { margin-bottom: 24px; }
.timeline-item strong { color: var(--primary); }

.table-legal th, .table-legal td { padding: 10px; border: 1px solid var(--border-color); }

/* Back to top */
#backToTop {
  position: fixed; bottom: 24px; left: 24px; z-index: 1100;
  background: var(--primary); color: #fff; width: 46px; height: 46px; border-radius: 50%;
  display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-strong); border: none;
}
