/* Tampa Pool Cage Repairs — styles.css */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
}

a { color: #1a6b1a; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TOP BAR ── */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar .phone {
  font-size: 26px;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: 1px;
}

.top-bar nav a {
  margin-left: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  border-radius: 3px;
}

.top-bar nav a:hover, .top-bar nav a.active {
  background: #1a6b1a;
  color: #fff;
  text-decoration: none;
}

/* ── LAYOUT ── */
.page-wrap {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.main-col {
  flex: 1 1 60%;
}

.sidebar-col {
  flex: 0 0 320px;
  position: sticky;
  top: 80px;
}

/* ── HERO ── */
.main-col h1 {
  font-size: 32px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}

.btn-call {
  display: inline-block;
  background: #1a6b1a;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 14px 48px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-decoration: none;
}
.btn-call:hover { background: #145214; text-decoration: none; color: #fff; }

/* ── CONTENT ── */
.main-col h2 {
  font-size: 22px;
  font-weight: 900;
  color: #1a1a1a;
  margin: 28px 0 10px;
}

.main-col p {
  line-height: 1.7;
  margin-bottom: 14px;
  color: #444;
}

.main-col ul {
  margin: 10px 0 18px 20px;
  line-height: 1.9;
}

.main-col ul li a {
  font-weight: 700;
  color: #1a6b1a;
}

/* Location grid */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 16px;
  margin: 12px 0 24px;
}
.location-grid span { font-size: 15px; color: #444; }

/* Testimonials */
.testimonials { margin: 24px 0; }
.testimonial {
  background: #f7f7f7;
  border-left: 4px solid #1a6b1a;
  padding: 14px 18px;
  margin-bottom: 14px;
  font-style: italic;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* FAQ */
.faq-list { margin: 10px 0 24px; }
.faq-list li { margin-bottom: 8px; font-size: 15px; }
.faq-list li::marker { color: #1a6b1a; }

/* ── QUOTE FORM SIDEBAR ── */
.quote-box {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.quote-banner {
  background: #2e8b2e;
  color: #fff;
  text-align: center;
  padding: 16px 12px 6px;
}
.quote-banner .banner-main {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  display: block;
}
.quote-banner .banner-sub {
  font-size: 13px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}
.quote-banner .banner-arrow {
  font-size: 28px;
  display: block;
  color: #90ee90;
  line-height: 1;
  margin-bottom: 4px;
}

.quote-form {
  padding: 16px;
}
.quote-form .field-note {
  font-size: 11px;
  color: #888;
  margin-bottom: 12px;
}
.quote-form label {
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.quote-form label .req { color: #c00; }

.name-row { display: flex; gap: 8px; margin-bottom: 12px; }
.name-row input { flex: 1; }

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #bbb;
  border-radius: 3px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  margin-bottom: 12px;
}
.quote-form textarea { height: 90px; resize: vertical; }

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #2e8b2e;
}

.btn-submit {
  display: block;
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-submit:hover { background: #333; }

/* ── FOOTER ── */
footer {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  margin-top: 50px;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

footer nav { margin-bottom: 14px; }
footer nav a {
  margin: 0 10px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.footer-brand {
  font-weight: 900;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.footer-phone { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.footer-serving { margin-bottom: 10px; line-height: 1.9; }
.footer-policy { font-size: 12px; margin-bottom: 10px; }
.footer-policy a { color: #666; }
.footer-disclosure {
  font-size: 12px;
  font-style: italic;
  color: #888;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-wrap { flex-direction: column; }
  .sidebar-col { flex: 1 1 100%; position: static; }
  .top-bar { flex-direction: column; gap: 10px; text-align: center; }
  .top-bar .phone { font-size: 20px; }
  .top-bar nav a { font-size: 12px; margin-left: 8px; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .main-col h1 { font-size: 24px; }
}
