/* Pro Water Damage Restoration Service Pickering - Stylesheet */

:root {
  --navy: #0b2747;
  --navy-dark: #061a35;
  --blue: #2f6fb5;
  --blue-muted: #4a86c5;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #d9e0e8;
  --gray-500: #6b7785;
  --gray-700: #3b4654;
  --white: #ffffff;
  --shadow: 0 4px 14px rgba(11, 39, 71, 0.08);
  --radius: 6px;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.6em;
}

h1 { font-size: 2.1rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Top bar */
.topbar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--gray-200); text-decoration: none; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
}
.brand-sub {
  color: var(--gray-500);
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gray-200);
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--blue);
  text-decoration: none;
}
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius);
  border: none !important;
}
.nav-cta:hover {
  background: var(--blue);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(rgba(6, 26, 53, 0.72), rgba(6, 26, 53, 0.62)), url('../images/hero.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 90px 0 100px;
}
.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  max-width: 780px;
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 720px;
  color: #e8eef6;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 0.95rem;
  color: #d8e1ef;
}
.hero-meta span::before {
  content: "•";
  margin-right: 8px;
  color: var(--blue-muted);
}

/* Page header (smaller hero on inner pages) */
.page-header {
  background: linear-gradient(rgba(6, 26, 53, 0.85), rgba(6, 26, 53, 0.85)), url('../images/hero.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.page-header p { color: #d8e1ef; margin: 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.15s ease-in-out;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
}
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
section { padding: 70px 0; }
section.alt { background: var(--gray-50); }

.section-title {
  text-align: center;
  margin-bottom: 14px;
}
.section-intro {
  text-align: center;
  color: var(--gray-500);
  max-width: 680px;
  margin: 0 auto 50px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}
.card p { margin: 0; color: var(--gray-700); }

/* Service cards with image */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 22px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--gray-700); font-size: 0.95rem; }

/* Why us */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 50%;
}
.feature-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 19px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Two column with image */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Service area */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* CTA strip */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 50px 0;
}
.cta-strip h2 { color: var(--white); margin-bottom: 8px; }
.cta-strip p { color: #cdd7e6; margin-bottom: 24px; }

/* Contact info */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-info-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

/* Form */
.contact-form .form-row {
  margin-bottom: 16px;
}
.contact-form label {
  display: block;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--gray-700);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 111, 181, 0.12);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  display: none;
}
.form-status.success {
  display: block;
  background: #e8f5ec;
  color: #1d6b3a;
  border: 1px solid #c8e7d2;
}

/* Map */
.map-wrap {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #b9c4d4;
  padding: 50px 0 20px;
  font-size: 0.92rem;
}
.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.site-footer a { color: #b9c4d4; }
.site-footer a:hover { color: var(--white); text-decoration: none; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 4px 0; }
.footer-bottom {
  border-top: 1px solid #1a3358;
  padding-top: 18px;
  text-align: center;
  color: #8896aa;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  h1 { font-size: 1.7rem; }
  .hero { padding: 60px 0 70px; }
  .hero h1 { font-size: 1.9rem; }
  .hero p.lead { font-size: 1rem; }
  section { padding: 50px 0; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    margin-top: 14px;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav ul li {
    border-bottom: 1px solid var(--gray-100);
  }
  .main-nav a {
    display: block;
    padding: 12px 0;
  }
  .site-header .container { flex-wrap: wrap; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .topbar .container { justify-content: center; text-align: center; }
}
