@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #12141C;         /* deep navy, used sparingly for footer/credentials */
  --pool-deep: #0B6E86;    /* deep pool-water blue, headings/accents */
  --pool: #189AB4;         /* primary pool blue */
  --pool-bright: #3FC1E0;  /* bright water blue, gradients */
  --aqua-tint: #EAF7FB;    /* very light aqua, section backgrounds */
  --white: #FFFFFF;
  --orange: #E1874A;       /* desert sunset orange, from the logo */
  --ink: #16262A;
  --ink-soft: #4C666C;
  --line: #D3E7EC;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3, .logo {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.003em;
  font-weight: 600;
}

.hero h1, .logo {
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--pool-deep);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.logo img {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--aqua-tint);
  display: block;
}

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

nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

nav a:hover, nav a.active {
  color: var(--pool-deep);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--pool-deep);
}

.nav-phone .phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--aqua-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.nav-phone .phone-icon svg { width: 16px; height: 16px; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  box-shadow: 0 6px 14px rgba(225,135,74,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(225,135,74,0.38);
  color: var(--white) !important;
}

/* ---------- Hero ---------- */
.hero {
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  background: var(--pool-deep);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero-slides {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(10,20,26,0.85) 0%, rgba(10,20,26,0.4) 45%, rgba(10,20,26,0.18) 100%);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
  width: 100%;
}

.hero-copy { max-width: 620px; }

.hero-badge {
  display: inline-block;
  background: var(--pool-deep);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px 10px 18px;
  margin-bottom: 24px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  transition: opacity 0.3s ease;
}


.hero-eyebrow {
  color: #FFE1C4;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 54px;
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0.005em;
  margin: 0 0 20px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}

.hero p {
  font-size: 19px;
  color: #F1F6F8;
  max-width: 520px;
  margin: 0 0 32px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.25);
  transition: opacity 0.3s ease;
}

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

.hero-mascot {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 6px solid rgba(255,255,255,0.35);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11,25,30,0.35);
}

.hero-mascot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(225,135,74,0.35);
}

.btn-primary:hover {
  background: #EA9A62;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(225,135,74,0.42);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* wave divider */
.wave {
  position: relative;
  z-index: 2;
  line-height: 0;
}

.wave svg { display: block; width: 100%; height: 56px; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--aqua-tint);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--pool-deep);
}

.trust-bar .item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-bar svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--orange); }

/* ---------- Sections ---------- */
section { padding: 100px 0; }

.section-head {
  max-width: 580px;
  margin: 0 0 48px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.005em;
  margin: 0 0 14px;
  color: var(--pool-deep);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 16.5px;
  margin: 0;
}

.section-alt { background: var(--aqua-tint); }

/* ---------- Service cards ---------- */
.grid-3 {
  display: flex;
  gap: 26px;
}

.grid-3 .card { flex: 1; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(11,110,134,0.12);
  border-color: var(--pool-bright);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--aqua-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--pool-deep);
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--pool-deep);
}

.card p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

.card-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}

/* ---------- Before & After gallery ---------- */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.gallery-grid .gallery-card {
  flex: 1 1 calc(33.333% - 15px);
  min-width: 260px;
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery-compare {
  display: flex;
  aspect-ratio: 4/3;
}

.gallery-half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--pool-deep);
  padding: 12px;
  border: 2px dashed var(--line);
  margin: 6px;
  border-radius: 8px;
}

.gallery-half.before { background: #F2F0EA; color: var(--ink-soft); }
.gallery-half.after { background: var(--aqua-tint); }

.gallery-caption {
  padding: 14px 16px 18px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- Process / steps ---------- */
.steps {
  display: flex;
  gap: 40px;
}

.step { flex: 1; }

.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--pool-deep);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--pool-deep);
}

.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Credentials band ---------- */
.credentials {
  background: var(--navy);
  color: var(--white);
}

.credentials .section-head h2,
.credentials .section-head p { color: var(--white); }
.credentials .section-head p { color: #B9C7CC; }

.cred-grid {
  display: flex;
  gap: 24px;
}

.cred-item {
  flex: 1;
  border: 1px solid rgba(246,241,230,0.15);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: rgba(255,255,255,0.04);
}

.cred-item .cred-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.cred-item h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--white);
}

.cred-item p {
  font-size: 14px;
  color: #B9C7CC;
  margin: 0;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--pool-deep), var(--pool));
  color: var(--white);
  padding: 68px 0;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-band h2 {
  font-size: 27px;
  margin: 0;
  font-weight: 700;
  color: var(--white);
}

.cta-band p {
  margin: 6px 0 0;
  color: #DCF1F7;
  font-size: 15px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--pool-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--orange);
  font-weight: 400;
  margin-left: 20px;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 620px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #A9BEC4;
  padding: 52px 0 32px;
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid .logo { color: var(--white); margin-bottom: 10px; }
.footer-grid .logo img { border-color: rgba(255,255,255,0.2); }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.footer-col a, .footer-col p {
  display: block;
  color: #A9BEC4;
  margin: 0 0 8px;
  font-size: 14px;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(169,190,196,0.15);
  padding-top: 20px;
  font-size: 13px;
  color: #7E939A;
}

/* ---------- Page header (non-home pages) ---------- */
.page-header {
  background: linear-gradient(160deg, var(--pool-deep) 0%, var(--pool) 100%);
  color: var(--white);
  padding: 68px 0 52px;
}

.page-header .hero-eyebrow { margin-bottom: 10px; }

.page-header h1 {
  font-size: 36px;
  margin: 0 0 12px;
}

.page-header p {
  color: #E4F5FA;
  max-width: 560px;
  margin: 0;
  font-size: 16px;
}

/* ---------- List rows (services page) ---------- */
.service-row {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; }

.service-row .row-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--aqua-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pool-deep);
  flex-shrink: 0;
}

.service-row .row-icon svg { width: 22px; height: 22px; }

.service-row h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--pool-deep);
}

.service-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 560px;
}

/* ---------- About page ---------- */
.about-layout {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.about-layout .about-photo { flex: 0 0 42%; }
.about-layout .about-copy { flex: 1; }

.about-photo {
  background: var(--aqua-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 14px;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-copy h2 {
  font-size: 30px;
  color: var(--pool-deep);
  margin: 0 0 18px;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 0 16px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge {
  border: 1px solid var(--line);
  background: var(--aqua-tint);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pool-deep);
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: flex;
  gap: 56px;
}

.contact-layout .contact-info { flex: 1; }
.contact-layout form { flex: 1.1; }

.contact-info h2 {
  font-size: 26px;
  color: var(--pool-deep);
  margin: 0 0 16px;
}

.contact-info p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 24px;
}

.info-row {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.info-row:last-child { border-bottom: 1px solid var(--line); }

.info-row .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.info-row .value {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

form {
  background: var(--aqua-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
}

.form-row textarea { resize: vertical; min-height: 100px; }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--pool);
  outline-offset: 1px;
}

form .btn-primary {
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  font-size: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  nav { display: none; }
  .grid-3 { flex-direction: column; }
  .gallery-grid .gallery-card { flex: 1 1 100%; }
  .about-layout, .contact-layout { flex-direction: column; }
  .hero-inner { flex-direction: column; text-align: left; }
  .hero-mascot { width: 140px; height: 140px; }
  .hero h1 { font-size: 36px; }
  section { padding: 64px 0; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .steps, .cred-grid { flex-direction: column; gap: 28px; }
}
