:root {
  --primary-dark: #121824;
  --gold: #b48c48;
  --gold-hover: #9c7536;
  --bg-light: #f9fafb;
  --card-radius: 28px; /* Strict 25-30px radius  */
  --font-main: 'Satoshi', sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--primary-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ================= TOPBAR (Sophisticated & Crisp) ================= */
.site-topbar {
  background-color: #0b0f19;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-topbar span {
  color: #cbd5e1;
}
.topbar-contact a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.topbar-contact a:hover {
  color: var(--gold);
}

/* ================= MAIN HEADER ================= */
.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #edf2f7;
  padding: 16px 0;
  z-index: 1020;
}
.brand-logo {
  text-decoration: none;
  display: inline-block;
}
.brand-title {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
  line-height: 1.1;
}
.brand-tagline {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 4px;
}

/* Desktop Navigation (Light, Editorial, Clean) */
.desktop-menu-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #475569;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 4px;
}
.desktop-menu-links a:hover {
  color: var(--gold);
}
.btn-nav-consultation {
  background: var(--primary-dark);
  color: #ffffff !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px !important;
  border-radius: 30px;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.btn-nav-consultation:hover {
  background: var(--gold) !important;
  transform: translateY(-1px);
}

/* ================= MINIMALIST HAMBURGER TRIGGER ================= */
.menu-toggle-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.menu-toggle-btn:hover {
  border-color: var(--gold);
  background-color: #fafafa;
}
.menu-icon-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}
.menu-icon-lines span {
  display: block;
  height: 1.5px;
  background-color: var(--primary-dark);
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* ================= MODERN LUXURY OFFCANVAS DRAWER ================= */
.modern-menu-drawer {
  width: 100% !important;
  max-width: 420px !important;
  border-top-left-radius: var(--card-radius);
  border-bottom-left-radius: var(--card-radius);
  background-color: #ffffff;
  border-left: 1px solid #edf2f7;
}
.drawer-brand span.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.drawer-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
}
.lang-switch {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.active-lang {
  color: var(--gold);
}
.lang-link {
  color: #94a3b8;
  text-decoration: none;
}
.lang-link:hover {
  color: var(--primary-dark);
}

/* Vertical Links (Refined, Editorial, Non-Bulky) [cite: 59-71] */
.drawer-primary-nav {
  display: flex;
  flex-direction: column;
}
.drawer-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #f8fafc;
  transition: all 0.25s ease;
}
.drawer-nav-row:hover {
  color: var(--gold);
  padding-left: 8px;
}
.drawer-nav-row .arrow {
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 300;
  transition: transform 0.25s ease;
}
.drawer-nav-row:hover .arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* Category Grid in Drawer [cite: 72-85] */
.drawer-cat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  background-color: var(--bg-light);
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  text-decoration: none;
  color: #475569;
  transition: all 0.3s ease;
}
.drawer-cat-box:hover {
  background-color: #ffffff;
  border-color: rgba(180, 140, 72, 0.4);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
  color: var(--primary-dark);
}
.box-icon {
  font-size: 1.25rem;
  margin-bottom: 3px;
}
.box-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Drawer Direct WhatsApp Action */
.btn-drawer-wa {
  background: #25d366;
  color: #ffffff;
  border: none;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-drawer-wa:hover {
  background: #1eb956;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* ================= HERO SECTION (With Subtle Architectural Backdrop) ================= */
.hero-section {
  position: relative;
  background-color: #ffffff;
  padding-top: 50px;
  padding-bottom: 70px;
  overflow: hidden;
}

/* Subtle Low-Opacity Background Texture */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Architectural luxury interior background with very soft opacity */
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3; /* 5% Opacity - completely non-intrusive */
  pointer-events: none;
  z-index: 0;
}

/* Soft gradient overlay to blend seamlessly into white */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.95) 75%);
  pointer-events: none;
  z-index: 1;
}

/* Ensure all content sits above the background layers */
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Subtitle Pill Badge */
.hero-pill-badge {
  background: rgba(180, 140, 72, 0.08);
  border: 1px solid rgba(180, 140, 72, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #8c6a2e;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

/* Hero Typography */
.hero-headline {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.hero-description {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 580px;
}

/* Hero CTA Buttons */
.btn-hero-primary {
  background-color: var(--primary-dark);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}
.btn-hero-primary:hover {
  background-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(180, 140, 72, 0.3);
}

.btn-hero-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}
.btn-hero-whatsapp:hover {
  background-color: #1eb956;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

/* Trust Stats */
.hero-stat-val {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}
.hero-stat-lbl {
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.2px;
}

/* ================= 9:16 VERTICAL VIDEO / MEDIA CARD ================= */
.hero-media-wrapper {
  max-width: 390px;
  margin: 0 auto;
}
.hero-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  border: 1px solid #f1f5f9;
  background-color: #000000;
}
.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-video-card:hover .hero-media-img {
  transform: scale(1.03);
}

/* Play Indicator */
.video-play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: rgba(180, 140, 72, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.play-triangle {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #ffffff;
  margin-left: 3px;
}

/* Floating Caption */
.hero-media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(11, 15, 25, 0.9) 100%);
}
.caption-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.caption-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.2px;
}

/* Floating Bottom-Left Trust Badge */
.hero-floating-badge {
  position: absolute;
  bottom: -15px;
  left: -20px;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.hero-floating-badge .badge-icon {
  font-size: 1.4rem;
}
.hero-floating-badge strong {
  font-size: 0.85rem;
  color: var(--primary-dark);
}
.hero-floating-badge small {
  font-size: 0.72rem;
}

/* Mobile Responsiveness Adjustments */
@media (max-width: 991px) {
  .hero-headline {
    font-size: 2.1rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-media-wrapper {
    margin-top: 25px;
  }
  .hero-floating-badge {
    left: 10px;
    bottom: -10px;
  }
}