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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #172331;
  background: #ffffff;
}

a {
  text-decoration: none;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #09243c;
  color: #ffffff;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e1e8ee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  font-size: 25px;
  font-weight: 800;
  color: #09243c;
}

.logo span {
  color: #168ac2;
}

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

.nav a {
  color: #273746;
  font-weight: 600;
  font-size: 15px;
}

.nav a:hover {
  color: #168ac2;
}

.header-phone {
  background: #168ac2;
  color: #ffffff !important;
  padding: 11px 18px;
  border-radius: 5px;
}

.hero {
  background: linear-gradient(90deg, rgba(4,24,40,.93) 0%, rgba(4,24,40,.84) 48%, rgba(4,24,40,.45) 100%), url("wet-ceiling-repair-hero.jpg") center/cover no-repeat;
  color: #ffffff;
  padding: 95px 0 105px;
}

.hero-content {
  max-width: 730px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  font-weight: 700;
  color: #74d1ff;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -1.8px;
}

.hero p {
  max-width: 680px;
  font-size: 20px;
  color: #e7f1f6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 5px;
  font-weight: 700;
  transition: .2s ease;
}

.btn-primary {
  background: #169fd7;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0f87b8;
}

.btn-light {
  background: #ffffff;
  color: #09243c;
}

.btn-light:hover {
  background: #eaf4f8;
}

.hero-points {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  font-size: 15px;
  color: #eff9fd;
}

.hero-points span::before {
  content: "✓";
  color: #67d5ff;
  font-weight: 800;
  margin-right: 7px;
}

.problem-strip {
  background: #f0f8fc;
  border-bottom: 1px solid #dceaf1;
  padding: 28px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.problem-item strong {
  display: block;
  color: #09243c;
  margin-bottom: 2px;
}

.problem-item span {
  font-size: 14px;
  color: #5b6b77;
}

section {
  padding: 85px 0;
}

.section-light {
  background: #f7fafc;
}

.section-dark {
  background: #082238;
  color: #ffffff;
}

.section-title {
  max-width: 760px;
  margin-bottom: 45px;
}

.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  color: #09243c;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.section-dark h2 {
  color: #ffffff;
}

.section-title p {
  font-size: 18px;
  color: #596b79;
}

.section-dark .section-title p {
  color: #c9dce7;
}

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

.content p {
  margin-bottom: 18px;
  color: #536573;
  font-size: 17px;
}

.content h2 {
  margin-bottom: 20px;
}

.image-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(17,45,64,.15);
  background: #d7e2e8;
  min-height: 430px;
}

.image-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.warning-box {
  background: #fff8e8;
  border-left: 4px solid #e7a51f;
  padding: 18px 20px;
  border-radius: 4px;
  margin-top: 25px;
  color: #57461f;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid #e0e8ed;
  border-radius: 10px;
  padding: 30px;
  transition: .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(12,42,62,.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e6f5fb;
  color: #1289ba;
  font-size: 21px;
  margin-bottom: 20px;
  font-weight: 800;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #09243c;
}

.service-card p {
  color: #62727e;
  font-size: 15.5px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 30px 25px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 9px;
}

.process-number {
  font-size: 38px;
  font-weight: 800;
  color: #57c8f7;
  margin-bottom: 15px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.process-step p {
  color: #bdd2dd;
  font-size: 15px;
}

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

.damage-card {
  padding: 26px;
  border: 1px solid #dfe8ed;
  border-radius: 9px;
  background: #ffffff;
}

.damage-card h3 {
  color: #09243c;
  font-size: 20px;
  margin-bottom: 8px;
}

.damage-card p {
  color: #61717d;
  font-size: 15.5px;
}

.check-list {
  margin: 25px 0;
}

.check-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  color: #4e626f;
}

.check-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #1396c9;
}

.cta-band {
  background: #1394c8;
  color: #ffffff;
  padding: 55px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.cta-inner h2 {
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 34px;
}

.cta-inner p {
  color: #e8f8ff;
  font-size: 17px;
}

.cta-band .btn-light {
  white-space: nowrap;
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #dce5ea;
  padding: 24px 0;
}

.faq-item h3 {
  color: #09243c;
  font-size: 20px;
  margin-bottom: 10px;
}

.faq-item p {
  color: #5c6d79;
}

.contact-section {
  background: #071e31;
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 65px;
  align-items: start;
}

.contact-copy h2 {
  color: #ffffff;
}

.contact-copy p {
  color: #c0d4df;
  margin-bottom: 20px;
  font-size: 17px;
}

.contact-detail {
  margin-top: 25px;
}

.contact-detail strong {
  display: block;
  color: #6fd4ff;
  margin-bottom: 3px;
}

.contact-form {
  background: #ffffff;
  border-radius: 10px;
  padding: 35px;
}

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

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

.form-group label {
  display: block;
  color: #1c3444;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid #ccd9e0;
  border-radius: 5px;
  padding: 13px 14px;
  font: inherit;
  color: #203746;
  background: #ffffff;
}

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

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}

footer {
  background: #041522;
  color: #9eb4c1;
  padding: 38px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer-logo {
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
}

footer a {
  color: #b8ccd7;
}

@media (max-width: 950px) {
  .nav {
    display: none;
  }
}

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

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

@media (max-width: 950px) {
  .two-column, .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 950px) {
  .image-card {
    min-height: 340px;
  }
}

@media (max-width: 950px) {
  .image-card img {
    height: 340px;
  }
}

@media (max-width: 650px) {
  .topbar {
    font-size: 12px;
  }
}

@media (max-width: 650px) {
  .header-inner {
    min-height: 65px;
  }
}

@media (max-width: 650px) {
  .logo {
    font-size: 20px;
  }
}

@media (max-width: 650px) {
  .hero {
    padding: 70px 0 75px;
  }
}

@media (max-width: 650px) {
  .hero p {
    font-size: 18px;
  }
}

@media (max-width: 650px) {
  section {
    padding: 65px 0;
  }
}

@media (max-width: 650px) {
  .problem-grid, .services-grid, .damage-grid, .process, .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .cta-inner, .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .contact-form {
    padding: 25px 20px;
  }
}

