/* =========================
   GLOBAL RESET (MODERN)
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

:root {
  --bg: #1f1a14;
  --card: #1a1a1d;
  --text: #eaeaea;
  --muted: #b5b5b5;
  --gold: #c9a24a;
  --dark: #0f0f10;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: 70px;
}

/* =========================
   NAVBAR (GLASS + LUXURY)
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15,15,16,0.75);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  z-index: 1000;
  border-bottom: 1px solid rgba(201,162,74,0.15);
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 1px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* WhatsApp button */
.whatsapp-btn {
  background: var(--gold);
  color: #111 !important;
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 600;
}

.whatsapp-btn:hover {
  background: #b8923f;
}

/* MOBILE TOGGLE */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gold);
}

/* =========================
   HERO (CINEMATIC LUXURY)
========================= */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,12,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

/* =========================
   BUTTONS (LUXURY STYLE)
========================= */
.btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.btn.primary {
  background: var(--gold);
  color: #111;
}

.btn.primary:hover {
  background: #b8923f;
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn.secondary:hover {
  background: var(--gold);
  color: #111;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 90px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  color: var(--gold);
}

/* =========================
   CARDS (MODERN LUXURY)
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: var(--card);
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(201,162,74,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,74,0.3);
}

/* =========================
   TESTIMONIALS
========================= */
.testimonial {
  background: var(--card);
  padding: 20px;
  border-left: 4px solid var(--gold);
  margin-bottom: 15px;
  border-radius: 10px;
  color: var(--muted);
}

/* =========================
   CONTACT SECTION
========================= */
.contact {
  text-align: center;
  background: #141416;
  padding: 70px 20px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #0b0b0c;
  color: var(--muted);
  text-align: center;
  padding: 35px 20px;
  border-top: 1px solid rgba(201,162,74,0.1);
}

.footer a {
  color: var(--gold);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: #111;
  padding: 14px;
  border-radius: 50%;
  font-size: 20px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15,15,16,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid rgba(201,162,74,0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 60px 15px;
  }
}