/* ================================================
   PARADISE POOLS & SPAS NJ — MAIN STYLESHEET
   ================================================ */

/* 1. DESIGN TOKENS
   2. RESET & BASE
   3. TYPOGRAPHY
   4. LAYOUT
   5. BUTTONS
   6. TOP BAR
   7. HEADER & NAV
   8. MOBILE MENU
   9. HERO
   10. TRUST STRIP
   11. SECTIONS (shared)
   12. SERVICE CARDS
   13. POOL TYPES
   14. GALLERY GRID
   15. REVIEWS
   16. HOW IT WORKS
   17. SERVICE AREAS
   18. FAQ ACCORDION
   19. FORMS
   20. FOOTER
   21. INNER PAGE HERO
   22. PAGE CONTENT
   23. GALLERY PAGE
   24. THANK YOU PAGE
   25. UTILITIES & RESPONSIVE
   ================================================ */

/* -----------------------------------------------
   1. DESIGN TOKENS
----------------------------------------------- */
:root {
  --navy:          #0B1F3A;
  --navy-mid:      #163358;
  --navy-light:    #1E4A7A;
  --orange:        #E8721F;
  --orange-dark:   #C45C10;
  --orange-light:  #F5A055;
  --white:         #FFFFFF;
  --off-white:     #F7F8FA;
  --light-gray:    #E8ECF0;
  --mid-gray:      #8892A4;
  --text:          #1A202C;
  --text-mid:      #4A5568;
  --text-light:    #718096;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm:     0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
  --shadow-xl:     0 16px 60px rgba(0,0,0,0.18);

  --radius:        8px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  --ease:          0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:     1200px;
  --gutter:        24px;
}

/* -----------------------------------------------
   2. RESET & BASE
----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
}

/* -----------------------------------------------
   3. TYPOGRAPHY
----------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { line-height: 1.75; color: var(--text-mid); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* -----------------------------------------------
   4. LAYOUT
----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 80px 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section--navy * { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.80); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* -----------------------------------------------
   5. BUTTONS
----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: background var(--ease), color var(--ease),
              border-color var(--ease), transform var(--ease),
              box-shadow var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,114,31,0.35);
}
.btn--orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(232,114,31,0.45);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-mid); }

.btn--outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* -----------------------------------------------
   6. TOP BAR
----------------------------------------------- */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  padding: 7px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  transition: color var(--ease);
}
.topbar__phone:hover { color: var(--orange-light); }
.topbar__phone svg { width: 14px; height: 14px; flex-shrink: 0; }

.topbar__hours {
  color: rgba(255,255,255,0.70);
  display: none;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar__social a {
  color: rgba(255,255,255,0.70);
  transition: color var(--ease);
  display: flex;
}
.topbar__social a:hover { color: var(--white); }
.topbar__social svg { width: 16px; height: 16px; }

/* -----------------------------------------------
   7. HEADER & NAV
----------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease);
  overflow: visible;
}

.header--scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.header__logo {
  flex-shrink: 0;
  position: relative;
  z-index: 901;
}
.header__logo img {
  	height: 135px;
  	width: auto;
  	transform: none;
  	filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.20));
  	transition: transform var(--ease), filter var(--ease);
}
.header__logo:hover img {
  	transform: scale(1.04);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  color: var(--orange);
  background: rgba(232,114,31,0.06);
}

/* Dropdown */
.nav__item { position: relative; }

.nav__dropdown-btn { background: none; }
.nav__dropdown-btn svg {
  width: 14px; height: 14px;
  transition: transform var(--ease);
}
.nav__item--open .nav__dropdown-btn svg { transform: rotate(180deg); }

.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  z-index: 100;
  border: 1px solid var(--light-gray);
}

.nav__item--open .nav__dropdown { display: block; }

.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease);
}
.nav__dropdown a:hover {
  background: var(--off-white);
  color: var(--orange);
}

.header__cta { margin-left: 12px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -----------------------------------------------
   8. MOBILE MENU
----------------------------------------------- */
@media (max-width: 968px) {
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--white);
    z-index: 800;
    padding: 100px 24px 40px;
    overflow-y: auto;
  }
  .nav.open { display: block; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }

  .nav__link {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: var(--radius);
    justify-content: space-between;
  }

  .nav__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    margin-top: 4px;
    padding: 4px 0;
    border-radius: var(--radius);
  }
  .nav__dropdown a { padding: 12px 20px; font-size: 0.95rem; }

  .hamburger { display: flex; }
  .header__cta { display: none; }
  .header__inner { flex-wrap: nowrap; }
}

/* -----------------------------------------------
   9. HERO
----------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,58,0.82) 0%,
    rgba(11,31,58,0.55) 60%,
    rgba(11,31,58,0.40) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero__eyebrow {
  display: inline-block;
  background: rgba(232,114,31,0.20);
  border: 1px solid rgba(232,114,31,0.50);
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title span { color: var(--orange-light); }

.hero__sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.50);
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* -----------------------------------------------
   10. TRUST STRIP
----------------------------------------------- */
.trust-strip {
  background: var(--orange);
  padding: 20px 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-strip__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.9;
}

/* -----------------------------------------------
   11. SECTIONS (shared)
----------------------------------------------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* -----------------------------------------------
   12. SERVICE CARDS
----------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--ease), box-shadow var(--ease);
  background: var(--white);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--light-gray);
}

.service-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__body h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.service-card__body p {
  font-size: 0.93rem;
  flex: 1;
  margin-bottom: 20px;
}

.service-card__link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
}
.service-card:hover .service-card__link { gap: 10px; }

/* -----------------------------------------------
   13. POOL TYPES
----------------------------------------------- */
.pool-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pool-type-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: transform var(--ease), box-shadow var(--ease);
}
.pool-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pool-type-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--light-gray);
  position: relative;
}

.pool-type-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.pool-type-card__body { padding: 24px; }
.pool-type-card__body h3 { margin-bottom: 10px; }
.pool-type-card__body p { font-size: 0.9rem; margin-bottom: 18px; }

/* -----------------------------------------------
   14. GALLERY GRID (homepage preview)
----------------------------------------------- */
.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery-preview__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-preview__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--light-gray);
  position: relative;
}

.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-preview__item:hover img { transform: scale(1.05); }

.gallery-preview__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-preview__item:hover .gallery-preview__overlay { opacity: 1; }
.gallery-preview__overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
}

.gallery-cta { text-align: center; margin-top: 40px; }

/* -----------------------------------------------
   15. REVIEWS
----------------------------------------------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid var(--orange);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  color: #F59E0B;
}
.review-card__stars svg { width: 18px; height: 18px; }

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--light-gray);
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.review-card__location {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* -----------------------------------------------
   16. HOW IT WORKS
----------------------------------------------- */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}

.step {
  text-align: center;
  padding: 32px 24px;
}

.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(232,114,31,0.35);
}

.step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step p { font-size: 0.9rem; }

/* -----------------------------------------------
   17. SERVICE AREAS
----------------------------------------------- */
.service-areas__content {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .service-areas__content { grid-template-columns: 1fr 1fr; }
}

.service-areas__text h2 { margin-bottom: 16px; }
.service-areas__text p { margin-bottom: 16px; font-size: 0.95rem; }

.service-areas__towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.town-tag {
  background: var(--light-gray);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  transition: background var(--ease), color var(--ease);
}
.town-tag:hover { background: var(--orange); color: var(--white); }

.service-areas__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--light-gray);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-areas__map iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* -----------------------------------------------
   18. FAQ ACCORDION
----------------------------------------------- */
.faq__list { max-width: 760px; margin: 0 auto; }

.faq__item {
  border-bottom: 1px solid var(--light-gray);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--ease);
}
.faq__question:hover { color: var(--orange); }
.faq__question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--mid-gray);
  transition: transform var(--ease), color var(--ease);
}
.faq__item.open .faq__question svg {
  color: var(--orange);
  transform: rotate(180deg);
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.faq__icon svg { width: 14px; height: 14px; color: var(--mid-gray); transition: transform var(--ease); }

.faq__item.open .faq__question { color: var(--orange); }
.faq__item.open .faq__icon {
  background: var(--orange);
  border-color: var(--orange);
}
.faq__item.open .faq__icon svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 0 28px 14px 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
}
.faq__item.open .faq__answer { display: block; }

/* -----------------------------------------------
   19. FORMS
----------------------------------------------- */
.estimate-section { background: var(--navy); }
.estimate-section .section-header h2 { color: var(--white); }
.estimate-section .section-header p { color: rgba(255,255,255,0.75); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.form-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 600px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .form-group--full { grid-column: 1 / -1; }
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,114,31,0.15);
  outline: none;
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
}

.form-note a { color: var(--orange); text-decoration: underline; }

#form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
#form-success .success-icon {
  width: 64px;
  height: 64px;
  background: #D1FAE5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #059669;
}
#form-success h3 { color: var(--navy); margin-bottom: 8px; }

/* Contact Page specific */
.contact-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(232,114,31,0.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label { font-size: 0.8rem; font-weight: 600; color: var(--text-light); margin-bottom: 2px; }
.contact-info__value { font-weight: 600; color: var(--navy); }
.contact-info__value a { color: var(--navy); transition: color var(--ease); }
.contact-info__value a:hover { color: var(--orange); }

/* -----------------------------------------------
   20. FOOTER
----------------------------------------------- */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 968px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
}

.footer__brand img { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__brand p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.70);
  transition: background var(--ease), color var(--ease);
}
.footer__social a:hover { background: var(--orange); color: var(--white); }
.footer__social svg { width: 17px; height: 17px; }

.footer__col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}
.footer__contact-item a { color: rgba(255,255,255,0.65); transition: color var(--ease); }
.footer__contact-item a:hover { color: var(--white); }
.footer__contact-item strong { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer__bottom a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer__bottom a:hover { color: var(--white); }

/* -----------------------------------------------
   21. INNER PAGE HERO
----------------------------------------------- */
.page-hero {
  background: var(--navy);
  padding: 44px 0 40px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,114,31,0.12) 0%, transparent 60%);
}

.page-hero__content { position: relative; z-index: 1; max-width: 640px; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 28px; }

/* -----------------------------------------------
   22. PAGE CONTENT
----------------------------------------------- */
.content-section { padding: 80px 0; }

.two-col {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col--reverse .two-col__img { order: -1; }
}

.two-col__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.two-col__img img { width: 100%; height: 380px; object-fit: cover; }

.two-col__text h2 { margin-bottom: 16px; }
.two-col__text p { margin-bottom: 16px; font-size: 0.95rem; }

.feature-list { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-mid);
}
.feature-list li svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Anchor IDs for pool type sections */
.section-anchor { scroll-margin-top: 90px; }

/* -----------------------------------------------
   23. GALLERY PAGE
----------------------------------------------- */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--light-gray);
  color: var(--text-mid);
  transition: all var(--ease);
  background: var(--white);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-grid__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-gray);
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid__item:hover img { transform: scale(1.05); }

.gallery-grid__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(11,31,58,0.85));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 32px 16px 14px;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-grid__item:hover .gallery-grid__label { opacity: 1; }

/* -----------------------------------------------
   24. THANK YOU PAGE
----------------------------------------------- */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.thankyou-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: #D1FAE5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #059669;
}
.thankyou-card h1 { font-size: 2rem; margin-bottom: 12px; }
.thankyou-card p { margin-bottom: 32px; }

/* -----------------------------------------------
   25. UTILITIES & RESPONSIVE
----------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider--center { margin: 16px auto 24px; }

/* Skip to main content */
.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* Responsive tweaks */
@media (min-width: 640px) {
  .topbar__hours { display: block; }
  :root { --gutter: 32px; }
}

@media (min-width: 968px) {
  .hero { min-height: 88vh; }
  .trust-strip__inner { gap: 48px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .form-card { padding: 28px 20px; }
}
