/* A&R Pool Solutions - Simple Professional Site */
:root{
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #4b5563;
  --line: rgba(15, 23, 42, .12);
  --card: rgba(255,255,255,.9);
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
  --radius: 18px;
  --accent: #0ea5e9; /* turquoise/blue */
  --accent2:#22c55e;
  --hero1:#dbeafe;
  --hero2:#cffafe;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
}
a{ color: inherit; text-decoration: none; }
.container{ width:min(1120px, 92%); margin:0 auto; }

.header{
  position: sticky; top:0; z-index:50;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 16px;
}
.brand{ display:flex; align-items:center; gap: 12px; min-width: 220px; }
.logo{
  width:44px; height:44px; border-radius: 12px;
  object-fit: contain;
  background: rgba(2, 132, 199, .08);
  border:1px solid rgba(2, 132, 199, .15);
}
.brand-name{ font-weight: 700; letter-spacing: .2px; }
.brand-tag{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.nav{ display:flex; align-items:center; gap: 18px; }
.nav a{ font-size: 14px; color: rgba(15,23,42,.84); }
.nav a:hover{ color: rgba(15,23,42,1); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: 1px solid rgba(14,165,233,.25);
  box-shadow: 0 10px 18px rgba(14,165,233,.18);
}
.btn:hover{ filter: brightness(.98); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn-small{ padding: 10px 14px; font-size: 14px; }
.btn-full{ width: 100%; }
.btn-ghost{
  background: transparent;
  color: rgba(2, 132, 199, 1);
  border: 1px solid rgba(14,165,233,.25);
  box-shadow: none;
}
.btn-ghost:hover{ background: rgba(14,165,233,.08); }

.menu-btn{
  display:none;
  background: transparent; border:0; padding: 10px; cursor:pointer;
}
.menu-btn span{
  display:block; width: 22px; height: 2px;
  background: rgba(15,23,42,.85);
  margin: 5px 0;
  border-radius: 8px;
}
.mobile-nav{
  display:none;
  padding: 10px 4%;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.85);
}
.mobile-nav a{ display:block; padding: 12px 0; color: rgba(15,23,42,.9); }
.mobile-nav .btn{ margin-top: 8px; width:100%; }

.hero{
  position: relative;
  background: radial-gradient(1000px 600px at 15% 10%, var(--hero2), transparent 60%),
              radial-gradient(1000px 600px at 80% 20%, var(--hero1), transparent 60%);
  border-bottom: 1px solid var(--line);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  padding: 44px 0 18px;
  align-items: center;
}
.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.18);
  color: rgba(2, 132, 199, 1);
  font-weight: 600;
  font-size: 13px;
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.hero p{
  margin: 0 0 18px;
  color: rgba(15,23,42,.78);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.trust-row{
  display:flex; gap: 14px; flex-wrap: wrap;
}
.trust-item{
  padding: 12px 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  min-width: 170px;
}
.trust-title{ font-weight: 700; font-size: 14px; }
.trust-sub{ color: var(--muted); font-size: 13px; margin-top: 2px; }

.hero-card{
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-top{
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--line);
}
.hero-card-title{ font-weight: 800; font-size: 16px; }
.hero-card-sub{ color: var(--muted); margin-top: 4px; font-size: 13px; }

.form{ padding: 16px 18px 18px; }
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label{ display:flex; flex-direction: column; gap: 6px; font-size: 13px; color: rgba(15,23,42,.8); }
input, select, textarea{
  border: 1px solid rgba(15,23,42,.14);
  border-radius: 14px;
  padding: 11px 12px;
  font: inherit;
  outline: none;
  background: rgba(255,255,255,.92);
}
input:focus, select:focus, textarea:focus{ border-color: rgba(14,165,233,.55); box-shadow: 0 0 0 4px rgba(14,165,233,.12); }
textarea{ resize: vertical; }
.span-2{ grid-column: span 2; }
.hp{ display:none; }

.form-foot{
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  text-align: center;
}
.form-foot a{ color: rgba(2, 132, 199, 1); }
.sep{ margin: 0 6px; }

.wave{
  height: 28px;
  background: linear-gradient(90deg, rgba(14,165,233,.18), rgba(34,197,94,.14));
  mask-image: radial-gradient(10px 10px at 10px 10px, #0000 7px, #000 7.5px);
  -webkit-mask-image: radial-gradient(10px 10px at 10px 10px, #0000 7px, #000 7.5px);
  opacity: .8;
}

.section{ padding: 56px 0; }
.section-alt{ background: rgba(2, 132, 199, .03); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.section-head h2{ margin:0; font-size: 28px; letter-spacing: -.4px; }
.section-head p{ margin:0; color: var(--muted); max-width: 62ch; line-height: 1.6; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(2, 6, 23, .04);
}
.card h3{ margin: 0 0 10px; }
.card ul{ margin: 0; padding-left: 18px; color: rgba(15,23,42,.78); line-height: 1.7; }

.note{
  margin-top: 14px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.18);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: rgba(15,23,42,.86);
}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price-card{
  position: relative;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.price-card.featured{
  border-color: rgba(14,165,233,.35);
  box-shadow: 0 18px 40px rgba(14,165,233,.14);
  transform: translateY(-2px);
}
.badge{
  position:absolute; top: 14px; right: 14px;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.22);
  color: rgba(2, 132, 199, 1);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.price-top{ margin-bottom: 12px; }
.price-name{ font-weight: 800; }
.price-amt{ font-size: 16px; margin-top: 8px; color: rgba(15,23,42,.86); }
.price-amt span{ font-size: 28px; font-weight: 900; letter-spacing: -.4px; }
.price-sub{ margin-top: 6px; color: var(--muted); font-size: 13px; }
.price-list{ margin: 12px 0 18px; padding-left: 18px; color: rgba(15,23,42,.78); line-height: 1.7; }

.fineprint{ margin-top: 12px; color: var(--muted); font-size: 13px; }

.map-row{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
}
.map-card{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.map-placeholder{
  height: 320px;
  border-radius: 16px;
  border: 1px dashed rgba(15,23,42,.25);
  display:flex; flex-direction: column;
  align-items:center; justify-content:center;
  color: rgba(15,23,42,.65);
  background: radial-gradient(600px 260px at 20% 10%, rgba(14,165,233,.18), transparent 60%),
              radial-gradient(600px 260px at 80% 20%, rgba(34,197,94,.14), transparent 60%);
}
.map-text{ font-weight: 800; }
.map-sub{ font-size: 13px; color: var(--muted); margin-top: 6px; }

.map-side{ display:flex; flex-direction: column; gap: 14px; }
.list-card{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.list-card h3{ margin: 0 0 8px; }
.checklist{ margin: 0; padding-left: 18px; color: rgba(15,23,42,.78); line-height: 1.8; }

.faq{ display:grid; gap: 10px; }
.faq-item{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 12px 26px rgba(2, 6, 23, .04);
}
.faq-item summary{
  cursor:pointer;
  font-weight: 700;
}
.faq-body{
  margin-top: 10px;
  color: rgba(15,23,42,.78);
  line-height: 1.7;
}

.cta{ display:flex; }
.cta-card{
  width:100%;
  background: linear-gradient(90deg, rgba(14,165,233,.14), rgba(34,197,94,.12));
  border: 1px solid rgba(14,165,233,.18);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.cta-card h2{ margin: 0 0 10px; }
.cta-card p{ margin: 0 0 16px; color: rgba(15,23,42,.75); line-height: 1.6; }
.cta-actions{ display:flex; gap: 12px; flex-wrap: wrap; }

.contact-card{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.contact-card p{ color: var(--muted); line-height: 1.6; }
.contact-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.contact-item{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(2, 132, 199, .03);
}
.contact-label{ font-size: 12px; color: var(--muted); }
.contact-val{ margin-top: 6px; font-weight: 800; }
.contact-val a{ color: rgba(2, 132, 199, 1); }
.small{ margin-top: 14px; color: var(--muted); font-size: 12px; line-height: 1.6; }

.footer{
  margin-top: 18px;
  display:flex; justify-content:space-between; gap: 12px; flex-wrap: wrap;
  color: rgba(15,23,42,.65);
  font-size: 12px;
}
.footer-links a{ color: rgba(2, 132, 199, 1); }

@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; padding: 34px 0 18px; }
  .cards{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .map-row{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .menu-btn{ display:block; }
  .mobile-nav.show{ display:block; }
  .form-grid{ grid-template-columns: 1fr; }
  .span-2{ grid-column: auto; }
}

.contact-item .btn{margin-top:6px;}
