/*
 * ============================================================
 * CLEARFLOW HOME SERVICES — MASTER STYLESHEET
 * ============================================================
 * File: style.css
 * Purpose: All visual styles for the Clearflow Home Services
 *          website. Covers layout, typography, colors, and
 *          responsive behavior across all four pages:
 *          index.html, services.html, about.html, contact.html.
 *
 * Connected files:
 *   - index.html   (Home page)
 *   - services.html (Services page)
 *   - about.html   (About page)
 *   - contact.html  (Contact / Booking page)
 *   - script.js    (Interactive behaviors)
 *
 * Color palette:
 *   Navy:   #0F1F3D  (headers, nav, primary CTAs)
 *   Amber:  #F59E0B  (urgency, highlights, accent buttons)
 *   White:  #FFFFFF  (backgrounds)
 *   Light:  #F8FAFC  (alternate section backgrounds)
 *   Text:   #1E293B  (body copy)
 *   Muted:  #64748B  (secondary text)
 *
 * Font: Inter (Google Fonts)
 * ============================================================
 */

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1E293B;
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 48px 0;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  color: #0F1F3D;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #1E293B;
}

.text-muted {
  color: #64748B;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748B;
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* ============================================================
   URGENCY BANNER (top of every page)
   ============================================================ */
.urgency-banner {
  background-color: #F59E0B;
  color: #0F1F3D;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.urgency-banner a {
  color: #0F1F3D;
  text-decoration: underline;
  font-weight: 700;
}

/* ============================================================
   STICKY HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0F1F3D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.header-logo span {
  color: #F59E0B;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  color: #CBD5E1;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  color: #FFFFFF;
}

.header-phone {
  color: #F59E0B !important;
  font-weight: 700;
  font-size: 0.95rem !important;
  white-space: nowrap;
}

.header-cta-button {
  display: inline-block;
  background-color: #F59E0B;
  color: #0F1F3D;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background-color 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.header-cta-button:hover {
  background-color: #D97706;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, #0F1F3D 0%, #1A3260 100%);
  color: #FFFFFF;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49%, #FFFFFF 50%);
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: #FFFFFF;
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-content h1 .highlight {
  color: #F59E0B;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-button {
  display: inline-block;
  background-color: #F59E0B;
  color: #0F1F3D;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.125rem;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.hero-cta-button:hover {
  background-color: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* ============================================================
   FIRE SAFETY STAT BAR
   ============================================================ */
.fire-stat-bar {
  background-color: #FEF3C7;
  border-left: 4px solid #F59E0B;
  padding: 20px 24px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: #92400E;
}

.fire-stat-bar .stat-number {
  color: #DC2626;
  font-weight: 800;
  font-size: 1.2rem;
}

.fire-stat-bar .stat-source {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #A16207;
  margin-top: 4px;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-it-works-section {
  background-color: #FFFFFF;
}

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

.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #0F1F3D;
  color: #F59E0B;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step-card h3 {
  color: #0F1F3D;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: #64748B;
  font-size: 0.95rem;
}

/* Arrow between steps (desktop only) */
.step-arrow {
  display: none;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  background-color: #F8FAFC;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2rem;
}

.pricing-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #F59E0B;
}

.pricing-card.featured::before {
  content: 'Best Value';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F59E0B;
  color: #0F1F3D;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card-title {
  font-size: 1.125rem;
  color: #0F1F3D;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pricing-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0F1F3D;
  margin-bottom: 0.25rem;
}

.pricing-card-price .price-original {
  font-size: 1.25rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 500;
  margin-right: 8px;
}

.pricing-card-description {
  color: #64748B;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  min-height: 48px;
}

.pricing-cta-button {
  display: inline-block;
  width: 100%;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.pricing-cta-button.primary {
  background-color: #F59E0B;
  color: #0F1F3D;
}

.pricing-cta-button.primary:hover {
  background-color: #D97706;
}

.pricing-cta-button.secondary {
  background-color: #0F1F3D;
  color: #FFFFFF;
}

.pricing-cta-button.secondary:hover {
  background-color: #1A3260;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background-color: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: #F8FAFC;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #E2E8F0;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #1E293B;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 700;
  color: #0F1F3D;
  font-size: 0.9rem;
}

.testimonial-location {
  color: #64748B;
  font-size: 0.8rem;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges-section {
  background-color: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

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

.trust-badge {
  text-align: center;
  padding: 24px 16px;
}

.trust-badge-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.trust-badge-text {
  font-weight: 700;
  color: #0F1F3D;
  font-size: 0.9rem;
}

/* ============================================================
   BEFORE/AFTER PLACEHOLDER
   ============================================================ */
.before-after-section {
  background-color: #FFFFFF;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.before-after-card {
  background-color: #F1F5F9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

.before-after-image-placeholder {
  width: 100%;
  height: 240px;
  background-color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-weight: 600;
  font-size: 0.9rem;
}

.before-after-label {
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.before-after-label.before {
  color: #DC2626;
}

.before-after-label.after {
  color: #16A34A;
}

/* ============================================================
   SERVICE AREA SECTION
   ============================================================ */
.service-area-section {
  background-color: #0F1F3D;
  color: #FFFFFF;
}

.service-area-section h2 {
  color: #FFFFFF;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 1.5rem;
}

.service-area-tag {
  background-color: rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.2s;
}

.service-area-tag:hover {
  background-color: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
  border-color: #F59E0B;
}

/* ============================================================
   SERVICE CARDS (Services page)
   ============================================================ */
.service-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
  margin-bottom: 28px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background-color: #FEF3C7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.service-card-content {
  flex: 1;
}

.service-card-content h3 {
  color: #0F1F3D;
  margin-bottom: 0.5rem;
}

.service-card-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0F1F3D;
  margin-bottom: 0.5rem;
}

.service-card-price .price-note {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748B;
}

.service-card-content p {
  color: #64748B;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card-cta {
  display: inline-block;
  background-color: #0F1F3D;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
}

.service-card-cta:hover {
  background-color: #1A3260;
}

.service-card-cta.accent {
  background-color: #F59E0B;
  color: #0F1F3D;
}

.service-card-cta.accent:hover {
  background-color: #D97706;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background-color: #F8FAFC;
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: #0F1F3D;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #F8FAFC;
}

.faq-question .faq-toggle {
  font-size: 1.25rem;
  color: #F59E0B;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE — OWNER STORY
   ============================================================ */
.owner-story-section {
  background-color: #FFFFFF;
}

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

.owner-photo-placeholder {
  width: 300px;
  height: 360px;
  background-color: #CBD5E1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-weight: 600;
  font-size: 0.9rem;
}

.owner-story-content h2 {
  margin-bottom: 1rem;
}

.owner-story-content p {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.7;
}

/* Brand promise */
.brand-promise-section {
  background-color: #0F1F3D;
  color: #FFFFFF;
  text-align: center;
}

.brand-promise-section h2 {
  color: #FFFFFF;
  font-size: 2rem;
}

.brand-promise-section p {
  color: #CBD5E1;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 1rem auto 0;
}

/* Why it matters */
.why-it-matters-section {
  background-color: #FFFFFF;
}

.why-it-matters-content {
  max-width: 720px;
  margin: 0 auto;
}

.why-it-matters-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
}

/* ============================================================
   BOOKING FORM (Contact page)
   ============================================================ */
.booking-section {
  background-color: #FFFFFF;
}

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

.booking-form {
  background-color: #F8FAFC;
  border-radius: 12px;
  padding: 36px;
  border: 1px solid #E2E8F0;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0F1F3D;
  margin-bottom: 6px;
}

.form-group label .required {
  color: #DC2626;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1E293B;
  background-color: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group .field-error {
  color: #DC2626;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group .field-error.visible {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group .char-counter {
  text-align: right;
  font-size: 0.75rem;
  color: #94A3B8;
  margin-top: 4px;
}

.form-submit-button {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: #F59E0B;
  color: #0F1F3D;
  font-weight: 800;
  font-size: 1.05rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.form-submit-button:hover {
  background-color: #D97706;
  transform: translateY(-1px);
}

.form-success-message {
  display: none;
  background-color: #DCFCE7;
  border: 1px solid #86EFAC;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.form-success-message.visible {
  display: block;
}

.form-success-message h3 {
  color: #166534;
  margin-bottom: 0.5rem;
}

.form-success-message p {
  color: #15803D;
}

/* Booking sidebar */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

.booking-contact-card {
  background-color: #0F1F3D;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}

.booking-contact-card h3 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #CBD5E1;
  font-size: 0.95rem;
}

.booking-contact-item .contact-icon {
  font-size: 1.25rem;
  color: #F59E0B;
}

.booking-service-area-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
}

.booking-service-area-card h4 {
  margin-bottom: 0.75rem;
}

.booking-service-area-card ul li {
  padding: 4px 0;
  color: #64748B;
  font-size: 0.9rem;
}

.booking-service-area-card ul li::before {
  content: '✓ ';
  color: #16A34A;
  font-weight: 700;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0F1F3D 0%, #1A3260 100%);
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #0F1F3D;
  color: #CBD5E1;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-brand h3 span {
  color: #F59E0B;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: #94A3B8;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}

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

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

.footer-bottom p {
  color: #64748B;
  font-size: 0.8rem;
}

.footer-text-note {
  color: #94A3B8;
  font-size: 0.85rem;
}

.footer-text-note a {
  color: #F59E0B;
  font-weight: 600;
}

/* ============================================================
   FLOATING CALL BUTTON (mobile)
   ============================================================ */
.floating-call-button {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: #F59E0B;
  color: #0F1F3D;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.floating-call-button:hover {
  background-color: #D97706;
}

/* ============================================================
   EXIT-INTENT / TIMED POPUP BANNER
   ============================================================ */
.popup-banner-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.popup-banner-overlay.visible {
  display: flex;
}

.popup-banner {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-banner h3 {
  font-size: 1.5rem;
  color: #0F1F3D;
  margin-bottom: 0.75rem;
}

.popup-banner p {
  color: #64748B;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.popup-banner .popup-cta-button {
  display: inline-block;
  background-color: #F59E0B;
  color: #0F1F3D;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.popup-banner .popup-cta-button:hover {
  background-color: #D97706;
}

.popup-close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #94A3B8;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.popup-close-button:hover {
  color: #0F1F3D;
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .owner-story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .owner-photo-placeholder {
    margin: 0 auto;
  }

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

  .booking-sidebar {
    position: static;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .section-padding {
    padding: 56px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-section {
    padding: 56px 0 72px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  /* Header mobile */
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0F1F3D;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    font-size: 1rem;
    padding: 8px 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Trust badges */
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Before/after */
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  /* Service cards */
  .service-card {
    flex-direction: column;
    padding: 28px 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating call button */
  .floating-call-button {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Booking form */
  .booking-form {
    padding: 24px;
  }

  /* Add bottom padding for floating button */
  body {
    padding-bottom: 80px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .popup-banner {
    padding: 32px 24px;
  }
}
