/* ================= ROOT ================= */
:root {
  --header-height: 80px;
  --dark: #0f172a;
  --muted: #6b7280;
  --gold: #c9a24d;
  --white: #ffffff;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, sans-serif;
}

body {
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
}

.nav {
  max-width: 1280px;
  margin: auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

nav a {
  margin-left: 26px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav a.cta {
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 999px;
  color: #111;
}

/* ================= HERO SLIDER ================= */
.hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  overflow: hidden;
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: auto;
  padding: 80px 24px 0;
}

.hero-text {
  max-width: 700px;
  color: #ffffff;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero-text h2 {
  font-size: 26px;
  font-weight: 400;
  color: #f1f5f9;
}

.hero-tag {
  margin-top: 24px;
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
}

/* ================= TRUST SECTION ================= */
/* ================= TRUST SECTION ================= */

.trust {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.trust-title {
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 60px;
  font-weight: 500;
}

.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}

/* Circle */
.trust-item {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transition: all 0.35s ease;
  cursor: pointer;
}

/* Text */
.trust-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 6px;
  transition: color 0.35s ease;
}

.trust-item p {
  font-size: 14px;
  color: #111;
  transition: color 0.35s ease;
}

/* Hover + Active */
.trust-item:hover,
.trust-item.highlight {
  background: #7c3aed;
  border-color: #7c3aed;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.35);
}

.trust-item:hover h3,
.trust-item:hover p,
.trust-item.highlight h3,
.trust-item.highlight p {
  color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .trust-item {
    width: 140px;
    height: 140px;
  }
}

/* ================= PACKAGES ================= */
.section {
  padding: 110px 24px;
}

.container {
  max-width: 1280px;
  margin: auto;
}

.section-title {
  font-size: 40px;
  margin-bottom: 60px;
  text-align: center;
}

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.package {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.package span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 20px;
  font-size: 24px;
  font-weight: 700;
}

/* ================= FOOTER ================= */
footer {
  background: #020617;
  color: #ffffff;
  padding: 50px 24px;
  text-align: center;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text h2 {
    font-size: 20px;
  }

  nav a {
    margin-left: 16px;
  }
}
