/* ================================================================
   HAYAT FLOWER DECORATION — Main Stylesheet v1.1
   Design: Modern, clean, image-forward
   Fonts: Plus Jakarta Sans (headings) + DM Sans (body)
   ================================================================ */

/* ────────────────────────────────────────────────────────────────
   1. DESIGN TOKENS
───────────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --color-gold:         #C9A227;
  --color-gold-light:   #E0B83A;
  --color-gold-dark:    #A07D15;
  --color-rose:         #E8526A;
  --color-rose-light:   #FFF0F2;
  --color-dark:         #0F0F1A;
  --color-charcoal:     #1C1C2E;
  --color-text:         #2D2D3A;
  --color-text-light:   #6B6B80;
  --color-border:       #E4E4EE;
  --color-border-light: #F0F0F8;
  --color-white:        #FFFFFF;
  --color-bg:           #FFFFFF;
  --color-bg-soft:      #F8F8FC;
  --color-bg-section:   #F4F4FA;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Font Sizes */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;

  /* Layout */
  --container-max: 1280px;
  --container-pad: 1.5rem;

  /* Effects */
  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(15,15,26,.06), 0 1px 2px rgba(15,15,26,.04);
  --shadow-md:   0 4px 16px rgba(15,15,26,.08), 0 2px 4px rgba(15,15,26,.04);
  --shadow-lg:   0 10px 32px rgba(15,15,26,.1), 0 4px 8px rgba(15,15,26,.06);
  --shadow-gold: 0 4px 20px rgba(201,162,39,.3);

  --transition:      0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Header */
  --header-h:        72px;
  --mobile-sticky-h: 60px;
}

/* ────────────────────────────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  padding-bottom: var(--mobile-sticky-h);
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
}

img, video, svg { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}
a:hover { color: var(--color-gold); }

ul, ol { list-style: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

.hayat-skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  padding: 0.5rem 1rem; background: var(--color-gold);
  color: var(--color-white); border-radius: var(--radius-md);
  font-weight: 600; transition: top var(--transition);
}
.hayat-skip-link:focus { top: 1rem; }


/* ────────────────────────────────────────────────────────────────
   3. LAYOUT
───────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-pad    { padding-block: var(--space-20); }
.section-pad-sm { padding-block: var(--space-12); }

@media (min-width: 768px) {
  .section-pad    { padding-block: var(--space-24); }
  .section-pad-sm { padding-block: var(--space-16); }
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }

@media (min-width: 640px)  {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}


/* ────────────────────────────────────────────────────────────────
   4. TYPOGRAPHY
───────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, var(--text-6xl)); }
h2 { font-size: clamp(1.75rem, 4vw, var(--text-5xl)); }
h3 { font-size: clamp(1.25rem, 3vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

.text-gold   { color: var(--color-gold); }
.text-center { text-align: center; }
.text-light  { color: var(--color-text-light); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, var(--text-5xl));
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.7;
  font-weight: 400;
}


/* ────────────────────────────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.btn-dark:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-base);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition);
}
.btn-phone:hover { color: var(--color-gold); }


/* ────────────────────────────────────────────────────────────────
   6. HEADER
───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--space-6);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -0.03em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Desktop Nav */
.site-nav { display: none; flex: 1; justify-content: center; }
@media (min-width: 1024px) { .site-nav { display: flex; } }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-list > li > a,
.nav-list > li > button {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-list > li > a:hover,
.nav-list > li > button:hover {
  color: var(--color-gold);
  background: var(--color-bg-soft);
}
.nav-list > li > a[aria-current="page"] { color: var(--color-gold); }

.chevron {
  font-style: normal;
  font-size: 0.65em;
  transition: transform var(--transition);
  display: inline-block;
  opacity: 0.6;
}

/* Dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 660px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 100;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.has-dropdown:hover .chevron { transform: rotate(90deg); }

.dropdown-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: var(--space-4);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition);
  text-decoration: none;
}
.dropdown-item:hover {
  background: var(--color-bg-soft);
  color: var(--color-gold);
}
.dd-icon { font-size: 1rem; flex-shrink: 0; }

/* Header CTA */
.header-cta { display: none; align-items: center; gap: var(--space-3); flex-shrink: 0; }
@media (min-width: 768px) { .header-cta { display: flex; } }

/* Hamburger */
.hamburger {
  /*display: flex;*/
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.ham-line {
  display: block; width: 100%; height: 2px;
  background: var(--color-dark); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .ham-line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h); right: 0; bottom: 0;
  width: min(340px, 100vw);
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  z-index: 999;
  overflow-y: auto;
  border-left: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-overlay {
  position: fixed; inset: 0; top: var(--header-h);
  background: rgba(15,15,26,.5); z-index: 998;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav-inner { padding: var(--space-6); }

.mobile-nav-list {
  display: flex; flex-direction: column;
  gap: var(--space-1); margin-bottom: var(--space-8);
}
.mobile-nav-list > li > a,
.mobile-sub-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--space-3) var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-base); font-weight: 600;
  color: var(--color-text); border-radius: var(--radius-md);
  text-decoration: none; transition: all var(--transition);
}
.mobile-nav-list > li > a:hover,
.mobile-sub-toggle:hover {
  background: var(--color-bg-soft); color: var(--color-gold);
}
.mobile-sub-list { padding-left: var(--space-4); margin-top: var(--space-1); }
.mobile-sub-list li a {
  display: block; padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm); color: var(--color-text-light);
  border-radius: var(--radius-md); transition: all var(--transition);
}
.mobile-sub-list li a:hover { color: var(--color-gold); background: var(--color-bg-soft); }

.mobile-nav-cta { display: flex; flex-direction: column; gap: var(--space-3); }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }


/* ────────────────────────────────────────────────────────────────
   7. BREADCRUMB
───────────────────────────────────────────────────────────────── */
.hayat-breadcrumb {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  padding-block: var(--space-4);
  font-weight: 500;
}
.hayat-breadcrumb a {
  color: var(--color-text-light); transition: color var(--transition);
}
.hayat-breadcrumb a:hover { color: var(--color-gold); }
.hayat-breadcrumb .sep { margin-inline: var(--space-2); color: var(--color-border); }
.hayat-breadcrumb span:last-child { color: var(--color-dark); font-weight: 600; }


/* ────────────────────────────────────────────────────────────────
   8. SERVICE CARDS
───────────────────────────────────────────────────────────────── */
.service-card {
  position: relative;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-rose));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card-icon {
  font-size: 2.25rem;
  margin-bottom: var(--space-4);
  display: block;
}
.service-card-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.service-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-gold);
  transition: gap var(--transition);
}
.service-card:hover .service-card-cta { gap: var(--space-3); }


/* ────────────────────────────────────────────────────────────────
   9. FOOTER
───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,.8);
  margin-top: var(--space-20);
}
.footer-main { padding-block: var(--space-16) var(--space-12); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--space-8); } }

.footer-logo { display: inline-block; margin-bottom: var(--space-5); }
.footer-logo img {
  width: 68px; height: 68px; object-fit: contain;
  border-radius: 50%; background: rgba(255,255,255,.06); padding: 4px;
}
.footer-about {
  font-size: var(--text-sm); line-height: 1.75;
  color: rgba(255,255,255,.6); margin-bottom: var(--space-5);
}
.footer-rating {
  display: inline-flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(201,162,39,.12);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: var(--radius-md);
}
.rating-stars { color: var(--color-gold); font-size: var(--text-lg); letter-spacing: 1px; }
.rating-text  { font-size: var(--text-sm); color: rgba(255,255,255,.8); }
.rating-count { color: rgba(255,255,255,.5); font-size: var(--text-xs); }

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: var(--space-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-links a {
  font-size: var(--text-sm); color: rgba(255,255,255,.55);
  transition: color var(--transition); line-height: 1.5;
}
.footer-links a:hover { color: var(--color-gold-light); }

.footer-nap { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-6); }
.nap-item { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-sm); color: rgba(255,255,255,.6); line-height: 1.5; }
.nap-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.65; }
.nap-item a { color: rgba(255,255,255,.65); text-decoration: none; transition: color var(--transition); }
.nap-item a:hover { color: var(--color-gold-light); }

.footer-quick-links { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); padding-top: var(--space-4); border-top: 1px solid rgba(255,255,255,.08); }
.footer-quick-links a { font-size: var(--text-sm); color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-quick-links a:hover { color: var(--color-gold-light); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: var(--space-5); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); }
.footer-copy, .footer-credit { font-size: var(--text-xs); color: rgba(255,255,255,.35); }
.footer-copy a, .footer-credit a { color: rgba(255,255,255,.45); }
.footer-copy a:hover, .footer-credit a:hover { color: var(--color-gold-light); }


/* ────────────────────────────────────────────────────────────────
   10. MOBILE STICKY CTA BAR
───────────────────────────────────────────────────────────────── */
.mobile-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--mobile-sticky-h);
  display: flex; align-items: stretch; z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -2px 20px rgba(0,0,0,.15);
}
@media (min-width: 1024px) { .mobile-sticky-cta { display: none; } }

.sticky-cta-btn {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  text-decoration: none; font-family: var(--font-display);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: opacity var(--transition);
}
.sticky-cta-btn:hover { opacity: 0.88; }
.sticky-cta-btn svg { display: block; margin: 0 auto; }
.sticky-call     { background: var(--color-dark);    color: var(--color-white); }
.sticky-whatsapp { background: #25D366;               color: var(--color-white); }
.sticky-enquiry  { background: var(--color-gold);     color: var(--color-white); }


/* ────────────────────────────────────────────────────────────────
   11. DESKTOP FLOATING WHATSAPP
───────────────────────────────────────────────────────────────── */
.desktop-whatsapp-bubble {
  display: none; position: fixed; bottom: 2rem; right: 2rem;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--color-white);
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999; transition: all var(--transition); text-decoration: none;
}
@media (min-width: 1024px) { .desktop-whatsapp-bubble { display: flex; } }
.desktop-whatsapp-bubble:hover { transform: scale(1.1); color: var(--color-white); box-shadow: 0 6px 30px rgba(37,211,102,.55); }

.bubble-tooltip {
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%); background: var(--color-dark);
  color: var(--color-white); font-family: var(--font-display);
  font-size: var(--text-xs); font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius-full);
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.bubble-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%); border: 5px solid transparent;
  border-left-color: var(--color-dark);
}
.desktop-whatsapp-bubble:hover .bubble-tooltip { opacity: 1; }


/* ────────────────────────────────────────────────────────────────
   12. HOMEPAGE HERO
───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(88vh, 680px);
  display: flex; align-items: center;
  background: var(--color-bg);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(201,162,39,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(232,82,106,.05) 0%, transparent 45%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr;
  align-items: center; gap: var(--space-12);
  padding-block: var(--space-16);
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
}

.hero-label {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: var(--space-5);
}
.hero-label-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-gold);
  animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-dark);
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
}
.hero-title em { font-style: normal; color: var(--color-gold); }

.hero-desc {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 500px;
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }

.hero-trust {
  display: flex; align-items: center; gap: var(--space-4);
  margin-top: var(--space-8); padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.hero-trust-rating { display: flex; flex-direction: column; gap: 2px; }
.hero-trust-stars { color: var(--color-gold); font-size: var(--text-base); letter-spacing: 2px; }
.hero-trust-text { font-size: var(--text-xs); color: var(--color-text-light); font-weight: 500; }
.hero-trust-sep { width: 1px; height: 32px; background: var(--color-border); }
.hero-trust-stat { display: flex; flex-direction: column; gap: 2px; }
.trust-stat-num { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800; color: var(--color-dark); line-height: 1; letter-spacing: -0.02em; }
.trust-stat-label { font-size: var(--text-xs); color: var(--color-text-light); font-weight: 500; }

.hero-image { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 4/5;
  background: var(--color-bg-section);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-badge {
  position: absolute; bottom: var(--space-5); left: var(--space-5);
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  border-radius: var(--radius-lg); padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--space-3);
}
.badge-icon { font-size: 1.4rem; }
.badge-text-main { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 800; color: var(--color-dark); line-height: 1; }
.badge-text-sub { font-size: var(--text-xs); color: var(--color-text-light); font-weight: 500; margin-top: 2px; }


/* ────────────────────────────────────────────────────────────────
   13. SECTION BACKGROUNDS
───────────────────────────────────────────────────────────────── */
.bg-soft    { background: var(--color-bg-soft); }
.bg-section { background: var(--color-bg-section); }
.bg-dark    { background: var(--color-dark); color: var(--color-white); }

.divider-gold {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-rose));
  margin: var(--space-4) auto;
  border-radius: 3px;
}


/* ────────────────────────────────────────────────────────────────
   14. AREAS GRID
───────────────────────────────────────────────────────────────── */
.areas-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3);
}
@media (min-width: 640px)  { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }

.area-chip {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--color-text); text-decoration: none;
  transition: all var(--transition);
}
.area-chip:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201,162,39,.05);
}
.area-chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-gold); flex-shrink: 0;
}


/* ────────────────────────────────────────────────────────────────
   15. FAQ ACCORDION
───────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--color-gold); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--space-5) var(--space-6); text-align: left;
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700;
  color: var(--color-dark); cursor: pointer; transition: color var(--transition);
  letter-spacing: -0.01em;
}
.faq-question:hover { color: var(--color-gold); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--color-bg-soft); color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; line-height: 1; transition: all var(--transition);
  font-style: normal; font-weight: 700;
}
.faq-item.open .faq-icon { background: var(--color-gold); color: var(--color-white); transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base); color: var(--color-text); line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }


/* ────────────────────────────────────────────────────────────────
   16. CTA BANNER
───────────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #0a0a14 100%);
  color: var(--color-white); padding-block: var(--space-16);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,39,.12) 0%, transparent 65%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .section-heading { color: var(--color-white); margin-bottom: var(--space-4); }
.cta-banner .section-sub { color: rgba(255,255,255,.65); margin-bottom: var(--space-8); }


/* ────────────────────────────────────────────────────────────────
   17. FORM STYLES
───────────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.form-label { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600; color: var(--color-dark); }
.form-label .req { color: var(--color-rose); margin-left: 2px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: var(--text-base);
  color: var(--color-dark); background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: var(--text-xs); color: #dc2626; }


/* ────────────────────────────────────────────────────────────────
   18. 404 PAGE
───────────────────────────────────────────────────────────────── */
.not-found-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--space-20) var(--space-6); }
.not-found-num { font-family: var(--font-display); font-size: clamp(6rem, 20vw, 12rem); font-weight: 800; color: var(--color-border); line-height: 1; margin-bottom: var(--space-4); letter-spacing: -0.05em; }
.not-found-title { margin-bottom: var(--space-4); }
.not-found-links { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-top: var(--space-8); }


/* ────────────────────────────────────────────────────────────────
   19. ANIMATIONS
───────────────────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-up { animation: fade-up 0.6s ease forwards; }
.animate-fade-in { animation: fade-in 0.4s ease forwards; }


/* ────────────────────────────────────────────────────────────────
   20. RESPONSIVE
───────────────────────────────────────────────────────────────── */
@media (max-width: 639px) {
  :root { --container-pad: 1rem; --space-20: 3rem; --space-16: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media print {
  .site-header, .mobile-sticky-cta, .desktop-whatsapp-bubble { display: none !important; }
}










/* Mobile nav — hidden by default */

.site-header { z-index: 900 !important; }
.mobile-nav { z-index: 1100 !important; top: var(--header-h) !important; height: 500px !important;}
.mobile-overlay { z-index: 1090 !important;  top: 0 !important; }

.mobile-sticky-cta {
  z-index: 1080;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #fff;
    transform: translateX( 100% );
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.is-open {
    transform: translateX( 0 );
}

/* Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba( 0, 0, 0, 0.45 );
    z-index: 998;
}

.mobile-overlay.is-open {
    display: block;
}

/* Prevent body scroll when menu open */
body.menu-open {
    overflow: hidden;
}

/* Hamburger open state (optional X animation) */
.hamburger[aria-expanded="true"] .ham-line:nth-child(1) {
    transform: translateY( 7px ) rotate( 45deg );
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(2) {
    opacity: 0;
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(3) {
    transform: translateY( -7px ) rotate( -45deg );
}
.ham-line {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 5px 0;
}



@media (max-width: 991px) {
.mobile-nav{ left: 0; right: inherit; width: auto;}
.mobile-nav-inner { padding: 0;}

}


