/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

a {
  color: #1e5a8e;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0d3d5c;
}

ul {
  list-style-position: inside;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  min-height: 50vh;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.site-header {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.header-logo a {
  color: #1a1a1a;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.logo-text {
  display: inline-block;
}

.main-nav {
  flex: 1;
}

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

.nav-menu li a {
  color: #1a1a1a;
  padding: 0.5rem 0;
  display: block;
  transition: color 0.3s ease;
  font-weight: 600;
}

.nav-menu li a:hover {
  color: #2c7cb5;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #1a1a1a;
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: #1a1a1a;
  left: 0;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  bottom: -8px;
}

.header-contact {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-phone {
  color: #2c7cb5;
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.header-phone:hover {
  color: #1a5a88;
}

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

.site-footer {
  background-color: #0d3d5c;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-nap p {
  margin-bottom: 0.5rem;
}

.footer-phone {
  color: #4db8ff;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-phone:hover {
  color: #80ccff;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #b3d9ff;
}

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

.footer-map-container iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.footer-map p {
  margin-top: 1rem;
}

.footer-map a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-map a:hover {
  color: #4db8ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 0.9rem;
  color: #b3d9ff;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-primary {
  background-color: #1e5a8e;
  color: #fff;
}

.btn-primary:hover {
  background-color: #174872;
  color: #fff;
}

.btn-secondary {
  background-color: #f0f4f8;
  color: #0d3d5c;
  border: 2px solid #0d3d5c;
}

.btn-secondary:hover {
  background-color: #0d3d5c;
  color: #fff;
}

.btn-hero-primary {
  background-color: #ff6b35;
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.btn-hero-primary:hover {
  background-color: #e55a25;
  color: #fff;
}

.btn-hero-secondary {
  background-color: transparent;
  color: #0d3d5c;
  border: 2px solid #0d3d5c;
}

.btn-hero-secondary:hover {
  background-color: #0d3d5c;
  color: #fff;
}

.btn-large {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ========================================
   HERO SECTION (Homepage)
   ======================================== */

.hero-section {
  background: linear-gradient(135deg, #2c7cb5 0%, #1a5a88 100%);
  color: #fff;
  padding: 4rem 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.urgency-badge {
  display: inline-block;
  background-color: rgba(255, 107, 53, 0.95);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.hero-content h1 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  line-height: 1.15;
  font-weight: 800;
}

.hero-subheading {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #e8f4f8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  font-size: 1rem;
}

.btn-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.btn-label {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-number {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #e8f4f8;
}

.badge-icon {
  color: #4db8ff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.hero-image {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                    url('../../images/water damage restoration 1.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #2a6fa0;
  min-height: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #1e5a8e 0%, #0d3d5c 100%);
  color: #fff;
  padding: 3rem 0;
  margin-bottom: 3rem;
}

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

.page-hero-subtitle {
  font-size: 1.1rem;
  color: #e6f2ff;
}

/* ========================================
   SECTIONS
   ======================================== */

.rapid-response-section,
.services-overview-section,
.trust-section,
.process-section,
.service-areas-section,
.testimonials-section,
.content-section {
  padding: 4rem 0;
}

.rapid-response-section {
  background-color: #ffffff;
}

.services-overview-section {
  background: linear-gradient(to bottom, #f8fafb 0%, #ffffff 100%);
}

.trust-section {
  background-color: #ffffff;
}

.process-section {
  background-color: #f8fafb;
}

.service-areas-section {
  background-color: #ffffff;
}

.testimonials-section {
  background-color: #f8fafb;
}

.section-intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #333;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-subtext {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   GRIDS
   ======================================== */

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Services Featured Image */
.services-featured-image {
  max-width: 900px;
  margin: 2rem auto 3rem;
}

.services-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ========================================
   CARDS
   ======================================== */

.response-card,
.service-card,
.trust-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #2c7cb5;
}

.response-card:hover,
.service-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-left-color: #1a5a88;
}

.card-number {
  display: inline-block;
  background: linear-gradient(135deg, #2c7cb5 0%, #1a5a88 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

/* Modern Icon Circle Design */
.card-icon-modern {
  margin-bottom: 1.5rem;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2c7cb5 0%, #1a5a88 100%);
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(44, 124, 181, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.response-card:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(44, 124, 181, 0.4);
}

/* Service Icons (Orange Theme) */
.service-icon-modern {
  margin-bottom: 1.5rem;
}

.icon-circle-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #ff6b35 0%, #e55a25 100%);
  border-radius: 50%;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .icon-circle-service {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.response-card h3,
.service-card h3,
.trust-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.response-card p,
.service-card p,
.trust-card p {
  color: #333;
  line-height: 1.7;
}

/* ========================================
   TRUST STATS (Social Proof Numbers)
   ======================================== */

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.stat-item {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c7cb5;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

/* Expectation Section - Full Width Image + 3-Column Cards */
.expectation-image-container {
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto 3rem;
}

.expectation-image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

/* ========================================
   PROCESS STEPS
   ======================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-top: 4px solid #2c7cb5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.step-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2c7cb5 0%, #1a5a88 100%);
  border-radius: 50%;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(44, 124, 181, 0.3);
}

.step-number-badge {
  display: inline-block;
  background-color: #f0f4f8;
  color: #1a5a88;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #1e5a8e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step h3 {
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: #333;
  line-height: 1.7;
}

/* ========================================
   SERVICE AREAS
   ======================================== */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.areas-list {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  list-style: none;
}

.areas-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.areas-list li:last-child {
  border-bottom: none;
}

.areas-list li::before {
  content: '▸ ';
  color: #2c7cb5;
  font-weight: 700;
  margin-right: 0.5rem;
}

.areas-note {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 1.5rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

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

.testimonial-card {
  background: #f8fafb;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-stars {
  color: #ff9500;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.testimonial-author {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

/* ========================================
   CTA BAND - MODERN SPLIT CARD DESIGN
   ======================================== */

.cta-band {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a25 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Pattern overlay for visual interest */
.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.cta-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* LEFT SIDE: Emergency Messaging */
.cta-left {
  text-align: left;
}

.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff6b35 0%, #e55a25 100%);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
  }
}

.badge-icon {
  font-size: 1.1rem;
  animation: shake 0.5s ease-in-out infinite alternate;
}

@keyframes shake {
  0% { transform: rotate(-5deg); }
  100% { transform: rotate(5deg); }
}

.badge-text {
  font-size: 0.85rem;
}

.cta-left h2 {
  color: #1a1a1a;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-description {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-text {
  color: #1a5a88;
  font-weight: 600;
  font-size: 0.95rem;
}

/* RIGHT SIDE: CTAs */
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a25 100%);
  color: #fff;
  padding: 1.2rem 2rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-cta-secondary {
  background: transparent;
  color: #1a5a88;
  padding: 1rem 2rem;
  border: 2px solid #1a5a88;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: #1a5a88;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 90, 136, 0.2);
}

.btn-cta-secondary .btn-arrow {
  transition: transform 0.3s ease;
}

.btn-cta-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-icon {
  font-size: 1.3rem;
}

.cta-availability {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cta-availability strong {
  color: #1a1a1a;
  font-size: 1.05rem;
}

.availability-subtext {
  color: #666;
  font-size: 0.9rem;
}

.mini-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mini-badge {
  background: #f0f4f8;
  color: #1a5a88;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ========================================
   LEGAL PAGES (Terms & Privacy)
   ======================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.legal-updated {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  color: #1a5a88;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}

.legal-section p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.legal-section ul {
  margin: 1rem 0 1rem 2rem;
  color: #333;
}

.legal-section li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

/* ========================================
   SITEMAP PAGE
   ======================================== */

.sitemap-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.sitemap-section {
  margin-bottom: 4rem;
}

.sitemap-section h2 {
  color: #1a5a88;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #2c7cb5;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sitemap-list a {
  color: #1a5a88;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.sitemap-list a:hover {
  color: #2c7cb5;
}

.sitemap-list p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.sitemap-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.sitemap-service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #ff6b35;
}

.sitemap-service-card h3 {
  color: #1a1a1a;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.sitemap-service-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

.sitemap-cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.sitemap-city {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  text-align: center;
  color: #1a5a88;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-wrapper {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.thank-you-icon {
  text-align: center;
  margin-bottom: 2rem;
}

.checkmark-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.checkmark {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
}

.next-steps-card {
  background: #f8fafb;
  padding: 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2c7cb5 0%, #1a5a88 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(44, 124, 181, 0.3);
}

.step-content h3 {
  color: #1a5a88;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.step-content p {
  color: #333;
  line-height: 1.6;
}

.emergency-help-box {
  background: #fff;
  border: 3px solid #ff6b35;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 3rem;
}

.quick-links-section {
  margin: 3rem 0;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.quick-link-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.quick-link-card:hover {
  border-color: #2c7cb5;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.quick-link-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.quick-link-card h3 {
  color: #1a1a1a;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.quick-link-arrow {
  color: #2c7cb5;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
  display: inline-block;
}

.quick-link-card:hover .quick-link-arrow {
  transform: translateX(8px);
}

/* ========================================
   NEWSLETTER PAGE
   ======================================== */

.newsletter-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 3rem 0;
  align-items: start;
}

.newsletter-form-card {
  background: #fff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border: 2px solid #2c7cb5;
  position: sticky;
  top: 100px;
}

.newsletter-form {
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: #2c7cb5;
}

.form-group-checkbox {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.form-group-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-group-checkbox label {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.newsletter-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #2c7cb5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: #1a1a1a;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ========================================
   BLOG GRID & CARDS
   ======================================== */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.blog-image {
  position: relative;
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #1a5a88;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 10;
}

.blog-content {
  padding: 2rem;
}

.blog-content h2 {
  color: #1a1a1a;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.blog-excerpt {
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.blog-topic {
  background: #f0f4f8;
  color: #1a5a88;
  padding: 0.4rem 0.9rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ========================================
   LOCATIONS GRID
   ======================================== */

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

.location-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-top: 3px solid #2c7cb5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.location-card h3 {
  color: #1a1a1a;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.location-card p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.location-card p strong {
  color: #1a5a88;
  font-weight: 700;
}

.location-primary {
  border-top: 3px solid #ff6b35;
  background: linear-gradient(135deg, #fff9f6 0%, #fff 100%);
}

.location-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #e55a25 100%);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* ========================================
   SERVICE DETAIL SECTIONS
   ======================================== */

.service-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 4px solid #2c7cb5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-detail-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}

.detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35 0%, #e55a25 100%);
  border-radius: 50%;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.service-detail-content h3 {
  color: #1a1a1a;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-detail-content h4 {
  color: #1a5a88;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-detail-content .service-intro {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-detail-content ul {
  margin: 1rem 0 1rem 1.5rem;
  color: #333;
}

.service-detail-content li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.service-detail-content li strong {
  color: #1a5a88;
}

/* ========================================
   CONTACT/MAP
   ======================================== */

.contact-map-section {
  padding: 4rem 0;
  background-color: #f8fafb;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block h3 {
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e5a8e;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ========================================
   FLOATING CALL BUTTON
   ======================================== */

/* Floating Call Button Pulse Animation */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

#floating-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 78px;
  height: 78px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  animation: pulse-ring 2s infinite;
}

#floating-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(220, 53, 69, 0.7);
  color: #fff;
  animation: none;
}

#floating-call-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

#floating-call-btn .phone-number {
  font-size: 0.65rem;
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
  display: none;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 300px;
  }

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

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

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

  .expectation-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

  .newsletter-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .newsletter-form-card {
    position: static;
  }

  /* CTA Band Tablet */
  .cta-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .cta-left h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .header-container {
    flex-wrap: wrap;
  }

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

  .header-logo {
    order: 1;
    flex: 1;
  }

  .header-contact {
    order: 2;
  }

  .main-nav {
    order: 4;
    width: 100%;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    padding: 1rem 0;
    gap: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: #1a1a1a;
  }

  .nav-menu li a:hover {
    background-color: #f8fafb;
    color: #2c7cb5;
  }

  .hero-trust-badges {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-hero-primary {
    width: 100%;
    justify-content: center;
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

  .response-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .expectation-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sitemap-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sitemap-cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .step-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .trust-grid,
  .process-steps,
  .testimonials-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  /* Service Detail Mobile */
  .service-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .service-detail-icon {
    justify-content: flex-start;
    padding-top: 0;
  }

  .detail-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .service-detail-content h3 {
    font-size: 1.5rem;
  }

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

  .header-contact .header-phone {
    display: none;
  }

  #floating-call-btn {
    width: 68px;
    height: 68px;
    font-size: 1.75rem;
    bottom: 20px;
    right: 20px;
  }

  #floating-call-btn svg {
    width: 28px;
    height: 28px;
  }

  #floating-call-btn .phone-number {
    display: block;
    font-size: 0.6rem;
  }

  .btn-hero-primary,
  .btn-large {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  /* CTA Band Mobile */
  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-left h2 {
    font-size: 1.5rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .trust-points {
    align-items: center;
  }

  .trust-point {
    justify-content: center;
  }

  .btn-cta-primary {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }

  .btn-cta-secondary {
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
  }

  .mini-badges {
    flex-direction: column;
    align-items: center;
  }

  .mini-badge {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .logo-img {
    height: 60px;
  }

  .urgency-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

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

  .btn-number {
    font-size: 1.15rem;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .hero-section,
  .page-hero {
    padding: 2rem 0;
  }

  .rapid-response-section,
  .services-overview-section,
  .trust-section,
  .process-section,
  .service-areas-section,
  .testimonials-section,
  .content-section {
    padding: 2rem 0;
  }

  .response-card,
  .service-card,
  .trust-card {
    padding: 1.5rem;
  }
}
