
/* Divider */

.section-divider {
  line-height: 0;
  position: relative;
  overflow: hidden;
  height: 100px;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Default: vertical flip (as used on most dividers) */
.section-divider svg {
  transform: rotate(180deg);
}

/* Flip horizontally (for Hero → Services divider) */
.section-divider.flipped-horizontal svg {
  transform: scaleX(-1);
}

/* NO flip (for Damages → Why Choose Us) */
.section-divider.no-flip svg {
  transform: none;
}


/* Claim IMG Section */

.claim-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
}

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

.claim-tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  display: block;
  text-decoration: none;
}

.claim-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.claim-tile:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 34, 56, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.overlay span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

/* CTA Button */
.claim-grid-cta {
  text-align: center;
  margin-bottom: 4rem;
}

.view-all-button {
  display: inline-block;
  background: #1a2238;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.view-all-button:hover {
  background: #2c3556;
}



/* Damage Section */

.damage-types {
  background: #f0f4f9;
  padding: 1rem 1rem;
  text-align: center;
}

.damage-types h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a2238;
}

.damage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}

.damage-grid li {
  background: #f0f4f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.damage-grid li:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: #0077cc;
}

.damage-grid i {
  font-size: 2rem;
  color: #1a2238;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.damage-grid li:hover i {
  color: #0077cc;
}

.damage-grid span {
  font-weight: 500;
  font-size: 1rem;
  color: #1a2238;
}

/* View All Button */
.view-all-damage {
  margin-top: 2.5rem;
  text-align: center;
}

.view-all-button {
  background: #1a2238;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.view-all-button:hover {
  background: #0077cc;
}

/* Responsive Grid Columns */
@media (min-width: 480px) {
  .damage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .damage-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .damage-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Why Chose Us */

.why-section {
  background: #f8f8f8;
  color: #1a2238;
  padding: 0 0 2rem;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.why-headline {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  color: #1a2238;
}

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

.why-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.why-benefits i {
  color: #1a2238;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.why-benefits li:hover i {
  transform: scale(1.15);
  color: #2c3f75;
}

.why-benefits p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  color: #1a2238;
}

.why-benefits strong {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2238;
  margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .why-benefits p {
    font-size: 1.25rem;
  }

  .why-benefits strong {
    font-size: 1.5rem;
  }
}


