* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

:root {
  --primary: #6d214f;
  --secondary: #8e2c63;
  --gold: #d4af37;
  --dark: #12070d;
  --light: #faf7f9;
}

body {
  background: var(--light);
  color: #222;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 18px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(18, 7, 13, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.navbar ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar ul li {
  margin-left: 25px;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: var(--gold);
}

.nav-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 10px 18px;
  border-radius: 25px;
  color: white !important;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
    url("https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=1800&q=90");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 20px;
  animation: fadeUp 1s ease;
}

.hero-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  font-size: 14px;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.primary-btn,
.secondary-btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.secondary-btn {
  background: white;
  color: var(--primary);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-4px);
}

/* ================= TRUST ================= */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 25px;
  background: linear-gradient(90deg, #fff, #f7eef3);
  font-weight: 600;
  color: var(--primary);
}

/* ================= ABOUT ================= */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 80px;
  gap: 60px;
}

.about-text h2 {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 2;
  color: #555;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ================= PROCESS ================= */
.process {
  text-align: center;
  padding: 90px 60px;
  background: #fff;
}

.process h2 {
  font-size: 40px;
  margin-bottom: 40px;
  color: var(--primary);
}

.process-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.process-card {
  width: 220px;
  padding: 30px;
  border-radius: 18px;
  background: #fafafa;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.process-card:hover {
  transform: translateY(-6px);
}

/* ================= STORIES ================= */
.stories {
  padding: 90px 60px;
  background: linear-gradient(to bottom, #fff, #f8eef3);
  text-align: center;
}

.stories h2 {
  font-size: 40px;
  margin-bottom: 40px;
  color: var(--primary);
}

.story-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.story-box {
  width: 350px;
  padding: 25px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.story-box p {
  line-height: 1.8;
  color: #555;
}

.story-box h4 {
  margin-top: 15px;
  color: var(--primary);
}

/* ================= CTA ================= */
.cta {
  text-align: center;
  padding: 100px 20px;
  background:
    linear-gradient(rgba(109, 33, 79, 0.9), rgba(109, 33, 79, 0.9)),
    url("https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=1800&q=90");
  background-size: cover;
  color: white;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 25px;
  background: var(--dark);
  color: white;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px;
  }

  .about {
    flex-direction: column;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}