/* LinenLuxe Laundry — theme: white main background, gold accents, navy contrast */

:root {
  --white: #ffffff;        /* main background */
  --gold: #c9a24b;         /* buttons, accents, section highlights */
  --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  --navy: #1a2a4a;         /* contrast only: headings, navbar, footer */
  --gold-tint: rgba(201, 162, 75, 0.06);
  --text: #333333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.2rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.gold-divider {
  width: 64px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 1rem auto 2.5rem;
}

.gold-divider-left { margin-left: 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-gradient);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 162, 75, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold-tint);
  transform: translateY(-2px);
}

.btn-small { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Premium CTA — gold gradient, glow, lift + shine on hover */
.btn-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-gradient);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 1rem 2.3rem;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  /* Default shadow — soft drop below the button */
  box-shadow: 0 8px 24px rgba(201, 162, 75, 0.4);
}

.btn-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

/* Hover / focus — shadow grows into a gold glow */
.btn-cta:hover,
.btn-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(201, 162, 75, 0.55), 0 0 0 4px rgba(201, 162, 75, 0.25);
}

/* Click — button presses down with a tight inset shadow */
.btn-cta:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(201, 162, 75, 0.45), inset 0 3px 8px rgba(26, 42, 74, 0.3);
}

.btn-cta:hover::after { left: 130%; }

.btn-cta:hover svg { transform: translateX(4px); }

/* Navbar — wide slim floating glass bar, navy tinted */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  background: rgba(26, 42, 74, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(26, 42, 74, 0.3);
  z-index: 100;
}

.navbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0.5rem 2.2rem;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.brand span { color: var(--gold); }

.brand .brand-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-left: 0.5rem;
}

/* Offset anchor jumps so the floating navbar doesn't cover section titles */
section[id] { scroll-margin-top: 100px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:not(.btn):hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero — full-screen image with navy overlay, text left-aligned */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 7rem 0 6rem;
  background:
    linear-gradient(180deg, rgba(26, 42, 74, 0.85) 0%, rgba(26, 42, 74, 0.65) 55%, rgba(26, 42, 74, 0.8) 100%),
    url('../assets/images/hero.jpg') center / cover no-repeat;
}

.hero-content { max-width: 1100px; }

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 18px rgba(26, 42, 74, 0.55);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-weight: 700;
}

.hero-line-gold {
  color: #d6b46a;
}

.hero-line-white {
  color: var(--white);
}

/* Decorative ampersand — gold italic accent */
.hero-amp {
  font-style: italic;
  font-weight: 600;
  color: #d6b46a;
  padding: 0 0.12em;
  font-size: 1.08em;
}

/* Ornamental gold divider under the headline */
.hero-ornament {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: min(440px, 80%);
  margin: 1.6rem 0 1.4rem;
}

.hero-ornament-line {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(214, 180, 106, 1), rgba(214, 180, 106, 0.25));
}

.hero-ornament-line:last-child {
  background: linear-gradient(90deg, rgba(214, 180, 106, 0.25), rgba(214, 180, 106, 1));
}

.hero-ornament-diamond {
  color: #d6b46a;
  font-size: 1rem;
  line-height: 1;
}

.hero-sub {
  max-width: 560px;
  margin: 0 0 2.2rem;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  color: #d6b46a;
  text-shadow: 0 1px 12px rgba(26, 42, 74, 0.6);
}

.hero .btn-outline {
  color: var(--white);
  border-color: var(--gold);
}

.hero .btn-outline:hover {
  background: rgba(201, 162, 75, 0.18);
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-points {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.hero-points li {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(26, 42, 74, 0.6);
}

.hero-points li::before {
  content: "\2726";
  color: var(--gold);
  margin-right: 0.5rem;
}

/* Sections */
.section {
  padding: 5rem 0;
  text-align: center;
}

.section-highlight {
  background: var(--gold-tint);
  border-top: 1px solid rgba(201, 162, 75, 0.25);
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(26, 42, 74, 0.1);
}

.service-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.95rem; }

/* Services image slider */
.services-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.services-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 0.5rem 0.3rem 1rem;
  flex: 1;
  scrollbar-width: none;
}

.services-track::-webkit-scrollbar { display: none; }

.service-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(26, 42, 74, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(26, 42, 74, 0.16);
}

.service-slide-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-slide:hover .service-slide-media img { transform: scale(1.06); }

.service-slide-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.4rem 1.4rem 1.6rem;
  text-align: left;
}

.service-slide-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-slide-body p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.3rem;
  flex: 1;
}

.service-slide-btn {
  align-self: flex-start;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-slide:hover .service-slide-btn {
  background: var(--gold-gradient);
  color: var(--navy);
}

.services-viewall { margin-top: 0.5rem; }

@media (max-width: 900px) {
  .service-slide { flex-basis: calc((100% - 1.5rem) / 2); }
}

@media (max-width: 600px) {
  .service-slide { flex-basis: 86%; }
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.step-number {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; }

/* Sanitization & Hygiene — split layout */
.sani-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.sani-media { position: relative; }

.sani-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1402 / 1122; /* reserve space to avoid layout shift on load */
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(26, 42, 74, 0.2);
}

.sani-img[hidden] { display: none; }
.sani-img-fallback[hidden] { display: none; }

.sani-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 320px;
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), #243a63);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  box-shadow: 0 18px 44px rgba(26, 42, 74, 0.2);
}

.sani-content h2 { margin-bottom: 0.4rem; }

.sani-sub {
  font-size: 1.08rem;
  color: var(--text);
  margin: 0.6rem 0 1.9rem;
}

.sani-features {
  list-style: none;
  display: grid;
  gap: 1.3rem;
  margin-bottom: 2.2rem;
}

.sani-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.sani-ic {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.12);
  color: var(--gold);
}

.sani-ic svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.sani-feat-text {
  font-size: 0.94rem;
  color: #666;
  line-height: 1.5;
}

.sani-feat-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

@media (max-width: 760px) {
  .sani-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Pricing */
/* Inline UAE Dirham symbol — matched to the digit cap-height, sitting on the baseline */
.dh {
  height: 0.72em;
  width: auto;
  vertical-align: baseline;
  margin-right: 3px;
}

/* Marketing highlights */
.price-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  max-width: 880px;
  margin: 0 auto 2.8rem;
}

.price-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(201, 162, 75, 0.45);
  border-radius: 999px;
  font-size: 0.86rem;
}

.price-perks li strong { color: var(--white); }

.perk-ic {
  color: var(--gold);
  font-size: 0.8rem;
  line-height: 1;
}

.price-perks .dh { filter: none; }

/* Service price cards */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.price-card {
  background: var(--white);
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 6px 20px rgba(26, 42, 74, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(26, 42, 74, 0.14);
}

.price-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}

.price-from {
  font-size: 0.9rem;
  color: #777;
}

.price-amt {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-left: 0.15rem;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  white-space: nowrap;
}

.price-from small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #999;
}

/* "Per Bag" unit next to a price */
.price-unit {
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-left: 0.25rem;
}

/* Subtle note below a price */
.price-watermark {
  margin-top: 0.5rem;
  font-size: 0.74rem;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #6b7280;
}

/* Notes */
.price-express {
  margin-top: 2.5rem;
  font-size: 0.92rem;
  color: var(--navy);
}

.price-express strong { color: var(--gold-strong, #b8902f); }

.price-disclaimer {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: #888;
  font-style: italic;
}

/* View full price list button */
.price-pdf-btn {
  margin-top: 2rem;
}

/* Testimonials & Sanitization — gold-tinted with a soft animated gold glow */
#testimonials,
#sanitization {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, rgba(201, 162, 75, 0.07) 100%);
}

/* Sanitization fades back to white at the bottom + a crisp divider, so it
   stays visually separate from the gold-tinted Pricing section below it */
#sanitization {
  background: linear-gradient(180deg, var(--white) 0%, rgba(201, 162, 75, 0.08) 50%, var(--white) 100%);
  border-bottom: 1px solid rgba(201, 162, 75, 0.3);
}

#testimonials::before,
#testimonials::after,
#sanitization::before,
#sanitization::after {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 760px;
  max-height: 760px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.18), rgba(201, 162, 75, 0) 65%);
}

#testimonials::before,
#sanitization::before {
  top: -18%;
  left: -10%;
  animation: gold-drift-a 14s ease-in-out infinite alternate;
}

#testimonials::after,
#sanitization::after {
  bottom: -22%;
  right: -8%;
  background: radial-gradient(circle, rgba(26, 42, 74, 0.1), rgba(26, 42, 74, 0) 65%);
  animation: gold-drift-b 16s ease-in-out infinite alternate;
}

#testimonials .container,
#sanitization .container {
  position: relative;
  z-index: 1;
}

@keyframes gold-drift-a {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(8%, 10%) scale(1.12); }
}

@keyframes gold-drift-b {
  from { transform: translate(0, 0) scale(1.05); }
  to   { transform: translate(-7%, -9%) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  #testimonials::before,
  #testimonials::after,
  #sanitization::before,
  #sanitization::after { animation: none; }
}

/* Testimonials slider */
.testimonials-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 0.6rem 0.3rem 1rem;
  flex: 1;
  scrollbar-width: none; /* Firefox */
}

.testimonials-track::-webkit-scrollbar { display: none; } /* WebKit */

.testimonials-track .testimonial {
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
}

.slider-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.6);
  background: var(--white);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(26, 42, 74, 0.12);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.slider-btn:hover {
  background: var(--gold-gradient);
  color: var(--navy);
  transform: scale(1.08);
}

.slider-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
  background: var(--white);
}

/* Testimonials */
.testimonial {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(26, 42, 74, 0.08);
  padding: 2.4rem 1.8rem 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(26, 42, 74, 0.16);
}

/* Large decorative quotation mark, top-left */
.testimonial-quote {
  position: absolute;
  top: 0.1rem;
  left: 1.1rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(201, 162, 75, 0.28);
  pointer-events: none;
}

.testimonial-stars {
  position: relative;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.testimonial-text {
  position: relative;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 2px rgba(201, 162, 75, 0.5);
}

.author-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.96rem;
}

.author-loc {
  font-size: 0.82rem;
  color: #777;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
}

.verified-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  line-height: 1;
}

/* About — full-width background image with navy overlay (darker on the left) */
#about {
  position: relative;
  background:
    linear-gradient(100deg, rgba(26, 42, 74, 0.78) 0%, rgba(26, 42, 74, 0.62) 45%, rgba(26, 42, 74, 0.48) 100%),
    url('../assets/images/about-bg.jpg') center / cover no-repeat;
}

/* On-image text → white / gold for readability */
#about h2,
#about .about-subheading {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

#about .about-lead {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

#about .about-story p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Trust panel becomes a navy glass card so its text stays readable */
#about .about-trust {
  background: rgba(26, 42, 74, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-color: rgba(201, 162, 75, 0.5);
}

#about .about-trust .about-subheading { color: var(--white); }

#about .trust-list li { color: rgba(255, 255, 255, 0.92); }

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
  margin-bottom: 3.5rem;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.about-story p { margin-bottom: 1rem; }
.about-story p:last-child { margin-bottom: 0; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat {
  background: var(--white);
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: 12px;
  padding: 1.6rem 1rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(26, 42, 74, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(26, 42, 74, 0.12);
}

.about-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
}

.about-subheading {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 3.5rem;
}

.value-card {
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 6px 20px rgba(26, 42, 74, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(26, 42, 74, 0.14);
}

.value-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.12);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.value-card p { font-size: 0.94rem; }

.about-trust {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(201, 162, 75, 0.06);
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 14px;
  padding: 2.2rem 2rem;
}

.trust-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  text-align: left;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.96rem;
  color: var(--text);
}

.trust-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.contact-list li { margin-bottom: 0.6rem; }
.contact-list a { color: var(--navy); }
.contact-list strong { color: var(--navy); }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 4px;
  padding: 2rem;
}

.contact-form h3 { margin-bottom: 1.2rem; }

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-form label[hidden] { display: none; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #d9d2c2;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}

.contact-form textarea { resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.label-optional {
  font-weight: 400;
  color: #8a8a8a;
  text-transform: none;
  letter-spacing: 0;
}

/* Honeypot — visually hidden, off accessibility tree for real users */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* WhatsApp booking button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  margin-top: 0.7rem;
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.form-status {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  min-height: 1.2em;
}

/* Footer — navy contrast */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand { font-size: 1.3rem; margin-bottom: 0.4rem; }

.footer-contact {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact-line {
  display: block;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-contact a:hover { color: var(--gold); }

.footer-hours {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

/* Floating action buttons — labelled pills, fixed bottom-right */
.fab-stack {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  z-index: 200;
}

.fab-heading {
  margin: 0;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(26, 42, 74, 0.96), rgba(20, 32, 58, 0.96));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 75, 0.55);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fab-heading span {
  font-style: italic;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

.fab-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1.05rem 0.4rem 0.4rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Glossy top highlight on each pill */
.fab-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

/* Shine sweep on hover */
.fab-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.fab-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.fab-btn:hover::after { left: 130%; }

.fab-btn svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.45);
  fill: var(--white);
}

.fab-btn-label {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.fab-btn-label small {
  font-weight: 500;
  opacity: 0.92;
}

/* WhatsApp — emerald with a green glow */
.fab-whatsapp {
  background: linear-gradient(135deg, #4ae07f 0%, #21b85a 55%, #14924a 100%);
  box-shadow: 0 8px 22px rgba(26, 168, 77, 0.5), 0 2px 6px rgba(0, 0, 0, 0.25);
}

.fab-whatsapp:hover {
  box-shadow: 0 14px 30px rgba(26, 168, 77, 0.6), 0 0 0 4px rgba(74, 224, 127, 0.25);
}

/* Call — metallic gold with a warm glow */
.fab-call {
  background: var(--gold-gradient);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(201, 162, 75, 0.5), 0 2px 6px rgba(0, 0, 0, 0.25);
}

.fab-call svg {
  fill: var(--navy);
  background: rgba(26, 42, 74, 0.18);
  box-shadow: inset 0 0 0 1.5px rgba(26, 42, 74, 0.3);
}

.fab-call .fab-btn-label { text-shadow: none; }

.fab-call:hover {
  box-shadow: 0 14px 30px rgba(201, 162, 75, 0.6), 0 0 0 4px rgba(201, 162, 75, 0.28);
}

/* Thank-you modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(26, 42, 74, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: modal-fade 0.25s ease;
}

.modal-overlay[hidden] { display: none; }

.modal-card {
  position: relative;
  width: min(440px, 100%);
  background: var(--white);
  border-radius: 16px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 24px 60px rgba(26, 42, 74, 0.4);
  padding: 2.6rem 2rem 2.2rem;
  text-align: center;
  animation: modal-pop 0.32s cubic-bezier(0.18, 0.89, 0.32, 1.18);
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: #9aa3b2;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover { color: var(--navy); }

.modal-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy);
  font-size: 1.9rem;
  box-shadow: 0 6px 18px rgba(201, 162, 75, 0.45);
}

.modal-title {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.modal-text {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.6rem;
}

.modal-ok { cursor: pointer; }

@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Mobile */
/* Tablet — 2 review cards visible */
@media (max-width: 900px) {
  .testimonials-track .testimonial {
    flex-basis: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  /* Mobile — 1 review card visible */
  .testimonials-track .testimonial {
    flex-basis: 88%;
  }

  .navbar-inner { gap: 1.5rem; padding: 0.4rem 1.2rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: auto;
    right: 0;
    min-width: 230px;
    background: rgba(26, 42, 74, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.2rem 1.5rem;
    gap: 1.2rem;
    border: 1px solid rgba(201, 162, 75, 0.3);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(26, 42, 74, 0.3);
  }

  .nav-links.open { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }

  .hero { padding: 5rem 0 3.5rem; }

  .hero-points {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2.2rem;
  }

  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Sub-pages: All Services grid & Service detail ===== */
.subpage-hero { padding-top: 8.5rem; }
.subpage-intro { max-width: 620px; margin: 0 auto; }
.subpage-cta { margin-top: 2.5rem; }

/* All Services grid */
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.6rem;
  text-align: left;
}

.grid-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(26, 42, 74, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(26, 42, 74, 0.16);
}

.grid-card-media { aspect-ratio: 4 / 3; overflow: hidden; }

.grid-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.grid-card:hover .grid-card-media img { transform: scale(1.06); }

.grid-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.grid-card-body h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.grid-card-body p { font-size: 0.9rem; color: #666; line-height: 1.45; }

/* Service detail page */
.service-detail-section { padding-top: 8.5rem; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-detail-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(26, 42, 74, 0.2);
}

.service-detail-info { text-align: left; }

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.back-link:hover { color: var(--gold); }

.service-detail-info h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.service-detail-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #b8902f;
  margin-bottom: 1.2rem;
}

.service-detail-desc {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 520px;
}

.service-detail-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.service-detail-actions .btn { margin-top: 0; }

@media (max-width: 820px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
}
