:root {
  --gold: #d4af37;
  --black: #0a0a0a;
  --silver: #c0c0c0;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: var(--dark);
  color: white;
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.hero-text {
  z-index: 2;
  max-width: 700px;
  animation: fadeUp 2s ease;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero p {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--silver);
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  color: var(--silver);
  font-size: 0.9rem;
  animation: fadeDown 2s infinite alternate;
}

/* Story Section */
.story {
  background: var(--black);
  padding: 6rem 10%;
  color: white;
  text-align: center;
  background-attachment: fixed;
  background-image: url('images/showroom-dark.jpg');
  background-size: cover;
  background-position: center;
}

.story h2 {
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
}

.story p {
  color: #dcdcdc;
  font-family: var(--font-sans);
  line-height: 1.8;
  margin-bottom: 1rem;
  animation: fadeIn 2s ease;
}

.story-highlight {
  background: rgba(20,20,20,0.85);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.story-highlight h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Legacy Section */
.legacy {
  position: relative;
  background: url('images/luxury-interior.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay-gold {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
}

.legacy-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
}

.legacy-content h2 {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.legacy-content p {
  color: #ddd;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.8;
}

.legacy-highlight {
  background: rgba(10,10,10,0.7);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  border-radius: 0.8rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.legacy-highlight h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Values Section */
.values {
  background: #111;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5rem 10%;
  gap: 2rem;
}

.value-box {
  background: #1a1a1a;
  border: 1px solid rgba(212,175,55,0.3);
  padding: 2rem;
  max-width: 400px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.value-box:hover {
  transform: translateY(-10px);
}

.value-box h3 {
  font-family: var(--font-serif);
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.value-box p {
  color: #ccc;
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* CTA */
.cta {
  background: 
  url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1950&q=80") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
}

.cta h2 {
  font-family: var(--font-serif);
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
}

.btn {
  background: #d4af37;
  color: #fff;
  padding: 12px 12px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #f5d76e;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #d4af37;
  color: #fff;
  padding: 12px 12px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px);
}


/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0.4; transform: translateY(0px); }
  to { opacity: 1; transform: translateY(8px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.content, .legacy-content, .value-box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px var(--gold);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* ===============================
   HOW IT WORKS SECTION
================================ */
.how-it-works {
  background: #0f0f0f;
  padding: 5rem 10%;
  text-align: center;
}

.how-it-works h2 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 2.4rem;
  margin-bottom: 3rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.how-grid div {
  background: #1a1a1a;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.how-grid div:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.how-grid h3 {
  font-family: var(--font-serif);
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.how-grid p {
  font-family: var(--font-sans);
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}


/* ===============================
   TRUST SECTION
================================ */
.trust {
  background: linear-gradient(to bottom, #0a0a0a, #111);
  padding: 5rem 10%;
  text-align: center;
}

.trust h2 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.trust-grid div {
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(212,175,55,0.2);
  border-left: 4px solid var(--gold);
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-sans);
  color: #ddd;
  font-size: 0.95rem;
  text-align: left;
  transition: all 0.3s ease;
}

.trust-grid div:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(212,175,55,0.15);
}
.trust-grid i {
  color: var(--gold);
  margin-right: 8px;
}