/* ============================================================
   THE LAUNDRY ROOM OF PALMS — style.css
   ============================================================ */

:root {
  --navy:        #0d1b2a;
  --navy-light:  #1a2f45;
  --teal:        #0fa3b1;
  --teal-light:  #c8eef2;
  --gold:        #e9c46a;
  --cream:       #f8f5ef;
  --text-dark:   #1a1a2e;
  --text-mid:    #4a5568;
  --white:       #ffffff;
  --radius:      16px;
  --shadow:      0 8px 40px rgba(13,27,42,0.12);
  --shadow-h:    0 16px 56px rgba(13,27,42,0.20);
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAVBAR ── */
.navbar {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.30);
  padding: .65rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-brand img { height: 56px; object-fit: contain; }
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .03em;
  color: rgba(255,255,255,.80) !important;
  padding: .5rem 1rem !important;
  transition: color .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--teal) !important; }
.btn-nav-cta {
  background: var(--teal);
  color: #fff !important;
  border-radius: 50px;
  padding: .45rem 1.3rem !important;
  font-weight: 600 !important;
  font-size: .88rem !important;
  transition: background .2s, transform .15s;
}
.btn-nav-cta:hover { background: #fff; color: var(--navy) !important; transform: translateY(-1px); }

/* ── HERO VIDEO BANNER ── */
.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Fix for mobile browsers with dynamic toolbars */
  height: 100svh;
}
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.60);
  z-index: 1;
}
.hero-video-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  width: 100%;
}

/* ── Zoom-out flashing text ── */
.hero-flash-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.8rem;
  position: relative;
  width: 100%;
}
.hero-flash-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(1.45);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  opacity: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,.85);
  pointer-events: none;
  white-space: nowrap;
  transition: none;
  width: max-content;
  max-width: 90vw;
  white-space: normal;
  text-align: center;
}
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 700px;
}
.hero-stat-item {
  text-align: center;
  min-width: 100px;
}

/* stat-num and stat-label already defined — just update label color for hero */
.hero-stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.hero-stat-item .stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .3rem;
}
/* The active text zooms from large → normal size and fades in */
.hero-flash-text.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  transition: opacity .6s ease, transform .6s ease;
}
/* Exiting text shrinks slightly and fades out */
.hero-flash-text.exit {
  opacity: 0;
  transform: translateX(-50%) scale(0.7);
  transition: opacity .4s ease, transform .4s ease;
}

/* Pulsing CTA */
.hero-video-cta {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--teal);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .02em;
  padding: 1.05rem 2.6rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(15,163,177,.7);
  animation: heroPulse 2.4s ease-in-out infinite;
  transition: background .2s, transform .2s;
  margin-bottom: 2.2rem;
}
.hero-video-cta:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-3px);
  animation: none;
  box-shadow: 0 8px 32px rgba(15,163,177,.5);
}
.hero-video-cta i { font-size: 1.25rem; }
@keyframes heroPulse {
  0%   { box-shadow: 0 0 0 0   rgba(15,163,177,.70); }
  60%  { box-shadow: 0 0 0 22px rgba(15,163,177,.00); }
  100% { box-shadow: 0 0 0 0   rgba(15,163,177,.00); }
}

/* Hours pill in video hero */
.hero-video-hours {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px;
  padding: .6rem 1.4rem;
  color: rgba(255,255,255,.88);
  font-size: clamp(.72rem, 2.2vw, .88rem);
  font-weight: 500;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90vw;
  text-align: center;
}
.hero-video-hours i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* Shared CTAs used in other sections */
.btn-primary-cta {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .85rem 2rem;
  font-weight: 600;
  font-size: .98rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 22px rgba(15,163,177,.38);
  text-decoration: none;
}
.btn-primary-cta:hover {
  background: #0b8a96;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(15,163,177,.48);
  color: #fff;
}
.btn-outline-cta {
  border: 2px solid rgba(255,255,255,.35);
  color: #fff;
  border-radius: 50px;
  padding: .82rem 1.8rem;
  font-weight: 600;
  font-size: .98rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, border-color .2s, transform .2s;
  text-decoration: none;
}
.btn-outline-cta:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy);
  padding: 2.4rem 0;
  position: relative;
  z-index: 1;
}
.stats-strip .divider-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  margin: 0 auto;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .3rem;
}

/* ── SECTION HELPERS ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 1rem;
}
.section-title span { color: var(--teal); }
.section-sub {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
}

/* ── ABOUT ── */
.about-section { padding: 100px 0; background: #fff; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.3rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-float-card .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-float-card .small-lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .3rem;
}
.about-star-card {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-star-card .stars { font-size: 1.1rem; letter-spacing: 2px; }
.about-star-card .stars-lbl { font-size: .7rem; opacity: .85; margin-top: .25rem; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 11px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.15rem;
}
.about-feature-text h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .2rem;
}
.about-feature-text p {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ── SERVICES / FEATURES GRID ── */
.services-section { padding: 100px 0; background: var(--cream); }
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  height: 100%;
  box-shadow: 0 4px 24px rgba(13,27,42,.07);
  border-top: 4px solid transparent;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-h);
  border-top-color: var(--teal);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.service-card h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}
.service-card p {
  color: var(--text-mid);
  font-size: .88rem;
  line-height: 1.65;
  margin: 0;
}

/* ── PRICING ── */
.pricing-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(15,163,177,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.pricing-section .section-title { color: #fff; }
.pricing-section .section-sub { color: rgba(255,255,255,.6); }
.pricing-section .section-eyebrow::before,
.pricing-section .section-eyebrow::after { background: var(--gold); }
.pricing-section .section-eyebrow { color: var(--gold); }

.price-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: background .3s, border-color .3s, transform .3s;
}
.price-card:hover {
  background: rgba(255,255,255,.09);
  border-color: var(--teal);
  transform: translateY(-5px);
}
.price-card .card-header-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .6rem;
}
.price-card h5 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: .2rem;
}
.price-card .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--gold);
  line-height: 1.1;
  margin: .6rem 0 .2rem;
}
.price-card .price-note {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  line-height: 1.4;
}
.price-divider { border-color: rgba(255,255,255,.1); margin: 1rem 0; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  color: rgba(255,255,255,.7);
  font-size: .87rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.price-row:last-child { border-bottom: none; }
.price-row .amt { color: #fff; font-weight: 600; }
.note-pill {
  display: inline-block;
  background: rgba(233,196,106,.15);
  border: 1px solid rgba(233,196,106,.3);
  color: var(--gold);
  border-radius: 50px;
  padding: .55rem 1.3rem;
  font-size: .82rem;
  font-weight: 500;
  text-align: center;
}

/* ── GALLERY ── */
.gallery-section { padding: 100px 0; background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}
.g-item { position: relative; overflow: hidden; cursor: zoom-in; }
.g-item:first-child { grid-row: 1 / 3; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.08); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.g-overlay i {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .3s, transform .3s;
}
.g-item:hover .g-overlay { background: rgba(13,27,42,.45); }
.g-item:hover .g-overlay i { opacity: 1; transform: scale(1); }
.btn-view-all {
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 50px;
  padding: .75rem 2rem;
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, color .2s, transform .2s;
}
.btn-view-all:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ── AMENITIES ── */
.amenities-section { padding: 100px 0; background: var(--cream); }
.amenity-pill {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #fff;
  border-radius: 50px;
  padding: .65rem 1.2rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(13,27,42,.07);
  transition: box-shadow .2s, transform .2s;
  margin-bottom: .75rem;
}
.amenity-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,27,42,.13); }
.amenity-pill i { color: var(--teal); font-size: 1rem; min-width: 20px; }

/* ── CONTACT ── */
.contact-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(233,196,106,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-section .section-title { color: #fff; }
.contact-section .section-sub { color: rgba(255,255,255,.6); }
.contact-section .section-eyebrow { color: var(--gold); }
.contact-section .section-eyebrow::before,
.contact-section .section-eyebrow::after { background: var(--gold); }

.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: border-color .3s, background .3s;
}
.contact-card:hover { border-color: rgba(15,163,177,.45); background: rgba(255,255,255,.09); }
.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(15,163,177,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}
.contact-card h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.contact-card p, .contact-card a {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  line-height: 1.65;
}
.contact-card a:hover { color: var(--teal); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-frame iframe { display: block; width: 100%; height: 320px; border: none; }

/* ── FOOTER ── */
.footer {
  background: #071019;
  padding: 56px 0 28px;
  color: rgba(255,255,255,.6);
}
.footer-logo { height: 50px; object-fit: contain; margin-bottom: 1rem; }
.footer h6 {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: .55rem; }
.footer ul li a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .2s; }
.footer ul li a:hover { color: var(--teal); }
.footer-info-item {
  display: flex;
  gap: .7rem;
  margin-bottom: .7rem;
  font-size: .88rem;
  align-items: flex-start;
}
.footer-info-item i { color: var(--teal); margin-top: .12rem; min-width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.4rem;
  margin-top: 2.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--teal); }
.footer-social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  transition: background .2s, color .2s;
}
.footer-social-icon:hover { background: var(--teal); color: #fff; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(15,163,177,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 999;
  cursor: pointer;
  border: none;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); background: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .about-float-card { left: 0; bottom: -20px; }
  .about-star-card { right: 0; top: -16px; }
  .about-img-main { height: 340px; }
}

@media (max-width: 767px) {
  .hero-video-section { height: 100svh; min-height: 100svh; }
  .hero-flash-wrap { height: 100px; }
  .hero-flash-text { font-size: 1.45rem; }
  .hero-video-cta { font-size: .97rem; padding: .9rem 2rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .g-item:first-child { grid-row: auto; }
  .stats-strip .divider-line { display: none; }
}

@media (max-width: 575px) {
  .hero-video-section { height: 100svh; min-height: 100svh; }
  .hero-flash-wrap { height: 110px; }
  .hero-flash-text { font-size: 1.25rem; }
  .hero-video-cta { font-size: .92rem; padding: .85rem 1.6rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 150px);
  }
  .about-float-card { position: static; margin-top: 1rem; border-radius: var(--radius); }
  .about-star-card { position: static; margin-top: .75rem; border-radius: var(--radius); }
}