/* ==========================================================================
   JD BOND CLEANING BRISBANE - CSS DESIGN SYSTEM (VERSION 1)
   Ultra-Clean, Modern, High-Converting Web Architecture
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BRAND COLOR & TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */
:root {
  --primary-red: #E51E2B;
  --primary-red-dark: #B71C1C;
  --primary-red-hover: #C61521;
  --primary-gradient: linear-gradient(135deg, #E51E2B 0%, #B71C1C 100%);
  --secondary-dark: #0F172A;
  --secondary-slate: #1E293B;
  --card-bg: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --accent-gold: #F59E0B;
  --accent-green: #10B981;
  --border-color: #E2E8F0;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(229, 30, 43, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-red {
  color: var(--primary-red) !important;
}

.text-gold {
  color: var(--accent-gold) !important;
}

/* --------------------------------------------------------------------------
   3. TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--secondary-dark);
  color: var(--text-light);
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.info-item i {
  color: var(--primary-red);
}

.info-item a:hover {
  color: var(--primary-red);
  text-decoration: underline;
}

.badge-guarantee {
  background: rgba(229, 30, 43, 0.15);
  color: #FF6B6B;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  border: 1px solid rgba(229, 30, 43, 0.3);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   4. MAIN HEADER & NAVIGATION WITH DROPDOWN
   -------------------------------------------------------------------------- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.brand-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.mobile-menu-header {
  display: none;
}


.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary-dark);
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-red);
}

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

/* Nav Dropdown Styling */
.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--primary-red);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 270px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--border-color);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary-dark);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.dropdown-item i {
  font-size: 1rem;
}

.dropdown-item:hover {
  background-color: rgba(229, 30, 43, 0.06);
  color: var(--primary-red);
  transform: translateX(4px);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-cta {
  display: none;
}

/* Mobile Burger Toggle */
.mobile-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background-color: var(--secondary-dark);
  color: #FFFFFF;
  border: 2px solid var(--primary-red);
  padding: 8px 16px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(229, 30, 43, 0.25);
  transition: all 0.25s ease;
}

.mobile-toggle i {
  color: var(--primary-red);
  font-size: 1.1rem;
}

.mobile-toggle:hover {
  background-color: var(--primary-red);
  color: #FFFFFF;
}

.mobile-toggle:hover i {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   5. BUTTON STYLES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(229, 30, 43, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.08);
}

.btn-secondary {
  background-color: var(--secondary-dark);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: var(--primary-red);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: #FFFFFF;
  color: var(--secondary-dark);
}

.btn-call-lg {
  background-color: #FFFFFF;
  color: var(--primary-red);
  font-size: 1.1rem;
  padding: 16px 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-call-lg:hover {
  background-color: var(--secondary-dark);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-light-lg {
  background-color: #FFFFFF;
  color: var(--primary-red);
  font-size: 1.05rem;
  padding: 16px 32px;
}

.btn-light-lg:hover {
  background-color: var(--secondary-dark);
  color: #FFFFFF;
  transform: scale(1.03);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION & FORM CARD
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-image: url('hero_bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px;
  color: #FFFFFF;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.93) 0%, rgba(15, 23, 42, 0.82) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 30, 43, 0.2);
  color: #FF8A8A;
  border: 1px solid rgba(229, 30, 43, 0.4);
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
}

.highlight-red {
  color: var(--primary-red);
  position: relative;
}

.hero-description {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-pill i {
  color: var(--primary-red);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Form Card */
.hero-form-card {
  background: #FFFFFF;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  padding: 30px;
  border: 1px solid var(--border-color);
}

.hero-form-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.hero-form-icon {
  font-size: 1.8rem;
  color: var(--primary-red);
  background: rgba(229, 30, 43, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary-dark);
}

.hero-form-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-form-card .form-group {
  margin-bottom: 16px;
}

.hero-form-card label {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary-dark);
  margin-bottom: 6px;
}

.hero-form-card label i {
  color: var(--primary-red);
  margin-right: 4px;
}

.hero-form-card input, .hero-form-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  background-color: var(--bg-light);
  transition: all 0.2s ease;
}

.hero-form-card input:focus, .hero-form-card select:focus {
  border-color: var(--primary-red);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(229, 30, 43, 0.12);
}

.hero-submit-btn {
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   7. FEATURES STRIP
   -------------------------------------------------------------------------- */
.features-strip {
  background-color: var(--secondary-dark);
  color: #FFFFFF;
  padding: 30px 0;
  border-bottom: 4px solid var(--primary-red);
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  background: rgba(229, 30, 43, 0.15);
  color: var(--primary-red);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* --------------------------------------------------------------------------
   8. ABOUT US SECTION
   -------------------------------------------------------------------------- */
.about-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: var(--primary-gradient);
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 10px 25px rgba(229, 30, 43, 0.4);
}

.exp-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  display: block;
  line-height: 1;
}

.exp-text {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  background-color: var(--bg-light);
  padding: 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-color);
}

.stat-box i {
  font-size: 1.6rem;
  color: var(--primary-red);
}

.stat-box strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-dark);
}

.stat-box span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. SECTION HEADERS - STRICTLY CENTER ALIGNED FOR ALL SECTIONS
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 50px;
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-subtitle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-align: center !important;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary-dark);
  margin-bottom: 15px;
line-height: 1.4  ;
  width: 100%;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto !important;
  color: var(--text-muted);
  font-size: 1.02rem;
  text-align: center !important;
}

/* --------------------------------------------------------------------------
   10. WHAT WE OFFER SECTION (2 LINE EXCERPT + SHOW MORE BUTTON)
   -------------------------------------------------------------------------- */
.services-section {
  padding: 90px 0;
  background-color: var(--bg-light);
}

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

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 10;
  text-transform: uppercase;
}

.service-img-wrapper {
  position: relative;
  height: 210px;
  overflow: hidden;
}

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

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

.service-tag-icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: var(--secondary-dark);
  color: var(--primary-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-content {
  padding: 35px 25px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary-dark);
}

/* 2 Line Clamped Excerpt */
.service-excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}

.service-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
}

/* --------------------------------------------------------------------------
   11. CHECKLIST CTA SECTION
   -------------------------------------------------------------------------- */
.checklist-cta-section {
  padding: 40px 0;
}

.checklist-cta-box {
  background: var(--primary-gradient);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-lg);
}

.badge-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   12. AREAS WE SERVICE SECTION (5 PER ROW DESKTOP, 2 PER ROW MOBILE EQUAL WIDTH)
   -------------------------------------------------------------------------- */
.suburbs-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.suburbs-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: 100%;
}

.suburbs-grid-5 .suburb-chip {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 12px 10px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--secondary-dark);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  box-sizing: border-border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suburbs-grid-5 .suburb-chip i {
  color: var(--primary-red);
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.suburbs-grid-5 .suburb-chip:hover {
  background-color: var(--secondary-dark);
  color: #FFFFFF;
  border-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.suburbs-grid-5 .suburb-chip:hover i {
  color: #FFFFFF;
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   13. REVIEWS SECTION
   -------------------------------------------------------------------------- */
.reviews-section {
  padding: 90px 0;
  background-color: var(--bg-light);
}

.google-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  margin-top: 15px;
}

.google-icon {
  font-size: 1.5rem;
  color: #4285F4;
}

.rating-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
}

.stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.review-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

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

.review-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--secondary-dark);
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   14. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 90px 0;
}

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

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: #FFFFFF;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.25s ease;
}

.faq-arrow {
  transition: transform 0.3s ease;
  color: var(--primary-red);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--bg-light);
}

.faq-answer p {
  padding: 20px 25px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

/* --------------------------------------------------------------------------
   15. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section-red {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, #B71C1C 0%, #7F0000 100%);
  color: #FFFFFF;
  overflow: hidden;
}

.contact-pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}

.contact-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-info-card-red h3 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-info-card-red p {
  font-size: 1.05rem;
  opacity: 0.9;
}

.contact-detail-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cd-item-red {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cd-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.cd-item-red strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}

.cd-item-red a, .cd-item-red span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.cd-item-red a:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--secondary-dark);
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--secondary-dark);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  outline: none;
  background-color: var(--bg-light);
  transition: border-color 0.2s ease;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  box-sizing: border-box;
}

.form-group select {
  height: 48px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-red);
  background-color: #FFFFFF;
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* --------------------------------------------------------------------------
   16. FOOTER STYLES
   -------------------------------------------------------------------------- */
.main-footer {
  background-color: #0A0F1D;
  color: #94A3B8;
  padding-top: 70px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 48px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--primary-red);
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  padding: 25px 0;
  font-size: 0.8rem;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   17. MODAL OVERLAYS & CHECKLIST DRAWER
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  padding: 35px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-subtle);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.modal-icon {
  font-size: 2rem;
  color: var(--primary-red);
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Checklist Drawer Specific */
.checklist-modal-card {
  max-width: 800px;
}

.checklist-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 20px;
  overflow-x: auto;
}

.cl-tab {
  background: none;
  border: none;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cl-tab.active {
  color: var(--primary-red);
  border-bottom-color: var(--primary-red);
}

.cl-panel {
  display: none;
}

.cl-panel.active {
  display: block;
}

.cl-panel h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--secondary-dark);
}

.cl-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cl-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-light);
  padding: 10px 14px;
  border-radius: 6px;
}

.cl-list li i {
  color: var(--accent-green);
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE BREAKPOINTS & MOBILE GRID (2 PER ROW ON MOBILE)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container, .about-container {
    grid-template-columns: 1fr;
  }
  .services-grid, .reviews-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .suburbs-grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .checklist-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .desktop-only-btn {
    display: none !important;
  }
  .mobile-toggle {
    display: inline-flex !important;
  }
  
  /* Mobile Sliding Drawer Menu Layout */
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    gap: 15px;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 20px 0 40px rgba(15, 23, 42, 0.15);
    overflow-y: auto;
    z-index: 1100;
  }
  
  .nav-menu.active {
    left: 0;
  }

  /* Drawer Header */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 10px;
  }

  .mobile-menu-title {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--secondary-dark);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
  }

  .mobile-close-btn:hover {
    color: var(--primary-red);
  }

  /* Navigation overlay backdrop */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1099;
  }

  .nav-overlay.active {
    display: block;
  }

  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-dropdown {
    width: 100%;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    width: 100%;
    padding-left: 15px;
    display: none;
    background-color: var(--bg-light);
    margin-top: 8px;
    border-radius: var(--radius-sm);
  }

  .nav-dropdown.show .dropdown-menu {
    display: block;
  }

  .mobile-nav-cta {
    display: block;
    width: 100%;
    margin-top: 15px;
  }

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

@media (max-width: 768px) {
  .top-info .desktop-only {
    display: none;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .services-grid, .reviews-grid, .footer-grid, .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cl-list {
    grid-template-columns: 1fr;
  }
  .suburbs-grid-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
}

/* ==========================================================================
   GALLERY & LIGHTBOX SHOWCASE SYSTEM (ADAPTED FOR JD BRAND)
   ========================================================================== */
.gallery-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.gallery-filter-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  background-color: #FFFFFF;
  border: 1.5px solid var(--border-color);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.gallery-filter-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red-hover);
  transform: translateY(-1px);
}

.gallery-filter-btn.active {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  transition: opacity 0.3s ease;
}

.gallery-item {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #eaeaea;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

.gallery-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0) 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-img-overlay {
  opacity: 1;
}

.gallery-view-icon {
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  color: var(--primary-red-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
}

.gallery-item:hover .gallery-view-icon {
  opacity: 1;
  transform: translateY(0);
}

.gallery-info {
  padding: 22px;
  border-top: 1px solid var(--bg-subtle);
}

.gallery-item-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-red-dark);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Lightbox Modal */
.bc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.bc-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.bc-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10010;
}

.bc-lightbox-close:hover {
  background-color: var(--primary-red);
  transform: rotate(90deg);
}

.bc-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10010;
  user-select: none;
}

.bc-lightbox-arrow:hover {
  background-color: var(--primary-red);
  color: #FFFFFF;
}

.bc-lightbox-arrow.prev {
  left: 24px;
}

.bc-lightbox-arrow.next {
  right: 24px;
}

.bc-lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-lightbox.active .bc-lightbox-content {
  transform: scale(1);
}

.bc-lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bc-lightbox-img.loaded {
  opacity: 1;
}

.bc-lightbox-caption {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  text-align: center;
  color: #FFFFFF;
  z-index: 10010;
}

.bc-lightbox-caption h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.bc-lightbox-caption span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-red);
  letter-spacing: 1px;
}

.bc-lightbox-spinner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-red);
  animation: bcSpin 0.8s linear infinite;
  display: none;
}

@keyframes bcSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .bc-lightbox-arrow {
    width: 44px;
    height: 44px;
  }
  .bc-lightbox-arrow.prev {
    left: 12px;
  }
  .bc-lightbox-arrow.next {
    right: 12px;
  }
  .bc-lightbox-close {
    top: 12px;
    right: 12px;
  }
}

.inner-hero-container {
  position: relative;
  z-index: 2;
  display: block !important;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   CHECKLIST GRID COMPONENT STYLES (ADAPTED FOR JD)
   ========================================================================== */
:root {
  --accent-general: #0891b2;
  --accent-kitchen: #d97706;
  --accent-bath: #db2777;
  --accent-laundry: #059669;
}

.checklist-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  width: 100%;
  padding: 40px 0;
}

.checklist-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

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

.checklist-card.card-general {
  border-top: 4px solid var(--accent-general);
}

.checklist-card.card-kitchen {
  border-top: 4px solid var(--accent-kitchen);
}

.checklist-card.card-bath {
  border-top: 4px solid var(--accent-bath);
}

.checklist-card.card-laundry {
  border-top: 4px solid var(--accent-laundry);
}

.card-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-bottom: 1px solid var(--bg-subtle);
}

.header-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-general .header-icon {
  background: rgba(8, 145, 178, 0.1);
  color: var(--accent-general);
}

.card-kitchen .header-icon {
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent-kitchen);
}

.card-bath .header-icon {
  background: rgba(219, 39, 119, 0.1);
  color: var(--accent-bath);
}

.card-laundry .header-icon {
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent-laundry);
}

.header-icon svg {
  width: 20px;
  height: 20px;
}

.header-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.item-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-subtle);
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  display: inline-block;
  margin-top: 0.125rem;
}

.card-content {
  padding: 1.25rem 1.5rem;
}

.task-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.task-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.task-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.task-icon svg {
  width: 18px;
  height: 18px;
}

.card-general .task-icon {
  color: var(--accent-general);
}

.card-kitchen .task-icon {
  color: var(--accent-kitchen);
}

.card-bath .task-icon {
  color: var(--accent-bath);
}

.card-laundry .task-icon {
  color: var(--accent-laundry);
}

.task-text {
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.45;
}

/* ==========================================================================
   9. RICH CONTENT CUSTOM FORMATTING FOR SERVICE PAGES
   ========================================================================== */
.rich-text-content {
  font-family: var(--font-body);
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
}

.rich-text-content h1,
.rich-text-content h2,
.rich-text-content h3,
.rich-text-content h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--secondary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.rich-text-content h2 {
  font-size: 1.8rem;
  border-left: 4px solid var(--primary-red);
  padding-left: 15px;
  margin-top: 2.5rem;
}

.rich-text-content h3 {
  font-size: 1.35rem;
  color: var(--primary-red-hover);
  font-weight: 700;
  margin-top: 1.75rem;
}

.rich-text-content p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.rich-text-content strong {
  color: var(--secondary-dark);
}

/* Service Info Grid */
.rich-text-content .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.rich-text-content .service-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.rich-text-content .service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(229, 30, 43, 0.2);
}

.rich-text-content .service-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--secondary-dark);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rich-text-content .service-card p {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.6;
}

/* Checklist Blocks */
.rich-text-content .checklist-block {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 25px;
  margin: 25px 0;
  box-shadow: var(--shadow-sm);
}

.rich-text-content .checklist-block h4 {
  margin-top: 0;
  color: var(--secondary-dark);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.rich-text-content .checklist-block ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.rich-text-content .checklist-block li {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 22px !important;
  line-height: 1.5;
  margin-bottom: 0 !important;
}

.rich-text-content .checklist-block li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-red);
  font-size: 0.85rem;
}

/* Accordion FAQs using details and summary */
.rich-text-content details.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: #fff;
  transition: all 0.25s ease;
}

.rich-text-content details.faq-item[open] {
  border-color: rgba(229, 30, 43, 0.3);
  box-shadow: var(--shadow-sm);
}

.rich-text-content details.faq-item summary {
  padding: 15px 20px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--secondary-dark);
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rich-text-content details.faq-item summary::-webkit-details-marker {
  display: none;
}

.rich-text-content details.faq-item summary::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-red);
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.rich-text-content details.faq-item[open] summary::after {
  content: "\f068";
}

.rich-text-content details.faq-item .faq-content {
  padding: 0 20px 15px 20px;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--bg-subtle);
  padding-top: 15px;
}

/* Default rich text lists */
.rich-text-content ul:not(.checklist-block ul) {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.rich-text-content ul:not(.checklist-block ul) li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.rich-text-content ul:not(.checklist-block ul) li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-red);
  font-size: 0.85rem;
}

.rich-text-content ol {
  padding-left: 20px;
  margin: 1.5rem 0;
}

.rich-text-content ol li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Default rich text tables */
.rich-text-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.925rem;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.rich-text-content table th {
  background-color: var(--secondary-dark);
  color: #fff;
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.rich-text-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}

.rich-text-content table tr:nth-child(even) {
  background-color: var(--bg-light);
}

.rich-text-content table tr:hover {
  background-color: var(--bg-subtle);
}

/* Default rich text blockquotes */
.rich-text-content blockquote {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-red);
  padding: 20px;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Responsive Service Details Page Layout */
.service-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px 20px !important;
}

@media (min-width: 992px) {
  .service-page-layout {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 20px !important;
  }
}

/* Global Nav Overlay Hidden on Desktop */
.nav-overlay {
  display: none;
}








