:root {
  --mi-gold: #c9a55c;
  --mi-gold-2: #d8ba79;
  --mi-black: #0a0a0a;
  --mi-charcoal: #1a1a1a;
  --mi-silver: #a7adb3;
  --mi-off-white: #f5f5f2;
  --mi-muted: #6b6b6b;
  --uf-blue: #2aa7c8;
  --uf-green: #8bc34a;
  --prestige-red: #c5161d;
  --radius: 14px;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #111;
  background: var(--mi-off-white);
  line-height: 1.65;
}

a {
  color: inherit;
}

.font-heading {
  font-family: 'Playfair Display', serif;
}

.mi-gradient {
  background: linear-gradient(120deg, var(--mi-gold), var(--mi-gold-2));
}

.dark-gradient {
  background: radial-gradient(circle at 15% 15%, #222 0%, var(--mi-black) 55%);
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
}

.section-subtitle {
  color: #666;
  max-width: 65ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  border-bottom: 1px solid rgba(201, 165, 92, 0.2);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
}

.brand-logo {
  width: 170px;
  height: auto;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.nav-link {
  color: #ddd;
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--mi-gold);
}

.premium-card {
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}

.dark-card {
  border-radius: var(--radius);
  background: #151515;
  border: 1px solid rgba(201, 165, 92, 0.2);
}

.trust-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.gold-border {
  border: 1px solid rgba(201, 165, 92, 0.5);
}

.btn-primary {
  background: linear-gradient(120deg, var(--mi-gold), var(--mi-gold-2));
  color: #121212;
  border: 0;
}

.btn-primary:hover {
  filter: brightness(1.03);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--mi-gold);
  border: 1px solid var(--mi-gold);
}

.btn-secondary:hover {
  background: rgba(201, 165, 92, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.chip {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(42, 167, 200, 0.45);
  background: linear-gradient(120deg, rgba(42, 167, 200, 0.14), rgba(139, 195, 74, 0.14));
  color: #2b8ea9;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  line-height: 1;
}

.pattern-grid {
  background-image:
    linear-gradient(rgba(167, 173, 179, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 173, 179, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 0.45;
  transform: scale(1);
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.45));
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--mi-gold);
  font-family: 'Playfair Display', serif;
}

.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.8rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 1200;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #121212;
  color: #fff;
  padding: 0.85rem;
  z-index: 1100;
  border-top: 1px solid rgba(201, 165, 92, 0.55);
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  padding: 1rem;
}

.popup-card {
  width: min(560px, 100%);
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  padding: 0.75rem 0.85rem;
  font: inherit;
}

label {
  font-size: 0.92rem;
  font-weight: 500;
}

.partner-strip {
  border-top: 1px solid rgba(42, 167, 200, 0.35);
  border-bottom: 1px solid rgba(139, 195, 74, 0.35);
  background: linear-gradient(90deg, rgba(42, 167, 200, 0.08), rgba(139, 195, 74, 0.08));
}

.partner-text .uf-blue {
  color: var(--uf-blue);
}

.partner-text .uf-green {
  color: var(--uf-green);
}

.partner-text .prestige {
  color: var(--prestige-red);
}

.uf-blue {
  color: var(--uf-blue);
}

.uf-green {
  color: var(--uf-green);
}

.uf-gradient-text {
  background: linear-gradient(120deg, var(--uf-blue), var(--uf-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.uf-accent-border {
  border: 1px solid rgba(42, 167, 200, 0.3);
  box-shadow: 0 0 0 1px rgba(139, 195, 74, 0.15) inset;
}

.partner-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  background: linear-gradient(120deg, var(--uf-blue), var(--uf-green));
}

.premium-card:hover,
.trust-card:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(42, 167, 200, 0.12);
}

@media (max-width: 1024px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.7rem 0;
  }

  .gallery-grid {
    column-count: 1;
  }

  .brand-logo {
    width: 140px;
  }
}
