/* ============================================================
   MOUAZZEN LUXURY — style.css
   Premium Men's Clothing & Ready-Made Suits — Beirut, Lebanon
   ============================================================ */

/* ── Google Fonts are loaded in HTML via <link> ── */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Colour Palette */
  --black:        #080808;
  --charcoal:     #151515;
  --charcoal-mid: #1e1e1e;
  --charcoal-lt:  #2a2a2a;
  --gold:         #C6A15B;
  --gold-soft:    #D9BE84;
  --gold-dark:    #a07c3a;
  --ivory:        #F8F5EF;
  --ivory-dark:   #EDE8DF;
  --white:        #FFFFFF;
  --grey:         #A6A6A6;
  --grey-light:   #d4d4d4;
  --grey-dark:    #6b6b6b;
  --overlay:      rgba(8,8,8,0.65);
  --overlay-dark: rgba(8,8,8,0.82);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', 'Inter', Arial, sans-serif;

  /* Spacing */
  --section-py:   90px;
  --section-py-sm:55px;

  /* Transitions */
  --transition: all 0.35s ease;
  --transition-fast: all 0.2s ease;

  /* Border radius */
  --radius:    4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.18);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.28);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.38);
  --gold-glow: 0 0 20px rgba(198,161,91,0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul { list-style: none; }

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

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); letter-spacing: 0.015em; }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.45rem); }
h5 { font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; }

p {
  font-size: 0.97rem;
  color: var(--grey-light);
  line-height: 1.8;
}

.text-gold        { color: var(--gold); }
.text-ivory       { color: var(--ivory); }
.text-white       { color: var(--white); }
.text-grey        { color: var(--grey); }
.text-center      { text-align: center; }
.text-uppercase   { text-transform: uppercase; }
.letter-wide      { letter-spacing: 0.2em; }
.font-heading     { font-family: var(--font-heading); }

/* Section Label */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '—';
  margin: 0 8px;
  opacity: 0.6;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 30px;
}
.gold-divider.left { margin-left: 0; }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-py { padding: var(--section-py) 0; }
.section-py-sm { padding: var(--section-py-sm) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.flex       { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col   { flex-direction: column; }
.gap-sm     { gap: 12px; }
.gap-md     { gap: 24px; }
.gap-lg     { gap: 40px; }

.bg-black    { background-color: var(--black); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-charcoal-mid { background-color: var(--charcoal-mid); }
.bg-ivory    { background-color: var(--ivory); }
.bg-gold     { background-color: var(--gold); }

.rounded     { border-radius: var(--radius); }
.rounded-md  { border-radius: var(--radius-md); }
.rounded-lg  { border-radius: var(--radius-lg); }

.overflow-hidden { overflow: hidden; }
.relative       { position: relative; }
.absolute       { position: absolute; }
.w-full         { width: 100%; }
.h-full         { height: 100%; }
.object-cover   { object-fit: cover; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

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

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

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 24px; font-size: 0.72rem; }
.btn-lg { padding: 17px 48px; font-size: 0.82rem; }

/* ============================================================
   6. HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 22px 0;
}

#site-header.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(198,161,91,0.15);
}

#site-header.page-header {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(198,161,91,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav-logo-tagline {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--grey);
}

/* Main Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }

.nav-link .chevron {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
}
.nav-item:hover .chevron,
.nav-item.open .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(21,21,21,0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(198,161,91,0.2);
  border-radius: var(--radius-md);
  min-width: 240px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 11px 22px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--grey-light);
  text-transform: none;
  transition: var(--transition-fast);
}
.dropdown-link:hover {
  color: var(--gold);
  background: rgba(198,161,91,0.07);
  padding-left: 28px;
}
.dropdown-link i {
  width: 18px;
  color: var(--gold);
  opacity: 0.7;
  margin-right: 6px;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--grey-light);
  font-size: 1rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.1);
}
.nav-icon-btn:hover { color: var(--gold); border-color: var(--gold); background: rgba(198,161,91,0.08); }
.nav-icon-btn.whatsapp:hover { color: #25D366; border-color: #25D366; background: rgba(37,211,102,0.08); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 999;
  overflow-y: auto;
  padding: 90px 24px 40px;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-link .chevron { font-size: 0.8rem; transition: transform 0.25s; }
.mobile-nav-link.open .chevron { transform: rotate(180deg); }

.mobile-dropdown {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 0 8px 16px;
}
.mobile-dropdown.open { display: flex; }

.mobile-dropdown-link {
  display: block;
  padding: 11px 0;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--grey-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  letter-spacing: 0.04em;
}
.mobile-dropdown-link:hover { color: var(--gold); }

.mobile-nav-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============================================================
   7. HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.82) 0%,
    rgba(8,8,8,0.55) 55%,
    rgba(8,8,8,0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 0 60px;
}

.hero-text {
  max-width: 680px;
  padding-left: 6vw;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hero-slide.active .hero-label { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.8vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }

.hero-desc {
  font-size: 1rem;
  color: rgba(248,245,239,0.82);
  max-width: 540px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}
.hero-slide.active .hero-desc { opacity: 1; transform: translateY(0); }

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.9s, transform 0.6s ease 0.9s;
}
.hero-slide.active .hero-buttons { opacity: 1; transform: translateY(0); }

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(198,161,91,0.15);
  border: 1.5px solid rgba(198,161,91,0.5);
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover { background: var(--gold); color: var(--black); }
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--grey);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   8. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 80px 24px 0;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.1em;
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb .sep { color: var(--gold); }

/* ============================================================
   9. COLLECTION CARDS
   ============================================================ */
.card-grid { display: grid; gap: 28px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.collection-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(198,161,91,0.12);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.collection-card:hover {
  border-color: rgba(198,161,91,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.collection-card:hover .card-img-wrap img { transform: scale(1.08); }

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 60%);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.card-body h3 { font-size: 1.25rem; color: var(--white); }
.card-body p { font-size: 0.85rem; color: var(--grey); line-height: 1.6; flex: 1; }

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ============================================================
   10. SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--charcoal);
  border: 1px solid rgba(198,161,91,0.12);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--gold-glow);
}
.service-card .icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(198,161,91,0.1);
  border: 1px solid rgba(198,161,91,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold);
  font-size: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .icon-wrap {
  background: var(--gold);
  color: var(--black);
}
.service-card h4 { color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 0.87rem; color: var(--grey); }

/* ============================================================
   11. FEATURE LIST
   ============================================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(198,161,91,0.12);
  border: 1px solid rgba(198,161,91,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item h5 { color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.feature-item p  { font-size: 0.84rem; color: var(--grey); line-height: 1.6; }

/* ============================================================
   12. SECTION STYLES
   ============================================================ */

/* Intro Section */
.intro-section {
  padding: var(--section-py) 0;
  background: var(--charcoal);
}

/* Why Choose Us */
.why-section { padding: var(--section-py) 0; background: var(--black); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-item {
  background: var(--charcoal);
  border: 1px solid rgba(198,161,91,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--gold);
  background: rgba(198,161,91,0.04);
}
.why-item .wi-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.why-item h4 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.why-item p  { font-size: 0.84rem; color: var(--grey); }

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-item {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(198,161,91,0.12);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  counter-increment: step;
}
.step-item::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(198,161,91,0.12);
  position: absolute;
  top: 14px;
  right: 20px;
  line-height: 1;
}
.step-item h4 { color: var(--gold); margin-bottom: 10px; font-size: 1rem; }
.step-item p  { font-size: 0.84rem; color: var(--grey); }

/* Split Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-section:hover .split-img img { transform: scale(1.04); }
.split-content {
  background: var(--charcoal);
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.78);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-banner-content h2 { color: var(--white); margin-bottom: 18px; }
.cta-banner-content p  { color: var(--grey-light); margin-bottom: 36px; font-size: 1rem; }
.cta-banner-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Testimonials */
.testimonials-section { padding: var(--section-py) 0; background: var(--charcoal); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(198,161,91,0.12);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(198,161,91,0.2);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-text { font-size: 0.9rem; color: var(--grey-light); font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-2 img { height: 340px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--charcoal);
  border: 1px solid rgba(198,161,91,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  cursor: pointer;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 26px 20px;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* Map Placeholder */
.map-placeholder {
  width: 100%;
  height: 420px;
  background: var(--charcoal);
  border: 1px solid rgba(198,161,91,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   13. FORMS
   ============================================================ */
.form-section {
  padding: var(--section-py) 0;
  background: var(--charcoal);
}
.luxury-form {
  background: var(--charcoal-mid);
  border: 1px solid rgba(198,161,91,0.15);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  max-width: 820px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,161,91,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.92rem;
  transition: var(--transition-fast);
  outline: none;
}
.form-control::placeholder { color: var(--grey-dark); }
.form-control:focus {
  border-color: var(--gold);
  background: rgba(198,161,91,0.06);
  box-shadow: 0 0 0 3px rgba(198,161,91,0.12);
}
select.form-control { -webkit-appearance: none; appearance: none; cursor: pointer; }
select.form-control option { background: var(--charcoal); color: var(--white); }

.form-submit { margin-top: 28px; text-align: center; }
.form-success {
  display: none;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* Contact Info Cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--charcoal);
  border: 1px solid rgba(198,161,91,0.12);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.contact-card .ci-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.contact-card p, .contact-card a {
  font-size: 0.88rem;
  color: var(--grey-light);
  line-height: 1.6;
}
.contact-card a:hover { color: var(--gold); }

/* Hours Table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-table td {
  padding: 13px 0;
  font-size: 0.88rem;
  color: var(--grey-light);
}
.hours-table td:first-child { color: var(--white); font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--gold); }

/* ============================================================
   14. FOOTER
   ============================================================ */
#site-footer {
  background: var(--black);
  border-top: 1px solid rgba(198,161,91,0.15);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}
.footer-brand .footer-logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 20px;
}
.footer-brand p { font-size: 0.87rem; color: var(--grey); line-height: 1.8; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(198,161,91,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); background: rgba(198,161,91,0.08); }

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(198,161,91,0.15);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.86rem;
  color: var(--grey);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-items { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.footer-contact-item .fci-icon {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-hours { margin-top: 20px; }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
}
.footer-hours-row span:first-child { color: var(--grey-light); }
.footer-hours-row span:last-child  { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--grey-dark); }
.footer-bottom a { color: var(--gold); }

/* ============================================================
   15. FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  position: relative;
}
.whatsapp-float a:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }

/* Pulse ring */
.whatsapp-float a::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.45);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.wa-tooltip {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 24px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition-fast);
  border: 1px solid rgba(198,161,91,0.2);
  letter-spacing: 0.04em;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ============================================================
   16. BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 110px;
  right: 38px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal-lt);
  border: 1px solid rgba(198,161,91,0.3);
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   17. ANIMATIONS (Scroll Reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .hero-slide-img { transition: none; }
  .hero-scroll-line { animation: none; }
  .whatsapp-float a::before { animation: none; }
}

/* ============================================================
   18. STAT COUNTERS
   ============================================================ */
.stats-section {
  padding: 70px 0;
  background: var(--gold);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center;
  padding: 20px 0;
  border-right: 1px solid rgba(8,8,8,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(8,8,8,0.65);
}

/* ============================================================
   19. UTILITY — GOLD LINE SEPARATOR
   ============================================================ */
.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 10px 0;
}
.section-header { margin-bottom: 52px; }
.section-header p { max-width: 640px; margin: 0 auto; font-size: 1rem; }
.section-header.left p { margin: 0; }

/* ============================================================
   20. MEDIA QUERIES
   ============================================================ */

/* ── Large desktop (1400px+) ── */
@media (min-width: 1400px) {
  .container { max-width: 1340px; }
}

/* ── Tablet landscape (1024px) ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(8,8,8,0.1); }
  .stat-item:nth-child(2n) { border-right: none; }
}

/* ── Tablet (900px) ── */
@media (max-width: 920px) {
  :root { --section-py: 65px; --section-py-sm: 40px; }
  h1 { font-size: clamp(2rem, 6vw, 3.8rem); }
  h2 { font-size: clamp(1.65rem, 4.5vw, 2.6rem); }

  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .nav-icon-btn { display: none; }
  .nav-actions .btn { display: none; }
  .nav-actions .nav-icon-btn:first-child { display: flex; }

  .hero-text { padding-left: 5vw; max-width: 100%; padding-right: 5vw; }
  .hero-title { font-size: clamp(2.2rem, 6vw, 3.8rem); }

  .split-section { grid-template-columns: 1fr; }
  .split-img { height: 400px; position: relative; }
  .split-content { padding: 50px 32px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.span-2 { grid-column: span 1; }
  .gallery-item img, .gallery-item.span-2 img { height: 220px; }

  .luxury-form { padding: 36px 28px; }
  .form-grid { grid-template-columns: 1fr; }

  .page-hero { height: 360px; }
}

/* ── Mobile (600px) ── */
@media (max-width: 620px) {
  :root { --section-py: 50px; --section-py-sm: 32px; }

  .container { padding: 0 18px; }

  h1 { font-size: clamp(1.9rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.55rem, 6vw, 2.2rem); }

  .hero-slider { height: 100svh; min-height: 600px; }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.6) 100%);
  }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .slider-arrow { width: 40px; height: 40px; font-size: 0.85rem; }
  .slider-arrow.prev { left: 14px; }
  .slider-arrow.next { right: 14px; }
  .hero-scroll { display: none; }

  .grid-3 { grid-template-columns: 1fr; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .split-img { height: 280px; }
  .split-content { padding: 36px 20px; }

  .luxury-form { padding: 28px 18px; border-radius: var(--radius-md); }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gallery-item img { height: 160px; }

  .page-hero { height: 280px; }
  .page-hero-content h1 { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-float a { width: 54px; height: 54px; font-size: 1.4rem; }
  #back-to-top { bottom: 90px; right: 22px; }

  .btn { padding: 12px 26px; font-size: 0.72rem; }
  .btn-lg { padding: 14px 34px; }

  .cta-banner { padding: 70px 0; }
}

/* ── Very small (375px) ── */
@media (max-width: 400px) {
  h1 { font-size: 1.75rem; }
  .nav-logo-name { font-size: 1.25rem; }
  .hero-title { font-size: 1.8rem; }
}
