/* ==========================================================================
   Aaron Rosso | Appliance Repair — Mobile-First Web App
   Typography: Outfit (headings) + DM Sans (body)
   Palette: #0B2A45 navy · #F05A00 orange · warm grays
   ========================================================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 70px;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #2D3748;
  background: #FAFAF8;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- CSS Variables --- */
:root {
  --navy: #0B2A45;
  --navy-mid: #133B5C;
  --navy-deep: #071D31;
  --orange: #F05A00;
  --orange-glow: #FF7A2E;
  --orange-press: #D04E00;
  --cream: #FAFAF8;
  --warm-50: #FAF9F7;
  --warm-100: #F3F1ED;
  --warm-200: #E8E5DF;
  --warm-300: #D4CFC7;
  --warm-500: #8A8479;
  --warm-700: #4A4640;
  --warm-900: #1C1B18;
  --shadow-xs: 0 1px 2px rgba(28,27,24,0.06);
  --shadow-sm: 0 2px 8px rgba(28,27,24,0.08);
  --shadow-md: 0 4px 20px rgba(28,27,24,0.1);
  --shadow-lg: 0 12px 40px rgba(28,27,24,0.12);
  --shadow-xl: 0 20px 60px rgba(28,27,24,0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --header-h: 64px;
  --bottom-nav-h: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.tag-label {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.tag-label.light {
  color: var(--orange-glow);
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: 1.625rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--warm-500);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:active::after {
  opacity: 1;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 12px rgba(240,90,0,0.25);
}

.btn-primary:hover {
  background: var(--orange-press);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(240,90,0,0.35);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-glass {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.btn-glass:active {
  transform: translateY(0) scale(0.98);
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

/* ==========================================================================
   APP HEADER (top bar)
   ========================================================================== */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.app-header.scrolled {
  background: rgba(11,42,69,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.15);
}

.app-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.app-brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.app-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.brand-label {
  color: var(--orange-glow);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
  gap: 2rem;
}

.desktop-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.mobile-overlay.show {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 340px;
  height: 100%;
  height: 100dvh;
  background: var(--navy);
  z-index: 999;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.75rem;
}

.drawer-header img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.drawer-brand {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.drawer-sub {
  color: var(--orange-glow);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.drawer-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}

.drawer-links a svg {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  flex-shrink: 0;
}

.drawer-links a:hover,
.drawer-links a:active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.drawer-links a:active svg {
  opacity: 1;
  color: var(--orange);
}

.drawer-footer {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.drawer-cta {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.95rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../src/appliance bg 2.png') center/cover no-repeat;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(240,90,0,0.08) 0%, transparent 60%),
    linear-gradient(170deg, rgba(11,42,69,0.97) 0%, rgba(11,42,69,0.82) 45%, rgba(11,42,69,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 5rem;
  max-width: 720px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(240,90,0,0.12);
  color: var(--orange-glow);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(240,90,0,0.2);
}

.hero h1 {
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--orange);
  display: block;
}

.hero-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.75rem;
  line-height: 1.55;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

/* Stats strip */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-chip {
  flex: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.stat-value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat-desc {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(12px); }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
  padding: 4rem 0;
  background: var(--cream);
}

.about-layout {
  display: grid;
  gap: 2rem;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--warm-100);
  aspect-ratio: 4/3;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-chip {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--orange);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(240,90,0,0.3);
}

.exp-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.about-body h2 {
  font-size: 1.625rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.about-body p {
  color: var(--warm-500);
  margin-bottom: 0.75rem;
  line-height: 1.65;
  font-size: 0.95rem;
}

.feature-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--warm-700);
  background: var(--warm-100);
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-xs);
}

.pill svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES SECTION — horizontal scroll on mobile
   ========================================================================== */
.services {
  padding: 4rem 0;
  background: var(--warm-50);
}

.services-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem;
  margin: 0 -1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  scrollbar-width: none;
}

.services-scroll::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 78%;
  max-width: 300px;
  scroll-snap-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--warm-200);
}

.service-card:active {
  transform: scale(0.98);
}

.svc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  background: rgba(240,90,0,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--warm-500);
  line-height: 1.5;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-us {
  padding: 4rem 0;
  background: var(--navy);
  color: #fff;
}

.why-us .section-head h2 {
  color: #fff;
}

.why-us .section-head p {
  color: rgba(255,255,255,0.55);
}

.why-grid {
  display: grid;
  gap: 0.75rem;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all 0.25s var(--ease);
}

.why-card:active {
  background: rgba(255,255,255,0.1);
  transform: scale(0.98);
}

.why-icon {
  width: 42px;
  height: 42px;
  background: rgba(240,90,0,0.12);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.why-icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.why-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact {
  padding: 4rem 0 calc(4rem + var(--bottom-nav-h));
  background: var(--cream);
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.contact-info-desc {
  color: var(--warm-500);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--warm-200);
  transition: all 0.2s var(--ease);
}

.c-card:active {
  transform: scale(0.98);
  background: var(--warm-100);
}

.c-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(240,90,0,0.08);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.c-card-text {
  flex: 1;
  min-width: 0;
}

.c-label {
  display: block;
  font-size: 0.7rem;
  color: var(--warm-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.c-value {
  display: block;
  font-weight: 600;
  color: var(--warm-700);
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-card-arrow {
  width: 16px;
  height: 16px;
  color: var(--warm-300);
  flex-shrink: 0;
}

/* Contact Form */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--warm-200);
  box-shadow: var(--shadow-sm);
}

.form-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.form-card > p {
  color: var(--warm-500);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.form-field {
  margin-bottom: 0.85rem;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warm-700);
  margin-bottom: 0.3rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--warm-200);
  border-radius: var(--radius-xs);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--warm-50);
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--warm-900);
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,90,0,0.1);
  background: #fff;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--warm-300);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.select-wrap {
  position: relative;
}

.select-chevron {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--warm-500);
  pointer-events: none;
}

.form-row {
  display: grid;
  gap: 0.85rem;
}

.btn-submit {
  width: 100%;
  padding: 0.85rem;
  margin-top: 0.25rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  object-fit: cover;
}

.footer-brand h3 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-brand h3 span {
  color: var(--orange);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fc-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
}

.fc-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.fc-item a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0 calc(1.25rem + var(--bottom-nav-h) + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   BOTTOM NAVIGATION (mobile only)
   ========================================================================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(var(--bottom-nav-h) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--warm-200);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.06);
}

.bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.4rem 0.5rem;
  color: var(--warm-500);
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  min-width: 48px;
}

.bnav-item svg {
  width: 22px;
  height: 22px;
}

.bnav-item span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.bnav-item.active {
  color: var(--orange);
}

.bnav-item:active {
  transform: scale(0.9);
}

/* FAB in bottom nav */
.bnav-fab {
  margin-top: -20px;
}

.fab-circle {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(240,90,0,0.35);
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
}

.fab-circle svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.bnav-fab:active .fab-circle {
  transform: scale(0.92);
  box-shadow: 0 2px 8px rgba(240,90,0,0.4);
}

.bnav-fab span {
  color: var(--orange);
  font-weight: 700;
}

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal-el {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-el.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero staggered entrance */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.animate-in.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-in[data-delay="0"] { transition-delay: 0.1s; }
.animate-in[data-delay="1"] { transition-delay: 0.2s; }
.animate-in[data-delay="2"] { transition-delay: 0.35s; }
.animate-in[data-delay="3"] { transition-delay: 0.5s; }
.animate-in[data-delay="4"] { transition-delay: 0.65s; }
.animate-in[data-delay="5"] { transition-delay: 0.8s; }

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s var(--ease);
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
  max-width: 90%;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 0.75rem);
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-md);
  z-index: 99;
  -webkit-tap-highlight-color: transparent;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:active {
  transform: scale(0.9);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   Responsive — Tablet (640px+)
   ========================================================================== */
@media (min-width: 640px) {
  .section-head h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero h1 span {
    display: inline;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .stat-value {
    font-size: 2rem;
  }

  .services-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .service-card {
    flex: none;
    max-width: none;
    scroll-snap-align: none;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scroll-hint {
    bottom: 2rem;
  }
}

/* ==========================================================================
   Responsive — Desktop (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
  :root {
    --header-h: 72px;
    --bottom-nav-h: 0px;
  }

  .section-head h2 {
    font-size: 2.35rem;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-tagline {
    font-size: 1.15rem;
  }

  .hero-content {
    padding-bottom: 4rem;
  }

  .desktop-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .bottom-nav {
    display: none;
  }

  .scroll-hint {
    bottom: 2rem;
  }

  .about-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }

  .services-scroll {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 1.25rem;
  }

  .contact {
    padding-bottom: 5rem;
  }

  .about { padding: 5rem 0; }
  .services { padding: 5rem 0; }
  .why-us { padding: 5rem 0; }
  .contact { padding-top: 5rem; }

  .toast {
    bottom: 1.5rem;
  }

  .back-to-top {
    bottom: 1.5rem;
  }
}

/* ==========================================================================
   Responsive — Large Desktop (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
  .why-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==========================================================================
   Hover enhancement for non-touch devices
   ========================================================================== */
@media (hover: hover) {
  .c-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-sm);
  }

  .c-card:hover .c-card-arrow {
    color: var(--orange);
    transform: translateX(2px);
  }

  .c-card-arrow {
    transition: color 0.2s, transform 0.2s;
  }

  .pill:hover {
    background: rgba(240,90,0,0.08);
    color: var(--orange);
  }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal-el,
  .animate-in {
    opacity: 1;
    transform: none;
  }
}
