
:root {
  --navy: #4a0e1f;
  --navy-mid: #6b1a30;
  --navy-light: #8a2340;
  --gold: #D4AF37;
  --gold-light: #E8CF7A;
  --gold-pale: #F8F0D8;
  --cream: #fbf8f1;
  --white: #ffffff;
  --text-dark: #4a0e1f;
  --text-mid: #7a3d50;
  --text-light: #9a6a7a;
  --teal: #0ea5a0;
  --teal-light: #d5f4f2;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(74,14,31,0.97);
  backdrop-filter: blur(10px);
  padding: 0 4rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600;
  color: var(--navy);
}
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.nav-name span { display: block; font-size: 11px; font-weight: 300; color: var(--gold-light); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  box-shadow: 0 4px 14px rgba(212,175,55,0.35), 0 1px 3px rgba(0,0,0,0.2) !important;
  cursor: pointer !important;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(212,175,55,0.45), 0 2px 5px rgba(0,0,0,0.25) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 4rem;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 12px; color: var(--gold-light);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 14px rgba(212,175,55,0.35), 0 1px 3px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.45), 0 2px 5px rgba(0,0,0,0.25);
}
.btn-wa {
  background: #25d366;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s;
}
.btn-wa:hover { background: #1ebe5a; }
.hero-visual {
  position: relative;
}
.hero-cards-stack {
  display: flex; flex-direction: column; gap: 12px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.hero-card-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.hero-card-icon.clean { background: rgba(15,122,107,0.2); }
.hero-card-icon.cater { background: rgba(201,168,76,0.15); }
.hero-card-icon.host { background: rgba(30,63,122,0.4); }
.hero-card-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.hero-card-title { font-size: 16px; color: white; font-weight: 500; }
.hero-card-badge {
  margin-left: auto;
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 99px;
  font-size: 11px;
  padding: 4px 12px;
  white-space: nowrap;
}

/* ── HERO SLIDESHOW ── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroSlide 36s infinite;
  filter: brightness(1.15) contrast(1.1);
}
.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 4s; }
.hero-slideshow img:nth-child(3) { animation-delay: 8s; }
.hero-slideshow img:nth-child(4) { animation-delay: 12s; }
.hero-slideshow img:nth-child(5) { animation-delay: 16s; }
.hero-slideshow img:nth-child(6) { animation-delay: 20s; }
.hero-slideshow img:nth-child(7) { animation-delay: 24s; }
.hero-slideshow img:nth-child(8) { animation-delay: 28s; }
.hero-slideshow img:nth-child(9) { animation-delay: 32s; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(50,12,22,0.82) 0%, rgba(50,12,22,0.65) 50%, rgba(50,12,22,0.75) 100%);
  z-index: 1;
}
@keyframes heroSlide {
  0% { opacity: 0; transform: scale(1.05); }
  5% { opacity: 1; transform: scale(1); }
  16.6% { opacity: 1; transform: scale(1); }
  22% { opacity: 0; transform: scale(1.03); }
  100% { opacity: 0; transform: scale(1.05); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gold);
  padding: 2rem 4rem;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-stat { text-align: center; }
.trust-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 13px;
  color: rgba(74,14,31,0.7);
  font-weight: 400;
}
.trust-divider {
  width: 1px; background: rgba(74,14,31,0.15);
  align-self: center; height: 50px;
}

/* ── SECTION COMMON ── */
section { padding: 6rem 4rem; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-gold-wash::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 80%, rgba(212,175,55,0.06) 0%, transparent 40%),
              radial-gradient(circle at 80% 20%, rgba(212,175,55,0.04) 0%, transparent 40%);
  z-index: 0;
}
.section-gold-wash .section-inner { position: relative; z-index: 1; }
.section-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* ── SERVICES ── */
.services-bg { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 3.5rem;
}
.service-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.service-card-cleaning {
  background: var(--navy);
}
.service-card-catering {
  background: #1a0a00;
}
.service-card-hosting {
  background: linear-gradient(135deg, #1a1025 0%, #2d1b3e 100%);
}
.service-card-inner {
  padding: 2.5rem;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 1.5rem;
}
.service-icon.clean-icon { background: rgba(15,122,107,0.2); }
.service-icon.cater-icon { background: rgba(201,168,76,0.15); }
.service-icon.host-icon { background: rgba(176,137,216,0.15); }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 500;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-features {
  list-style: none;
  margin-bottom: 2rem;
}
.service-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── WHY US ── */
.whyus-bg { background: white; }
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 3.5rem;
}
.why-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.15);
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 1.25rem;
}
.why-title {
  font-size: 15px; font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.why-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── BEFORE/AFTER ── */
.gallery-bg { background: var(--navy); }
.gallery-bg .section-label { color: var(--gold-light); }
.gallery-bg .section-title { color: white; }
.gallery-bg .section-sub { color: rgba(255,255,255,0.55); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-mock {
  width: 100%; height: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
}
.gallery-before {
  background: #2a1f1f;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
}
.gallery-after {
  background: #1a2f28;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
}
.gallery-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.gallery-icon { font-size: 28px; }
.gallery-divider {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--gold);
  transform: translateX(-50%);
}
.gallery-divider::after {
  content: '↔';
  position: absolute; top: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  left: 50%;
}
.gallery-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(74,14,31,0.85);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 99px;
}

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3.5rem;
}
.testi-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--gold-pale);
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 500;
  color: white;
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--text-light); }

/* ── FAQ ── */
.faq-bg { background: white; }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  margin-top: 1rem;
}
.faq-intro-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.faq-contact-box {
  background: var(--navy);
  border-radius: 14px;
  padding: 1.5rem;
  margin-top: 1rem;
}
.faq-contact-box p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.faq-list { margin-top: 1rem; }
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1.1rem 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-size: 15px; font-weight: 500;
  color: var(--navy);
  gap: 1rem;
}
.faq-toggle {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--gold);
  transition: background 0.2s;
}
.faq-answer {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 0.75rem;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { background: var(--gold); color: var(--navy); }

/* ── CONTACT ── */
.contact-bg { background: var(--navy); }
.contact-bg .section-label { color: var(--gold-light); }
.contact-bg .section-title { color: white; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
  align-items: start;
}
.contact-info-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.contact-info-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-info-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
.contact-info-value { font-size: 15px; color: white; font-weight: 500; }
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 2.5rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field select { color: rgba(255,255,255,0.7); }
.form-field select option { background: var(--navy); color: white; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--gold-light); }

/* ── CERTIFICATIONS ── */
.certs-strip {
  background: var(--gold-pale);
  padding: 1.5rem 4rem;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.certs-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  flex-wrap: wrap;
}
.cert-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--navy); font-weight: 500;
}
.cert-badge span { font-size: 22px; }

/* ── FOOTER ── */
footer {
  background: #2a0a12;
  padding: 3rem 4rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500;
  color: white;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.social-icon:hover { background: rgba(201,168,76,0.15); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  background: #25d366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ── ANNOTATION OVERLAYS ── */
.annot {
  display: inline-flex; align-items: center; gap: 5px;
  background: #ff6b35;
  color: white;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── VIDEO SECTION ── */
.video-bg { background: var(--cream); }
.video-layout {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.video-featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--navy);
  cursor: pointer;
}
.video-featured-thumb {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #3d0e1c 0%, #5c1a30 50%, #280812 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.video-featured-bg-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px;
  font-weight: 600;
  color: rgba(201,168,76,0.06);
  letter-spacing: -0.05em;
  user-select: none;
  white-space: nowrap;
}
.video-play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  position: relative; z-index: 2;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 0 0 16px rgba(201,168,76,0.15);
}
.video-featured:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--gold-light);
}
.video-play-btn-sm {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 0 0 10px rgba(201,168,76,0.18);
  z-index: 2;
}
.video-card:hover .video-play-btn-sm {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold-light);
}
.video-featured-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top, rgba(42,10,18,0.95) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
}
.video-featured-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}
.video-featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 500;
  color: white;
  line-height: 1.2;
}
.video-featured-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.video-duration {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
  align-self: flex-end;
}
.video-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--navy);
}
.video-card-thumb {
  aspect-ratio: 16/10;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.video-card-thumb.clean-vid {
  background: linear-gradient(135deg, #0f3d2e 0%, #0a2820 100%);
}
.video-card-thumb.cater-vid {
  background: linear-gradient(135deg, #3d1f00 0%, #281500 100%);
}
.video-card-thumb.testi-vid {
  background: linear-gradient(135deg, #3d0e1c 0%, #2a0a12 100%);
}
.video-card-icon-bg {
  font-size: 48px;
  opacity: 0.18;
  position: absolute;
}
.video-card-meta {
  padding: 1.1rem 1.25rem;
}
.video-card-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 5px;
}
.video-card-title {
  font-size: 15px;
  font-weight: 500;
  color: white;
  line-height: 1.3;
  margin-bottom: 4px;
}
.video-card-dur {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.video-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--gold-pale);
  border-radius: 10px;
  border: 1px dashed rgba(201,168,76,0.4);
}

/* ── VIDEO MODAL ── */
.video-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5,10,25,0.92);
  align-items: center; justify-content: center;
}
.video-modal-overlay.open { display: flex; }
.video-modal {
  width: 90%; max-width: 820px;
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
}
.video-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.video-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: white; font-weight: 500;
}
.video-modal-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.video-modal-close:hover { background: rgba(255,255,255,0.15); }
.video-modal-player {
  aspect-ratio: 16/9;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  position: relative;
}
.video-modal-player-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
  opacity: 0.07;
}
.video-player-controls {
  display: flex; align-items: center; gap: 12px;
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.player-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.player-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 99px;
  position: relative;
}
.player-progress {
  width: 35%;
  height: 100%;
  background: var(--gold);
  border-radius: 99px;
}
.player-time {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.player-vol {
  font-size: 16px;
  cursor: pointer;
}
.video-modal-footer {
  padding: 1rem 1.5rem;
  display: flex; gap: 10px; justify-content: center;
}
.video-thumb-mini {
  width: 80px; height: 50px;
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  position: relative;
}
.video-thumb-mini.active { border-color: var(--gold); }
.video-thumb-mini:nth-child(1) { background: linear-gradient(135deg, #3d0e1c, #5c1a30); }
.video-thumb-mini:nth-child(2) { background: linear-gradient(135deg, #3d1f00, #281500); }
.video-thumb-mini:nth-child(3) { background: linear-gradient(135deg, #1a1025, #2d1b3e); }

/* ── QUOTE MODAL ── */
.quote-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 600;
  background: rgba(42,10,18,0.85);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.quote-modal-overlay.open { display: flex; }
.quote-modal {
  width: 92%; max-width: 520px;
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.3);
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.quote-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2rem;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.quote-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: white; font-weight: 500;
}
.quote-modal-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.quote-modal-close:hover { background: rgba(255,255,255,0.15); }
.quote-modal-body {
  padding: 2rem;
}
.quote-form-field {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem;
}
.quote-form-field label {
  font-size: 12px; color: var(--text-mid); letter-spacing: 0.04em; font-weight: 500;
}
.quote-form-field input,
.quote-form-field select,
.quote-form-field textarea {
  background: white;
  border: 1px solid rgba(74,14,31,0.15);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.quote-form-field input:focus,
.quote-form-field select:focus,
.quote-form-field textarea:focus { border-color: var(--gold); }
.quote-form-field input::placeholder,
.quote-form-field textarea::placeholder { color: rgba(74,14,31,0.3); }
.quote-form-field textarea { resize: vertical; min-height: 80px; }
.quote-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.quote-form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}
.quote-form-submit:hover { background: var(--gold-light); }
.quote-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.quote-success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.quote-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--navy); font-weight: 500;
  margin-bottom: 0.5rem;
}
.quote-success-text {
  font-size: 14px; color: var(--text-mid); line-height: 1.6;
}

/* ── LANG TOGGLE ── */
.lang-toggle {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 99px;
  padding: 3px;
  gap: 2px;
  margin-left: 0.5rem;
}
.lang-btn {
  padding: 5px 13px;
  border-radius: 99px;
  border: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
  background: transparent;
  color: rgba(255,255,255,0.5);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
}

/* ── FOCUS & ACCESSIBILITY ── */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.video-featured,
.video-card,
.video-thumb-mini,
.video-modal-close,
.player-vol {
  cursor: pointer;
}

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity:1; transform:translateY(0); }
.services-grid .reveal:nth-child(1){transition-delay:0s;} .services-grid .reveal:nth-child(2){transition-delay:0.1s;} .services-grid .reveal:nth-child(3){transition-delay:0.2s;}
.whyus-grid .reveal:nth-child(1){transition-delay:0s;} .whyus-grid .reveal:nth-child(2){transition-delay:0.1s;} .whyus-grid .reveal:nth-child(3){transition-delay:0.2s;} .whyus-grid .reveal:nth-child(4){transition-delay:0.3s;}
.gallery-grid .reveal:nth-child(1){transition-delay:0s;} .gallery-grid .reveal:nth-child(2){transition-delay:0.12s;} .gallery-grid .reveal:nth-child(3){transition-delay:0.24s;}
.testimonials-grid .reveal:nth-child(1){transition-delay:0s;} .testimonials-grid .reveal:nth-child(2){transition-delay:0.12s;} .testimonials-grid .reveal:nth-child(3){transition-delay:0.24s;}
.faq-list .reveal:nth-child(1){transition-delay:0s;} .faq-list .reveal:nth-child(2){transition-delay:0.08s;} .faq-list .reveal:nth-child(3){transition-delay:0.16s;} .faq-list .reveal:nth-child(4){transition-delay:0.24s;}
.video-cards-row .reveal:nth-child(1){transition-delay:0s;} .video-cards-row .reveal:nth-child(2){transition-delay:0.1s;} .video-cards-row .reveal:nth-child(3){transition-delay:0.2s;}

/* ── HERO TEXT STAGGER ── */
.hero-content>div>.hero-badge,.hero-content>div>h1,.hero-content>div>.hero-sub,.hero-content>div>.hero-actions{opacity:0;transform:translateY(20px);animation:heroStaggerIn .6s cubic-bezier(0.25,0.46,0.45,0.94) forwards;}
.hero-content>div>.hero-badge{animation-delay:.2s;} .hero-content>div>h1{animation-delay:.4s;} .hero-content>div>.hero-sub{animation-delay:.6s;} .hero-content>div>.hero-actions{animation-delay:.8s;}
@keyframes heroStaggerIn{to{opacity:1;transform:translateY(0);}}

/* ── SERVICE CARD HOVER LIFT ── */
.service-card{transition:transform .35s ease,box-shadow .35s ease;border:1px solid transparent;}
.service-card:hover{transform:translateY(-8px);box-shadow:0 24px 48px rgba(7,20,40,0.18);}
.service-card-cleaning:hover{border-color:rgba(212,175,55,0.25);} .service-card-catering:hover{border-color:rgba(212,175,55,0.25);} .service-card-hosting:hover{border-color:rgba(176,137,216,0.35);}

/* ── NAV UNDERLINE SLIDE ── */
.nav-links a:not(.nav-cta){position:relative;}
.nav-links a:not(.nav-cta)::after{content:'';position:absolute;bottom:-4px;left:0;width:100%;height:2px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .3s ease;}
.nav-links a:not(.nav-cta):hover::after{transform:scaleX(1);}

/* ── BUTTON GLOW ── */
.btn-primary{transition:background .2s,transform .15s,box-shadow .3s ease;}
.btn-primary:hover{transform:scale(1.02);box-shadow:0 4px 20px rgba(212,175,55,0.35);}

/* ── WHATSAPP PULSE ── */
.btn-wa{position:relative;overflow:visible;}
.btn-wa::before{content:'';position:absolute;inset:-4px;border-radius:12px;border:2px solid rgba(37,211,102,0.4);opacity:0;animation:waPulse 4s ease-in-out infinite;}
@keyframes waPulse{0%,100%{opacity:0;transform:scale(1);}50%{opacity:1;transform:scale(1.05);}75%{opacity:0;transform:scale(1.08);}}

/* ── PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(13,27,62,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 1.25rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu .lang-toggle { margin-top: 0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  section { padding: 5rem 3rem; }
  nav { padding: 0 2.5rem; }
  .hero-content { padding: 0 2.5rem; }
  .trust-bar, .certs-strip { padding-left: 2.5rem; padding-right: 2.5rem; }
  footer { padding: 3rem 2.5rem 2rem; }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 100px;
    padding-bottom: 3rem;
  }
  .hero { min-height: auto; }
  .hero h1 { font-size: 44px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .video-cards-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-divider:nth-child(4), .trust-divider:nth-child(6) { display: none; }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  nav { padding: 0 1.25rem; height: 64px; background: rgba(50,12,22,0.98); }
  .hero-content { padding: 0 1.25rem; padding-top: 90px; padding-bottom: 2.5rem; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(50,12,22,0.88) 0%, rgba(50,12,22,0.78) 100%); }
  .hero-slideshow img { animation-duration: 36s; }
  .section-title { font-size: 32px; }
  .trust-bar, .certs-strip { padding: 1.5rem 1.25rem; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .trust-divider { display: none; }
  .certs-inner { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .whyus-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .video-cards-row { grid-template-columns: 1fr; }
  .video-featured { aspect-ratio: 16/9; }
  .video-featured-title { font-size: 24px; }
  .video-featured-bg-text { font-size: 80px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 2.5rem 1.25rem 1.5rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links .lang-toggle { display: none; }
  .nav-links { gap: 1rem; }
  .nav-hamburger { display: flex; }
  .about-bg { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .wa-float { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 20px; }
  .contact-form { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .section-title { font-size: 26px; }
  .btn-primary, .btn-wa { padding: 12px 20px; font-size: 13px; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-number { font-size: 32px; }
  .hero-card { padding: 16px 18px; }
  .hero-card-title { font-size: 14px; }
  .hero-card-badge { display: none; }
  .service-card-inner { padding: 1.75rem; }
  .service-card h3 { font-size: 24px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: fadeUp 0.5s ease both; }
.hero h1 { animation: fadeUp 0.55s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.55s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.55s 0.3s ease both; }
.hero-visual { animation: fadeUp 0.6s 0.4s ease both; }
.video-link {text-decoration:none;color: inherit}
