/* =========================================
   The Laundry Room at Atwater Village
   style.css — Shared Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:    #1a4f7a;
  --primary-dk: #0f3254;
  --accent:     #e8b84b;
  --accent-lt:  #f5d98b;
  --light:      #f4f8fb;
  --white:      #ffffff;
  --text:       #2c3e50;
  --muted:      #6b7c8d;
  --border:     #d6e4f0;
  --bubble:     #eaf4fb;
  --radius:     12px;
  --shadow:     0 8px 32px rgba(26,79,122,.12);
  --shadow-lg:  0 20px 60px rgba(26,79,122,.18);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & 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);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
html, body {
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--primary-dk);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── Utility ── */
.section-pad   { padding: 90px 0; }
.section-pad-sm{ padding: 60px 0; }

.badge-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dk);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
}

.divider-wave {
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 16px 0 28px;
}

/* ── Buttons ── */
.btn-primary-custom {
  background: var(--accent);
  color: var(--primary-dk);
  font-weight: 700;
  font-size: 1.35rem;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  letter-spacing: .04em;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,79,122,.25);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.7);
  letter-spacing: .04em;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* ── Top Bar ── */
.topbar {
  background: var(--primary-dk);
  padding: 10px 0;
  font-size: .8rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1060;
  transition: transform var(--transition);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
  font-size: .95rem;
	font-weight: 700;
	color: var(--white);
}
.topbar-left a i { color: var(--accent); font-size: 1rem; }
.topbar-left a:hover { color: var(--accent); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-hours {
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
}
.topbar-hours i { color: var(--accent); }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: color var(--transition);
}
.topbar-social a:hover { color: var(--accent); }

/* ── Navbar ── */
.navbar-custom {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: fixed;
  top: 37px; left: 0; right: 0;
  z-index: 1050;
  transition: box-shadow var(--transition), padding var(--transition), top var(--transition);
}
.navbar-custom.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow);
}
.navbar-custom .navbar-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 0;
}


.navbar-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-dk);
  line-height: 1.15;
}
.navbar-brand-text span { color: var(--accent); }
.navbar-brand-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .04em;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: var(--bubble);
}

.navbar-cta {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
}
.navbar-cta:hover {
  background: var(--accent) !important;
  color: var(--primary-dk) !important;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(15,50,84,.85) 0%, rgba(26,79,122,.70) 60%, rgba(232,184,75,.25) 100%),
    url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-badge {
  background: rgba(232,184,75,.2);
  border: 1px solid rgba(232,184,75,.5);
  color: var(--accent-lt);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.0rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-info-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
}
.hero-info-pill i { color: var(--accent); }

.hero-float-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px;
  max-width: 340px;
  margin-left: auto;
}
.hero-float-card .icon-box {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bubble);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.hero-float-card h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.hero-float-card p {
  font-size: .83rem;
  color: var(--muted);
}
@media (max-width: 767px) {
  #hero .row {
    padding-top: 200px !important;
  }
}
.hero-float-card {
  margin-top: 40px;
}
/* ── Quick Stats ── */
.stats-bar {
  background: var(--primary);
  padding: 36px 0;
  margin-top: -1px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── About ── */
#about { background: var(--light); }

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; }

.about-badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--accent);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.about-badge-float strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-dk);
  line-height: 1;
}
.about-badge-float span {
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary-dk);
  letter-spacing: .06em;
}

.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  margin: 4px 3px;
  transition: var(--transition);
}
.amenity-chip i { color: var(--primary); font-size: .85rem; }
.amenity-chip:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.amenity-chip:hover i { color: var(--accent); }

/* ── Services ── */
#services { background: var(--white); }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--bubble);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--accent);
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── Pricing ── */
#wash-fold { background: var(--light); }

.price-table-wrap {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-header {
  background: var(--primary);
  color: var(--white);
  padding: 20px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}
.price-header i { color: var(--accent); margin-right: 8px; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  transition: background var(--transition);
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bubble); }
.price-row .price-name { font-weight: 500; color: var(--text); }
.price-row .price-val { font-weight: 700; color: var(--primary); font-size: 1rem; }

.price-note {
  background: var(--bubble);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 12px 20px;
  font-size: .84rem;
  color: var(--muted);
  margin: 16px 28px 24px;
}

.special-items-grid { }
.special-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  height: 100%;
  transition: var(--transition);
}
.special-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.special-card .sc-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.special-card h6 {
  font-size: .95rem;
  margin-bottom: 8px;
}
.special-card ul {
  list-style: none;
  font-size: .85rem;
  color: var(--muted);
}
.special-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed var(--border);
}
.special-card ul li:last-child { border-bottom: none; }
.special-card ul li span { font-weight: 600; color: var(--primary); }

/* ── Pick Up Delivery ── */
#pickup-delivery {
  background:
    linear-gradient(135deg, rgba(15,50,84,.92) 0%, rgba(26,79,122,.85) 100%),
    url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1600&q=80') center/cover no-repeat fixed;
  color: var(--white);
}

#pickup-delivery h2, #pickup-delivery h3, #pickup-delivery h5 { color: var(--white); }
#pickup-delivery .section-sub { color: rgba(255,255,255,.8); }
#pickup-delivery .divider-wave { background: linear-gradient(90deg, var(--accent), var(--accent-lt)); }

.delivery-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.delivery-feature .df-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
}
.delivery-feature h6 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 2px;
}
.delivery-feature p { font-size: .88rem; color: rgba(255,255,255,.7); margin: 0; }

.delivery-price-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}
.delivery-price-box .big-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.delivery-price-box .price-suffix { font-size: 1rem; color: rgba(255,255,255,.7); }
.delivery-price-box .min-order {
  background: rgba(232,184,75,.2);
  border: 1px solid rgba(232,184,75,.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent-lt);
  display: inline-block;
  margin-top: 12px;
}

/* ── Testimonials ── */
#testimonials {
  background:
    linear-gradient(135deg, rgba(15,50,84,.92) 0%, rgba(26,79,122,.85) 100%),
    url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1600&q=80') center/cover no-repeat fixed;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--primary);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--accent);
}
.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: 18px; right: 24px;
  user-select: none;
}
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: .93rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.75;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .92rem; }
.author-location { font-size: .78rem; color: var(--muted); }
#testimonials .section-title { color: var(--white); }
#testimonials .section-sub { color: rgba(255,255,255,.8); }
#testimonials .badge-pill { 
  background: rgba(232,184,75,.2); 
  color: var(--accent-lt); 
  border: 1px solid rgba(232,184,75,.4); 
}
#testimonials .divider-wave { 
  background: linear-gradient(90deg, var(--accent), var(--accent-lt)); 
}
/* ── Gallery Preview ── */
#gallery { background: var(--white); }

.gallery-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-thumb img {
  width: 100%; height: 240px;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-thumb:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,50,84,.75) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end;
  padding: 16px;
}
.gallery-thumb:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
}

/* ── Contact ── */
#contact { background: var(--light); }

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.ci-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  background: var(--bubble);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}
.ci-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.ci-val { font-weight: 600; color: var(--text); font-size: .95rem; }
.ci-sub { font-size: .82rem; color: var(--muted); }

.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e6f9ec;
  color: #1a7a3c;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  margin-top: 6px;
}
.hours-badge i { font-size: .8rem; }

.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,79,122,.12);
}
.contact-form label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.contact-form textarea { resize: vertical; min-height: 130px; }

/* ── Map Section ── */
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ── Footer ── */
footer {
  background: var(--primary-dk);
  color: rgba(255,255,255,.8);
  padding: 60px 0 28px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: .88rem; line-height: 1.75; margin-bottom: 20px; }

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  transition: var(--transition);
  margin-right: 8px;
}
.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dk);
  transform: translateY(-2px);
}

.footer-divider {
  border-color: rgba(255,255,255,.1);
  margin: 32px 0 20px;
}

.footer-copy { font-size: .82rem; color: rgba(255,255,255,.5); }

/* ── Page Hero (Inner) ── */
.page-hero {
  padding: 140px 0 80px;
  background:
    linear-gradient(135deg, rgba(15,50,84,.9) 0%, rgba(26,79,122,.8) 100%),
    url('https://images.unsplash.com/photo-1545173168-9f1947eebb7f?w=1600&q=80') center/cover no-repeat;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem,5vw,3.2rem); }
.page-hero p { color: rgba(255,255,255,.8); margin-top: 10px; }
.page-hero nav { --bs-breadcrumb-divider: '›'; }
.breadcrumb { justify-content: center; }
.breadcrumb-item a { color: var(--accent); }
.breadcrumb-item, .breadcrumb-item.active { color: rgba(255,255,255,.7); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Gallery Page ── */
.gallery-filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--muted);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item.tall img { height: 400px; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,50,84,.8) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay .gi-title {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.gallery-item-overlay .gi-zoom {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .9rem;
}

/* ── Lightbox ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,35,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--accent); color: var(--primary-dk); }

/* ── Scroll Top ── */
#scrollTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  border: none;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
#scrollTop.show { display: flex; }
#scrollTop:hover { background: var(--accent); color: var(--primary-dk); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .section-pad { padding: 64px 0; }
  .hero-float-card { display: none; }
  #hero { min-height: 88vh; }
  .topbar-hours { display: none; }
}
@media (max-width: 767px) {
  .section-pad { padding: 48px 0; }
  .navbar-brand-text { font-size: 1.05rem; }
  .topbar-left a:last-child { display: none; }
  .navbar-custom { top: 33px; }
}
/* ── How It Works ── */
#how-it-works { background: var(--white); }

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hiw-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.hiw-step:hover .hiw-icon-wrap {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hiw-step:hover .hiw-icon-wrap i {
  color: var(--accent) !important;
}

.hiw-step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-dk);
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.hiw-step h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary-dk);
}

.hiw-step p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 180px;
  margin: 0 auto;
}

.hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  padding-bottom: 50px;
}
/* ── Promo Banner ── */
.promo-banner {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dk) 100%);
  padding: 11px 0;
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 1055;
  transition: transform var(--transition);
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.promo-icon { font-size: 1rem; }

.promo-banner p {
  margin: 0;
  font-size: .88rem;
  color: rgba(255,255,255,.95);
  text-align: center;
}

.promo-banner p strong {
  color: var(--accent);
}

.promo-banner p a {
  color: var(--accent-lt);
  text-decoration: underline;
  font-weight: 600;
  transition: color var(--transition);
}

.promo-banner p a:hover { color: var(--white); }

.promo-close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
  line-height: 1;
}

.promo-close:hover { color: var(--white); }

.promo-banner.hidden {
  transform: translateY(-100%);
  pointer-events: none;
}