/* ========== LUXIMMO — Dark Luxury + Glassmorphism ========== */

:root {
  --bg: #0a0a0a;
  --bg-light: #111111;
  --bg-card: rgba(255,255,255,0.03);
  --bg-glass: rgba(255,255,255,0.06);
  --bg-glass-hover: rgba(255,255,255,0.1);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.3);
  --accent: #c8a45c;
  --accent-light: #dcc790;
  --accent-gradient: linear-gradient(135deg, #c8a45c 0%, #e8d5a3 50%, #c8a45c 100%);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(200,164,92,0.3);
  --shadow-glow: 0 0 40px rgba(200,164,92,0.15);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: rgba(200,164,92,0.3); color: #fff; }

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ========== NAVBAR ========== */
.navbar-lux {
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-lux.scrolled {
  background: rgba(10,10,10,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-brand-lux {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: -1px;
  text-decoration: none;
}

.navbar-brand-lux span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link-lux {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.nav-link-lux::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link-lux:hover,
.nav-link-lux.active {
  color: #fff !important;
}

.nav-link-lux:hover::after,
.nav-link-lux.active::after {
  transform: scaleX(1);
}

.btn-gold {
  background: var(--accent-gradient);
  color: #0a0a0a;
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  color: #0a0a0a;
}

.btn-outline-lux {
  border: 1px solid var(--border);
  color: #fff;
  background: transparent;
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-lux:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== HERO ========== */
.hero-lux {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-lux-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-lux-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-lux-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 60%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.hero-title .gold {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ========== SEARCH BAR GLASS ========== */
.search-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.search-glass input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  outline: none;
  padding: 0.5rem;
}

.search-glass input::placeholder { color: var(--text-dim); }

.search-glass .divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* ========== GLASS CARDS ========== */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), var(--shadow-glow);
}

.glass-card-img {
  position: relative;
  overflow: hidden;
}

.glass-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.glass-card:hover .glass-card-img img {
  transform: scale(1.08);
}

.glass-card-body {
  padding: 1.5rem;
}

.badge-gold {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-gradient);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.badge-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.badge-location i { color: var(--accent); margin-right: 0.3rem; }

.price-gold {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.price-gold small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

.card-title-lux {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.card-details {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.feature-tag-lux {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ========== SECTIONS ========== */
.section-lux {
  padding: 6rem 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
}

/* ========== STATS ========== */
.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== CTA SECTION ========== */
.cta-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  margin: 0 1rem;
}

.cta-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  max-width: 550px;
}

/* ========== SERVICE CARDS ========== */
.service-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #0a0a0a;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
}

/* ========== BREADCRUMB ========== */
.breadcrumb-lux {
  background: var(--bg-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-lux a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
}

.breadcrumb-lux a:hover { color: var(--accent); }

/* ========== FILTER SIDEBAR ========== */
.filter-lux {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.filter-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}

.chip-lux {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  margin: 0.2rem;
  transition: all 0.2s;
}

.chip-lux:hover,
.chip-lux.active {
  background: var(--accent-gradient);
  color: #0a0a0a;
  border-color: transparent;
}

/* ========== DETAIL PAGE ========== */
.gallery-main-lux {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-main-lux img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.gallery-thumb-lux {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-thumb-lux:hover {
  border-color: var(--accent);
}

.gallery-thumb-lux img {
  width: 100%;
  height: 218px;
  object-fit: cover;
}

.info-bar-lux {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.info-item-lux {
  text-align: center;
}

.info-label-lux {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.info-value-lux {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.specs-lux {
  list-style: none;
  padding: 0;
}

.specs-lux li {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.spec-label-lux { color: var(--text-muted); }
.spec-value-lux { color: #fff; font-weight: 500; }

.contact-sticky-lux {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.form-lux {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
}

.form-lux:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,164,92,0.1);
}

.form-lux::placeholder { color: var(--text-dim); }

/* ========== AGENCE CARD ========== */
.agence-lux {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.agence-lux:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

/* ========== FAQ ========== */
.faq-lux {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-lux summary {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color 0.2s;
}

.faq-lux summary:hover { color: var(--accent); }

.faq-lux summary::-webkit-details-marker { display: none; }

.faq-lux .faq-icon { transition: transform 0.3s; color: var(--accent); }

.faq-lux[open] .faq-icon { transform: rotate(45deg); }

.faq-answer-lux {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-top: 1rem;
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer-lux {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
}

.footer-lux h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.footer-lux a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer-lux a:hover { color: var(--accent); }

.footer-bottom-lux {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 3rem;
}

/* ========== WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); color: #0a0a0a; }

/* ========== TOAST ========== */
.toast-lux {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-hover);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  border-radius: 100px;
  z-index: 9999;
  animation: toastIn 0.3s ease;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SCROLL CAROUSEL ========== */
.scroll-carousel-lux {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.scroll-carousel-lux::-webkit-scrollbar { display: none; }

.scroll-carousel-lux .glass-card {
  min-width: 320px;
  max-width: 320px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ========== HORIZONTAL SCROLL CONTROLS ========== */
.scroll-indicator {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.scroll-dot {
  width: 32px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  border: none;
  transition: all 0.3s;
}

.scroll-dot.active {
  background: var(--accent);
}

/* ========== GRADIENT TEXT ========== */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== GLOW LINE ========== */
.glow-line {
  width: 60px;
  height: 2px;
  background: var(--accent-gradient);
  box-shadow: 0 0 10px rgba(200,164,92,0.5);
  margin-bottom: 1.5rem;
}

/* ========== MAP CONTAINER ========== */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  filter: grayscale(1) invert(0.9) contrast(0.8);
}

/* ========== TEAM AVATAR ========== */
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 auto;
  border: 3px solid var(--border);
  transition: all 0.3s;
}

.team-card:hover .team-avatar {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .section-lux { padding: 3rem 0; }
  .search-glass { flex-direction: column; padding: 1rem; }
  .search-glass .divider { display: none; }
  .cta-section { margin: 0; border-radius: 0; }
  .scroll-carousel-lux .glass-card { min-width: 280px; max-width: 280px; }
}

/* ========== NAVBAR TOGGLER ========== */
.navbar-toggler {
  border-color: var(--border) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}
