/* =============================================
   FLOOD RESTORATION TORONTO - STYLESHEET
   ============================================= */

:root {
  --blue-dark: #0a1628;
  --blue-mid: #0d2244;
  --blue: #1346a0;
  --blue-light: #1a5ccf;
  --accent: #e84c1e;
  --accent-hover: #c73d12;
  --water: #2a9fd6;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --gray-light: #e8edf5;
  --gray: #8a96a8;
  --text: #1a2332;
  --text-light: #4a5568;
  --topbar-height: 40px;
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s; }

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TOP BAR ---- */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--water);
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.topbar-phone:hover { color: var(--water); }

.topbar-phone svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  height: var(--header-height);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(10,22,40,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
}

.main-nav { margin-left: auto; }

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  border-radius: 6px;
  display: block;
  transition: background 0.2s, color 0.2s;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  background: var(--off-white);
  color: var(--blue);
}

/* Dropdown */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(10,22,40,0.12);
  min-width: 240px;
  padding: 8px 0;
  z-index: 200;
}

.has-dropdown .dropdown.open { display: block; }

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}

.dropdown li a:hover {
  background: var(--off-white);
  color: var(--blue);
}

.header-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.header-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,76,30,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-large {
  padding: 16px 36px;
  font-size: 18px;
  border-radius: 10px;
}

.pulse {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,76,30,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(232,76,30,0); }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,22,40,0.97) 0%, rgba(13,34,68,0.9) 50%, rgba(26,92,207,0.25) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%231346a0' stroke-width='0.5' opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/svg%3E");
}




.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(42,159,214,0.2);
  border: 1px solid rgba(42,159,214,0.5);
  color: var(--water);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}

.hero-trust span::before { content: ''; }

/* ---- URGENCY STRIP ---- */
.urgency-strip {
  background: #fff3ed;
  border-top: 3px solid var(--accent);
  padding: 14px 0;
  text-align: center;
  font-size: 15px;
  color: var(--text);
}

.urgency-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.urgency-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.urgency-link {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

/* ---- SECTIONS ---- */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-header p {
  font-size: 17px;
  color: var(--text-light);
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 32px 24px;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 12px 40px rgba(19,70,160,0.12);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card h3 a {
  color: var(--blue-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.service-card h3 a:hover {
  color: var(--blue-light);
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-light);
  display: block;
  text-decoration: none;
}

.card-link:hover {
  color: var(--blue);
}

/* ---- WHY US ---- */
.why-us {
  background: var(--blue-dark);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.why-content p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.why-list {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
}

.check {
  color: var(--water);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--water);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.5);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* ---- PROCESS ---- */
.process-section {
  background: var(--off-white);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 0 12px;
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 10px;
}

.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.process-arrow {
  font-size: 2rem;
  color: var(--blue-light);
  opacity: 0.4;
  align-self: center;
  padding: 0 8px;
  flex-shrink: 0;
}

/* ---- AREAS ---- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.areas-grid span {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
}

/* ---- FAQ ---- */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--blue-light);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-question.open::after {
  transform: rotate(45deg);
}

.faq-question:hover { background: var(--off-white); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-answer.open { display: block; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}



.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-phone {
  display: inline-block;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  transition: color 0.2s;
}

.footer-phone:hover { color: var(--water); }

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

/* ---- MOBILE STICKY CTA ---- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--accent);
  color: var(--white);
  padding: 16px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.2s;
}

.mobile-call-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mobile-call-btn:hover { background: var(--accent-hover); }

/* ---- PAGE INNER HEADER ---- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 64px 0 48px;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 24px;
}

/* ---- CONTENT SECTIONS ---- */
.content-section {
  padding: 72px 0;
}

.content-section.bg-alt { background: var(--off-white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.two-col p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-icon-block {
  background: var(--off-white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  min-height: 300px;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.feature-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.contact-detail-item h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-detail-item p {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

.contact-detail-item a {
  color: var(--blue);
  font-weight: 700;
  font-size: 20px;
}

.contact-cta-box {
  background: var(--blue-dark);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  text-align: center;
}

.contact-cta-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-cta-box p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.phone-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  text-decoration: none;
  transition: color 0.2s;
}

.phone-big:hover { color: var(--water); }

.phone-big svg { width: 36px; height: 36px; fill: var(--accent); }

/* ---- ABOUT PAGE ---- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.value-icon { font-size: 40px; margin-bottom: 14px; }

.value-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-values { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --topbar-height: 36px; --header-height: 64px; }

  .topbar-item { display: none; }
  .topbar-phone { margin-left: 0; font-size: 13px; }
  .topbar-inner { justify-content: center; }

  .main-nav { display: none; position: fixed; top: calc(var(--topbar-height) + var(--header-height)); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-light); box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 16px 0; }

  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 14px 24px; border-radius: 0; }
  .has-dropdown .dropdown { display: none !important; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: 85vh; }
  .hero-content { padding: 60px 24px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 16px; }
  .hero-cta-group { flex-direction: column; }
  .hero-trust { gap: 12px; font-size: 12px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { display: none; }
  .process-step { max-width: 100%; width: 100%; }

  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .content-icon-block { min-height: 200px; font-size: 80px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > :first-child { grid-column: 1; }

  .about-values { grid-template-columns: 1fr; }

  .mobile-sticky-cta { display: block; }

  body { padding-bottom: 80px; }

  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .btn-large { padding: 14px 24px; font-size: 17px; }
  .contact-cta-box { padding: 28px 20px; }
  .phone-big { font-size: 1.9rem; }
}

/* ---- FLOODING TYPES ---- */
.flooding-types { background: var(--off-white); }

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

.flooding-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s;
  border-left: 4px solid var(--blue-light);
}

.flooding-card:hover {
  box-shadow: 0 8px 32px rgba(19,70,160,0.1);
  transform: translateY(-3px);
}

.flooding-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.flooding-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.flooding-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--white); }

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

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--blue-dark);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray);
}

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

@media (max-width: 768px) {
  .flooding-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ---- FLOOD INFO SECTION ---- */
.flood-info-section { background: var(--white); }

.two-col-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.flood-info-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.flood-info-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.info-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 16px 20px;
}

.info-stat-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.info-stat-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 2px;
}

.info-stat-item span {
  font-size: 13px;
  color: var(--gray);
}

/* ---- INSURANCE SECTION ---- */
.insurance-section { background: var(--off-white); }

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.insurance-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 28px 24px;
}

.insurance-card-highlight {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

.insurance-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.insurance-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.insurance-card-highlight h3,
.insurance-card-highlight p {
  color: var(--white);
}

.insurance-card-highlight p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.88;
}

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

.insurance-list li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.insurance-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gray);
}

@media (max-width: 1024px) {
  .insurance-grid { grid-template-columns: 1fr 1fr; }
  .insurance-card-highlight { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .two-col-home { grid-template-columns: 1fr; gap: 40px; }
  .insurance-grid { grid-template-columns: 1fr; }
  .insurance-card-highlight { grid-column: 1; }
}

/* ---- DAMAGE TIMELINE ---- */
.timeline-section { background: var(--off-white); }

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

.timeline-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  padding: 28px 24px;
  border-top: 4px solid var(--water);
}

.timeline-card-mid {
  border-top-color: #e8a020;
}

.timeline-card-severe {
  border-top-color: var(--accent);
}

.timeline-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.timeline-card-mid .timeline-time { color: #c47a10; }
.timeline-card-severe .timeline-time { color: var(--accent); }

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

.timeline-list li {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.timeline-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-weight: 900;
}

.timeline-card-mid .timeline-list li::before { color: #e8a020; }
.timeline-card-severe .timeline-list li::before { color: var(--accent); }

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

.timeline-cta p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .timeline-grid { grid-template-columns: 1fr; }
}
