/* ======================================
   Landing Page Styles — /boca-raton-pool-cleaning.html
   Purpose-built for Google Ads conversions
   ====================================== */

.landing-page {
  background: #f4f9fc;
}

/* Hide main nav that's baked into styles.css */
.landing-page .site-header,
.landing-page .site-footer,
.landing-page main > .container {
  display: none;
}

/* ---------- Sticky Top Bar ---------- */
.lp-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #0a3d62, #1565c0);
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.lp-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  gap: 16px;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
}
.lp-brand .brand-mark { font-size: 22px; }
.lp-brand .brand-text { color: white; }
.lp-topbar-rating {
  background: #ffd700;
  color: #5a3e00;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 6px;
}
.lp-topbar-cta {
  background: #ffd700;
  color: #0a3d62;
  padding: 10px 18px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-topbar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4);
}
@media (max-width: 700px) {
  .lp-topbar-rating { display: none; }
  .lp-brand .brand-text { font-size: 15px; }
  .lp-topbar-cta { padding: 8px 14px; font-size: 13px; }
}

/* ---------- Hero ---------- */
.lp-hero {
  padding: 60px 0 50px;
  background:
    radial-gradient(ellipse at top right, rgba(30, 136, 229, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255, 215, 0, 0.08), transparent 50%),
    linear-gradient(180deg, #eaf6fc 0%, #f4f9fc 100%);
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 2px solid #ffd700;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  color: #0a3d62;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}
.lp-stars {
  color: #ffa000;
  font-size: 16px;
  letter-spacing: 2px;
}

.lp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  color: #0a3d62;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.lp-hero h1 .accent {
  background: linear-gradient(135deg, #1e88e5, #0a3d62);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-lede {
  font-size: 19px;
  color: #3a5360;
  margin-bottom: 28px;
  max-width: 560px;
}

.lp-trust-bar {
  display: flex;
  gap: 28px;
  padding: 20px 24px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(10, 61, 98, 0.08);
  margin-bottom: 32px;
  max-width: 520px;
}
.lp-trust-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  border-right: 1px solid #e1ecf2;
  padding-right: 12px;
}
.lp-trust-item:last-child { border-right: none; }
.lp-trust-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #0a3d62;
  line-height: 1;
}
.lp-trust-item span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6a8393;
  margin-top: 6px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .lp-trust-bar { gap: 12px; padding: 16px; }
  .lp-trust-item strong { font-size: 24px; }
  .lp-trust-item span { font-size: 10px; }
}

.lp-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.lp-hero-sub {
  font-size: 14px;
  color: #6a8393;
  font-weight: 500;
}

.lp-hero-visual {
  position: relative;
}
.lp-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(10, 61, 98, 0.2);
}
.lp-hero-caption {
  text-align: center;
  font-style: italic;
  color: #6a8393;
  font-size: 14px;
  margin-top: 14px;
}

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-align: center;
}
.lp-btn-primary {
  background: linear-gradient(135deg, #ff9500, #ff6b00);
  color: white;
  box-shadow: 0 8px 22px rgba(255, 149, 0, 0.35);
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 149, 0, 0.45);
}
.lp-btn-secondary {
  background: white;
  color: #0a3d62;
  border: 2px solid #0a3d62;
}
.lp-btn-secondary:hover {
  background: #0a3d62;
  color: white;
}
.lp-btn-huge {
  padding: 22px 48px;
  font-size: 20px;
}
.lp-btn-form {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  margin-top: 6px;
}

/* ---------- Why Us Section ---------- */
.lp-why {
  padding: 80px 0;
  background: white;
}
.lp-why h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  color: #0a3d62;
  margin-bottom: 48px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.lp-why-item {
  padding: 28px;
  background: #f4f9fc;
  border-radius: 14px;
  border-left: 4px solid #1e88e5;
}
.lp-why-icon { font-size: 36px; margin-bottom: 10px; }
.lp-why-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 8px;
}
.lp-why-item p {
  font-size: 15px;
  color: #4a6572;
  line-height: 1.55;
}

/* ---------- Mid CTA ---------- */
.lp-mid-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #0a3d62 0%, #1565c0 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-mid-cta::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 70%);
  pointer-events: none;
}
.lp-mid-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: white;
  margin-bottom: 10px;
  position: relative;
}
.lp-mid-cta p {
  color: #cfe0ee;
  font-size: 18px;
  margin-bottom: 28px;
  position: relative;
}
.lp-mid-cta-sub {
  margin-top: 20px;
  font-size: 14px;
}
.lp-midcta-link {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
}

/* ---------- How It Works ---------- */
.lp-how {
  padding: 80px 0;
}
.lp-how h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  color: #0a3d62;
  margin-bottom: 48px;
}
.lp-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 760px) {
  .lp-how-steps { grid-template-columns: 1fr; }
}
.lp-how-step {
  text-align: center;
  padding: 24px;
}
.lp-how-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ff9500);
  color: #0a3d62;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 64px;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(255, 149, 0, 0.25);
}
.lp-how-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #0a3d62;
  margin-bottom: 10px;
}
.lp-how-step p {
  color: #4a6572;
  font-size: 15px;
}

/* ---------- Services Grid ---------- */
.lp-services {
  padding: 80px 0;
  background: white;
}
.lp-services h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  color: #0a3d62;
  margin-bottom: 40px;
}
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.lp-service {
  padding: 14px 20px;
  background: #f4f9fc;
  border-radius: 10px;
  color: #0a3d62;
  font-weight: 600;
  font-size: 15px;
  border-left: 3px solid #43a047;
}

/* ---------- Form Section ---------- */
.lp-form-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #eaf6fc 0%, #f4f9fc 100%);
}
.lp-form-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}
.lp-form-container > * { min-width: 0; }
@media (max-width: 860px) {
  .lp-form-container { grid-template-columns: minmax(0, 1fr); gap: 40px; }
}
.lp-form-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  color: #0a3d62;
  margin-bottom: 16px;
}
.lp-form-lede {
  font-size: 17px;
  color: #3a5360;
  margin-bottom: 24px;
}
.lp-form-or {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6a8393;
  font-weight: 700;
  margin-bottom: 12px;
}

.lp-form {
  background: white;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(10, 61, 98, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-form label span {
  font-size: 13px;
  font-weight: 600;
  color: #0a3d62;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lp-form input,
.lp-form select,
.lp-form textarea {
  padding: 12px 14px;
  border: 1.5px solid #d0dde6;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
  outline: none;
  border-color: #1e88e5;
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}
.lp-form-fine {
  font-size: 12px;
  color: #6a8393;
  text-align: center;
  margin-top: 4px;
}
.lp-form-success {
  text-align: center;
  padding: 40px 20px;
}
.lp-form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #0a3d62;
  margin-bottom: 12px;
}
.lp-form-success p {
  color: #4a6572;
  font-size: 16px;
}
.lp-form-success a {
  color: #1e88e5;
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.lp-faq {
  padding: 80px 0;
  background: white;
}
.lp-faq h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  color: #0a3d62;
  margin-bottom: 40px;
}
.lp-faq details {
  background: #f4f9fc;
  border-radius: 10px;
  padding: 18px 24px;
  margin-bottom: 10px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.lp-faq summary {
  font-weight: 700;
  color: #0a3d62;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: #1e88e5;
  font-weight: 400;
}
.lp-faq details[open] summary::after { content: '−'; }
.lp-faq details p {
  margin-top: 12px;
  color: #4a6572;
  font-size: 15px;
}

/* ---------- Final CTA ---------- */
.lp-final-cta {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at bottom, rgba(255, 215, 0, 0.15), transparent 60%),
    linear-gradient(135deg, #0a3d62 0%, #1565c0 100%);
  color: white;
  text-align: center;
}
.lp-final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
}
.lp-final-cta p {
  color: #cfe0ee;
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.lp-final-sub {
  margin-top: 20px;
  font-size: 14px;
  color: #a8c0cf;
}

/* ---------- Footer ---------- */
.lp-footer {
  background: #0a3d62;
  color: #a8c0cf;
  padding: 36px 0;
  text-align: center;
}
.lp-footer strong { color: white; }
.lp-footer .small { font-size: 12px; opacity: 0.8; margin-top: 6px; }
