/* ==========================================================================
   STAR ART WORKS — LIGHT THEME & DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-body: #FFFFFF;
  --bg-alt: #F8F9FA;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  
  --text-primary: #1E242B;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --text-white: #FFFFFF;
  
  --brand-primary: #E74C3C;
  --brand-primary-hover: #D63031;
  --brand-navy: #0F172A;
  --brand-navy-light: #1E293B;
  --brand-gold: #D97706;
  --brand-green: #10B981;
  
  --border-light: #E2E8F0;
  --border-subtle: #EDF2F7;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  --transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 80px;
  --header-height-mobile: 68px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
}

/* Every anchor-jump target on the site (in-page sections and the
   individual service cards) needs this, or the sticky 80px header
   covers the top of whatever you jump to -- heading included. */
section[id],
.service-card[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

@media (max-width: 768px) {
  section[id],
  .service-card[id] {
    scroll-margin-top: calc(var(--header-height-mobile) + 12px);
  }
}

/* Visible keyboard focus on every interactive element, not just form
   inputs. Uses the brand accent so it reads as intentional, not a
   browser default. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Respect the OS-level reduced-motion preference: kill scroll-reveal
   animation, hero slider transitions, and hover-transform motion for
   anyone who has asked their system to minimize it. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  touch-action: manipulation;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Typography Helpers */
.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
}

h1, h2, h3, h4 {
  color: var(--brand-navy);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.015em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--brand-primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(231, 76, 60, 0.35);
}

.btn-primary:hover {
  background-color: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.45);
}

.btn-secondary {
  background-color: var(--brand-navy);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--brand-navy-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--brand-navy);
  background: var(--bg-alt);
}

.btn-white {
  background: var(--text-white);
  color: var(--brand-navy);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce), (max-width: 768px) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR & HEADER
   ========================================================================== */

.top-bar {
  background-color: var(--brand-navy);
  color: #E2E8F0;
  font-size: 0.85rem;
  padding: 8px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #E2E8F0;
  transition: var(--transition);
  font-size: 0.82rem;
}

.top-bar-item:hover {
  color: #FFFFFF;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-social a:hover {
  background: var(--brand-primary);
  color: #FFFFFF;
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-body);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

main {
  position: relative;
  z-index: 0;
  isolation: isolate;
}

header.header-scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
  max-width: min(320px, 42vw);
}

.brand-logo,
.brand-logo-icon {
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  flex-shrink: 1;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  line-height: 0;
  text-decoration: none;
  max-width: none;
}

.footer-brand .brand-logo {
  height: 40px;
  width: auto;
  max-width: min(260px, 70vw);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--brand-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--brand-primary);
  transition: var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.nav-phone svg {
  color: var(--brand-primary);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--brand-navy);
  padding: 4px;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */

.hero-section {
  position: relative;
  background-color: var(--bg-alt);
  padding: 30px 0 60px 0;
  overflow: hidden;
}

.hero-container {
  display: block;
  width: 100%;
}

/* Full Width Hero Carousel Slider */
.hero-slider-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 560px;
  background-color: var(--brand-navy);
  width: 100%;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.5) 60%, rgba(15,23,42,0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 64px;
  color: #FFFFFF;
}

.slide-badge {
  display: inline-block;
  background: rgba(231, 76, 60, 0.95);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.slide-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.18;
  max-width: 720px;
}

.slide-desc {
  font-size: 1.1rem;
  color: #E2E8F0;
  max-width: 620px;
  margin-bottom: 28px;
  line-height: 1.55;
}

.slide-cta {
  display: flex;
  gap: 12px;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.slider-arrow:hover {
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
  color: var(--brand-primary);
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 48px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--brand-primary);
}

/* Floating Consultation Form Card */
.hero-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 5;
}

.form-header {
  margin-bottom: 20px;
}

.form-header h3 {
  font-size: 1.4rem;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.form-input, .form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background-color: var(--bg-alt);
  color: var(--text-primary);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--brand-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 8px;
}

.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ==========================================================================
   TRUST METRICS BANNER
   ========================================================================== */

.trust-bar {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 12px;
  border-right: 1px solid var(--border-light);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(231, 76, 60, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-info h4 {
  font-size: 1.2rem;
  color: var(--brand-navy);
  line-height: 1.2;
}

.trust-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   SPACES WE COVER SECTION
   ========================================================================== */

.spaces-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.spaces-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.spaces-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.spaces-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.space-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  min-width: 0;
}

.space-item:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

.space-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(231, 76, 60, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.space-item span {
  font-weight: 600;
  color: var(--brand-navy);
  font-size: 0.95rem;
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.3;
}

.spaces-list--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .spaces-layout { grid-template-columns: 1fr; }
  .spaces-image img { height: 320px; }
  .spaces-list--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .spaces-list,
  .spaces-list--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .space-item {
    padding: 12px 10px;
    gap: 8px;
  }

  .space-icon {
    width: 32px;
    height: 32px;
  }

  .space-item span {
    font-size: 0.78rem;
    line-height: 1.25;
  }
}

/* ==========================================================================
   SERVICES & OFFERINGS SECTION
   ========================================================================== */

.services-section {
  padding: 90px 0;
  background-color: var(--bg-body);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(231, 76, 60, 0.3);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.8);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h3 {
  font-size: 1.3rem;
  color: var(--brand-navy);
  margin-bottom: 10px;
}

.service-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li svg {
  color: var(--brand-green);
  flex-shrink: 0;
}

.service-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  gap: 10px;
}

/* ==========================================================================
   HOW WE QUOTE / PROMISE SECTION
   ========================================================================== */

.quote-promise-section {
  padding: 90px 0;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.quote-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.quote-promise-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.quote-promise-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.quote-promise-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.quote-promise-card h3 {
  font-size: 1.15rem;
  color: var(--brand-navy);
  margin-bottom: 10px;
}

.quote-promise-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.quote-promise-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-story-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-stat-divider {
  border-left: 1px solid var(--border-light);
  padding-left: 20px;
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-area-chip {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 600;
  color: var(--brand-navy);
  text-align: center;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.timeline-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.timeline-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.timeline-card span {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.materials-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.material-chip {
  background: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.seo-band {
  padding: 72px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
}

.seo-band--alt {
  background: var(--bg-alt);
}

.seo-band-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.seo-band h2 {
  font-size: 1.9rem;
  color: var(--brand-navy);
  margin-bottom: 14px;
}

.seo-band p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.seo-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.seo-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
}

.seo-band--alt .seo-checklist li {
  background: #FFFFFF;
}

.seo-checklist li span {
  color: var(--brand-primary);
  font-weight: 800;
  flex-shrink: 0;
}

.process-visual {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.process-visual img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .seo-band {
    padding: 52px 0;
  }

  .seo-band-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .seo-band h2 {
    font-size: 1.55rem;
  }
}

/* ==========================================================================
   PORTFOLIO & PROJECTS GALLERY
   ========================================================================== */

.projects-section {
  padding: 90px 0;
  background-color: var(--bg-body);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: #FFFFFF;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--brand-navy);
  color: #FFFFFF;
  border-color: var(--brand-navy);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--brand-navy);
  height: 320px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #FFFFFF;
  transition: var(--transition);
}

.project-location {
  font-size: 0.8rem;
  color: #FCD34D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 4px;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* ==========================================================================
   4-STEP PROCESS SECTION
   ========================================================================== */

.process-section {
  padding: 90px 0;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary);
}

.process-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(231, 76, 60, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.process-card h4 {
  font-size: 1.15rem;
  color: var(--brand-navy);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   CUSTOMER TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
  padding: 90px 0;
  background-color: var(--bg-body);
}

.reviews-footer {
  text-align: center;
  margin-top: 40px;
}

/* Carousel: swipeable track + always-visible prev/next controls */
.reviews-carousel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.reviews-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.reviews-arrow:hover:not(:disabled) {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #FFFFFF;
}

.reviews-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px;
  width: 100%;
  overscroll-behavior-x: contain;
  /* Without this, a flex item defaults to min-width:auto, which means
     it refuses to shrink below the width of all its cards combined —
     so overflow-x:auto never actually engages, and instead the whole
     row (and the page with it) pushes wider than the screen. This one
     line is what makes the carousel actually stay contained and
     swipeable instead of blowing out the layout on mobile. */
  min-width: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card,
.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: var(--transition);
  flex: 0 0 340px;
  scroll-snap-align: start;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -6px;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.review-card-heading h5 {
  font-size: 0.95rem;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.review-meta .stars {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.quote-text {
  font-size: 0.98rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.client-avatar-photo {
  object-fit: cover;
  background: var(--bg-alt);
}

.client-details h5 {
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.client-details p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */

.faq-section {
  padding: 90px 0;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  min-height: 56px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  font-size: 0;
  line-height: 0;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.active .faq-icon {
  background: var(--brand-primary);
  color: #FFFFFF;
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   CLOSING CTA BANNER — used across About, Services, Portfolio, and
   How It Works. One class instead of four copies of the same inline
   styles, so it stays visually consistent if it's ever updated.
   ========================================================================== */

.cta-banner {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--brand-navy) 0%, #1a2436 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(231, 76, 60, 0.12) 0%, transparent 45%),
                     radial-gradient(circle at 85% 80%, rgba(231, 76, 60, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.cta-banner .wrap {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  color: #CBD5E1;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 28px auto;
}

.cta-banner .btn {
  font-size: 1.05rem;
  padding: 14px 32px;
}

/* ==========================================================================
   CONTACT & CONSULTATION SECTION
   ========================================================================== */

.contact-section {
  padding: 90px 0;
  background-color: var(--bg-body);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(231, 76, 60, 0.1);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.info-text p, .info-text a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   FLOATING WIDGETS
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  animation: whatsappBlink 2s infinite ease-in-out;
  transition: var(--transition);
}

@keyframes whatsappBlink {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    transform: scale(1.06);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

.floating-whatsapp:hover {
  animation: none;
  transform: scale(1.15);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
}

.floating-top {
  position: fixed;
  bottom: 94px;
  /* 29px, not 24px: this button is 48px wide vs WhatsApp's 58px, so
     matching "right" values leaves their centers 5px off from each
     other -- this value makes the two actually stack on the same
     vertical center line instead of looking slightly crooked. */
  right: 29px;
  z-index: 998;
  width: 48px;
  height: 48px;
  background: var(--brand-navy);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-top:hover {
  background: var(--brand-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background-color: var(--brand-navy);
  color: #94A3B8;
  padding: 70px 0 30px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col p {
  line-height: 1.6;
  margin-top: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-slider-wrap {
    height: 480px;
  }

  .slide-overlay {
    padding: 40px;
  }

  .slide-title {
    font-size: 2.2rem;
  }

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

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

  .testimonial-card,
  .review-card {
    flex-basis: 300px;
  }

  .quote-promise-grid,
  .timeline-grid,
  .service-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story-grid {
    gap: 32px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .top-bar-wrap {
    justify-content: center;
    gap: 10px;
  }

  .top-bar-left {
    gap: 12px;
    font-size: 0.78rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-slider-wrap {
    height: 420px;
  }

  .slide-overlay {
    padding: 24px 20px;
  }

  .slide-title {
    font-size: 1.7rem;
  }

  .slide-desc {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }

  .nav-menu, .nav-phone {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-wrap {
    height: var(--header-height-mobile);
  }

  .brand-logo-link {
    max-width: min(260px, 50vw);
  }

  .brand-logo,
  .brand-logo-icon {
    height: 36px;
  }

  /* Keep top-bar + logo header where they are; panel drops below both. */
  body.mobile-menu-open .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1102;
  }

  body.mobile-menu-open.mobile-menu-with-topbar .top-bar {
    display: block;
  }

  body.mobile-menu-open:not(.mobile-menu-with-topbar) .top-bar {
    display: none;
  }

  body.mobile-menu-open header {
    position: fixed;
    top: var(--mobile-chrome-top, 0px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1101;
    background: #FFFFFF;
    box-shadow: var(--shadow-md);
  }

  body.mobile-menu-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--mobile-menu-top, var(--header-height-mobile));
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    background: #FFFFFF;
    padding: 8px 24px 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-light);
    max-height: var(--mobile-menu-max-height, 70vh);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    z-index: 1101;
  }

  html.mobile-menu-open,
  body.mobile-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.mobile-menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1090;
    pointer-events: auto;
  }

  body.mobile-menu-open .floating-whatsapp,
  body.mobile-menu-open .floating-top {
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-menu-open .nav-menu .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
  }

  .mobile-menu-open .nav-menu li:last-child .nav-link {
    border-bottom: none;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .services-grid, .projects-grid, .process-grid,
  .quote-promise-grid, .timeline-grid, .service-areas-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-grid h2 {
    font-size: 1.65rem !important;
  }

  .comparison-table {
    font-size: 0.88rem;
  }

  .testimonial-card,
  .review-card {
    flex: 0 0 min(300px, calc(100% - 16px));
    max-width: calc(100vw - 64px);
    padding: 24px;
  }

  .reviews-arrow {
    width: 44px;
    height: 44px;
  }

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

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    text-align: center;
  }

  .slide-cta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .slide-cta .btn {
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  .page-title {
    font-size: 1.9rem;
  }

  .page-lead {
    font-size: 1rem;
  }
}

/* ==========================================================================
   EXTRA-SMALL DEVICES (PHONES, MAX 480PX)
   ========================================================================== */

@media (max-width: 480px) {
  .wrap {
    padding: 0 16px;
  }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }

  .top-bar-wrap {
    gap: 6px;
  }

  .top-bar-left {
    gap: 10px;
    font-size: 0.72rem;
  }

  .top-bar-social {
    gap: 8px;
  }

  .top-bar-social a {
    width: 26px;
    height: 26px;
  }

  .nav-wrap {
    height: 68px;
  }

  .brand-logo-link {
    max-width: min(240px, 52vw);
  }

  .brand-logo,
  .brand-logo-icon {
    height: 34px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-sub {
    font-size: 0.6rem;
  }

  /* Full "Get Free " prefix is hidden on the narrowest phones (see
     405px breakpoint below) -- leaves just "Quote" so the button
     doesn't crowd the logo. Shown normally everywhere else. */
  .quote-btn-prefix {
    display: inline;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .hero-section {
    padding: 16px 0 36px 0;
  }

  .hero-slider-wrap {
    height: 440px;
    min-height: 440px;
    border-radius: var(--radius-md);
  }

  .slide-overlay {
    padding: 18px 16px 52px;
  }

  .slide-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .slide-badge {
    font-size: 0.7rem;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  .slide-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }

  .slide-desc {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .slide-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .slide-cta .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
  }

  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .spaces-section, .services-section, .quote-promise-section, .process-section, .projects-section, .testimonials-section, .faq-section, .contact-section, .about-story-section {
    padding: 50px 0;
  }

  .space-item {
    padding: 12px 14px;
  }

  .space-item span {
    font-size: 0.85rem;
  }

  .quote-promise-card {
    padding: 22px 18px;
  }

  .quote-promise-cta {
    flex-direction: column;
  }

  .quote-promise-cta .btn {
    width: 100%;
    text-align: center;
  }

  .service-body {
    padding: 18px;
  }

  .form-header h3 {
    font-size: 1.2rem;
  }

  .hero-form-card {
    padding: 22px 18px;
  }

  .page-header-banner {
    padding: 40px 0 32px 0;
  }

  .page-title {
    font-size: 1.55rem;
  }

  .comparison-table th, .comparison-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }

  .floating-top {
    width: 40px;
    height: 40px;
    bottom: 76px;
    /* 21px to match WhatsApp's center (50px wide, right:16px) since
       this button is only 40px wide -- see desktop rule for the math. */
    right: 21px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
    gap: 10px;
    min-height: 52px;
  }

  .faq-answer-inner {
    padding: 0 18px 18px 18px;
    font-size: 0.9rem;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .hero-form-card {
    padding: 20px;
  }

  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    max-width: 100%;
    padding-bottom: 4px;
  }

  .gallery-filters .filter-btn {
    flex-shrink: 0;
  }

  .breadcrumb-nav {
    font-size: 0.75rem;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   SUB-PAGE BREADCRUMBS & COMPONENT STYLES
   ========================================================================== */

.page-header-banner {
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  padding: 60px 0 50px 0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.breadcrumb-nav a {
  color: var(--brand-primary);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 12px;
}

.page-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.6;
}

/* Comparison Table */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  text-align: left;
}

.comparison-table th {
  background: var(--brand-navy);
  color: #FFFFFF;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 700;
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .feature-col {
  font-weight: 700;
  color: var(--brand-navy);
  width: 30%;
}

.comparison-table .us-col {
  background: rgba(231, 76, 60, 0.04);
  font-weight: 600;
  color: var(--brand-primary);
}

.check-icon {
  color: var(--brand-green);
  font-weight: 800;
}

.cross-icon {
  color: #EF4444;
  font-weight: 800;
}
/* ==========================================================================
   VERY NARROW PHONES (≤405px — iPhone SE, older/smaller Android)
   The 480px breakpoint above already shrinks the header, but on genuinely
   narrow screens the logo block + "Get Free Quote" button + hamburger
   still crowd each other. This trims it further without removing anything
   users actually need.
   ========================================================================== */
@media (max-width: 405px) {
  .brand-logo-link {
    max-width: min(168px, 46vw);
  }

  .brand-logo,
  .brand-logo-icon {
    height: 26px;
  }

  .quote-btn-prefix {
    display: none;
  }

  .nav-actions .btn {
    padding: 8px 12px;
  }
}