*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── 2. UTILITIES & COMPONENTS ─────────────────────── */
:root {
  --gold: #d09947;
  --gold-lt: #cf9947;
  --gold-dk: #d09947;
  --dark: #0a0a0a;
  --dark2: #252525;
  --dark3: #2e2e2e;
  --mid: #3a3a3a;
  --text: #e8e8e8;
  --muted: #f8f8f8;
  --white: #ffffff;
  --light: #f5f0e8;
  --light2: #ede8dc;
  --light3: #e8e2d4;
  --light-text: #0a0a0a;
  --light-muted: #252525;
  --green: #25d366;
  --border-gold: rgba(201, 150, 12, 0.2);
  --trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-subtle: rgba(255, 255, 255, 0.06);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  position: relative;
  overflow: hidden;
}

/* Button hover shimmer effect */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn:hover::before {
  left: 150%;
}

/* Gold button */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk));
  color: #000;
  box-shadow: 0 4px 15px rgba(208, 153, 71, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: 0 0 0 0 rgba(208, 153, 71, 0.5);
  animation: gold-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e8b05a, var(--gold));
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(208, 153, 71, 0.45), 0 4px 12px rgba(208, 153, 71, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #000;
}

.btn-gold:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 6px 16px rgba(208, 153, 71, 0.35);
}

/* Outline button */
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 0 0 var(--gold);
}

.btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 6px;
}

.btn-outline:hover::after {
  transform: scaleX(1);
}

.btn-outline:hover {
  color: #000;
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(208, 153, 71, 0.35), 0 4px 12px rgba(208, 153, 71, 0.2);
}

.btn-outline:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 6px 16px rgba(208, 153, 71, 0.25);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.left {
  transform: translateX(-50px);
}

.reveal.right {
  transform: translateX(50px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Section headings */
.section-head {
  text-align: center;
  margin-bottom: 30px;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
}

.section-head h2 em {
  font-style: normal;
  color: var(--gold);
}

.section-head p {
  color: var(--muted);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ─── 3. SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ─── 4. ANNOUNCEMENT BAR ───────────────────────────── */
.announcement {
  background: var(--gold);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  z-index: 100;
}

.announcement span {
  opacity: 0.75;
  margin: 0 6px;
}

/* ─── 5. NAVIGATION ─────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--light);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  padding: 16px 0;
  transition: var(--trans);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--trans);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: drop-shadow(0 2px 6px rgba(201, 150, 12, 0.15));
  will-change: transform;
}

.nav-logo:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.navbar.scrolled .nav-logo img {
  height: 36px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--trans);
}

.nav-phone:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.nav-wa {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--trans);
}

.nav-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* ─── 6. HERO SECTION ───────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 70px 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  position: absolute;
  right: -80px;
  top: 0;
  width: 80%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center !important;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(26, 26, 26, 1) 25%, rgba(26, 26, 26, 0.88) 45%,
      rgba(26, 26, 26, 0.5) 65%, rgba(26, 26, 26, 0.15) 100%),
    linear-gradient(180deg, rgba(26, 26, 26, 0.25) 0%, transparent 35%, transparent 60%,
      rgba(26, 26, 26, 0.85) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(208, 153, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 153, 71, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 80% at 30% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(208, 153, 71, 0.09) 0%, transparent 70%);
  z-index: 3;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(208, 153, 71, 0.1);
  border: 1px solid rgba(208, 153, 71, 0.35);
  color: var(--gold-lt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 32px;
  animation: fadeDown 0.8s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 28px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  animation: line-grow 1s 0.8s ease both;
  transform-origin: center;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 75%;
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-trust-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.hero-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(208, 153, 71, 0.4);
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(208, 153, 71, 0.15);
  border-radius: 20px;
  padding: 28px 48px;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 760px;
  animation: fadeUp 0.9s 0.5s ease both;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(208, 153, 71, 0.1);
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-num sup {
  font-size: 1rem;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(208, 153, 71, 0.15);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ─── 7. PROMO SECTION ──────────────────────────────── */
.promo-section {
  padding: 60px 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(208, 153, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 153, 71, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.promo-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(208, 153, 71, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.promo-card {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(201, 150, 12, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 1;
}

.promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-lt) 30%, var(--gold) 50%,
      var(--gold-lt) 70%, transparent 100%);
  border-radius: 24px 24px 0 0;
}

.promo-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(208, 153, 71, 0.04), transparent);
  animation: promo-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.promo-label {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk));
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(208, 153, 71, 0.3);
}

.promo-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--light-text);
  line-height: 1.2;
}

.promo-title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.promo-title em::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.promo-sub {
  color: var(--light-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.cd-box {
  background: var(--light2);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  min-width: 70px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}

.cd-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.cd-box:hover {
  border-color: rgba(201, 150, 12, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208, 153, 71, 0.12);
}

.cd-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.cd-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--light-muted);
  margin-top: 5px;
  font-weight: 600;
}

.countdown-sep {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding-bottom: 8px;
}

.countdown-sep span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  animation: sep-blink 1s ease-in-out infinite;
}

.countdown-sep span:last-child {
  animation-delay: 0.5s;
}

/* ─── 8. PERKS BAR ──────────────────────────────────── */
.perks-bar {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  padding: 20px 0;
}

.perks-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 16px;
  color: var(--dark);
}

.perk-icon {
  font-size: 1.3rem;
}

.perk-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.perk-text span {
  font-size: 0.75rem;
  opacity: 0.7;
}

.perk-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin: 4px 0;
}

/* ─── 9. SERVICES SECTION ───────────────────────────── */
.services-section {
  background: var(--light2);
  padding: 70px 0;
}

.services-section .section-head h2,
.services-section .section-head p {
  color: var(--light-text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(201, 150, 12, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--trans);
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 150, 12, 0.45);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--trans);
}

.service-card:hover::after {
  opacity: 1;
}

.service-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--light3);
  flex-shrink: 0;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  transition: opacity 0.4s ease;
}

.service-card:hover .service-img-overlay {
  opacity: 0.75;
}

.service-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--light-text);
  transition: color 0.3s ease;
}

.service-card:hover .service-body h3 {
  color: var(--gold);
}

.service-body p {
  font-size: 0.83rem;
  color: var(--light-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 150, 12, 0.12);
  margin-top: auto;
}

.service-price {
  font-size: 0.8rem;
  color: var(--light-muted);
  font-weight: 500;
}

.service-price strong {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: var(--trans);
  white-space: nowrap;
}

.service-link:hover {
  color: var(--gold-dk);
  letter-spacing: 0.08em;
}

.service-cta {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
}

/* ─── 10. WHY US SECTION ────────────────────────────── */
.why-section {
  padding: 70px 0;
  background: var(--dark3);
  position: relative;
  overflow: hidden;
}

.why-bg-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(208, 153, 71, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}

.why-left h2 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}


.why-left > p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.why-left-stats {
  display: flex;
  align-items: center;
  background: rgba(208, 153, 71, 0.05);
  border: 1px solid rgba(208, 153, 71, 0.12);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 36px;
}

.why-stat {
  flex: 1;
  text-align: center;
}

.why-stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.why-stat-num sup {
  font-size: 0.85rem;
}

.why-stat-label {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 5px;
}

.why-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(208, 153, 71, 0.15);
  flex-shrink: 0;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--dark2);
  border: 1px solid rgba(208, 153, 71, 0.08);
  border-radius: 20px;
  padding: 24px;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.4s ease;
  border-radius: 20px 0 0 0;
}

.why-card:hover::before {
  width: 100%;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(208, 153, 71, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.why-card:hover::after {
  opacity: 1;
}

.why-card:hover {
  border-color: rgba(208, 153, 71, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(208, 153, 71, 0.1);
}

.why-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(208, 153, 71, 0.1);
  border: 1px solid rgba(208, 153, 71, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  transition: var(--trans);
  flex-shrink: 0;
}

.why-card:hover .why-card-icon {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: rotate(-6deg) scale(1.08);
}

.why-card-body {
  flex: 1;
}

.why-card-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.why-card:hover .why-card-body h4 {
  color: var(--gold);
}

.why-card-body p {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.65;
}

.why-card-arrow {
  font-size: 1rem;
  color: rgba(208, 153, 71, 0.3);
  align-self: flex-end;
  transition: var(--trans);
  line-height: 1;
}

.why-card:hover .why-card-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* ─── 11. VIDEO SECTION ────────────────────────────── */
/* .video-section {
  padding: 70px 0;
  background: var(--light);
}

.video-section .section-head {
  margin-bottom: 48px;
}

.video-section .section-head h2 {
  color: var(--light-text);
}

.video-section .section-head p {
  color: var(--light-muted);
}

.video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  max-width: 900px;
  margin: 0 auto;
  cursor: pointer;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.15);
}

.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: filter 0.4s;
}

.video-wrap:hover img {
  filter: brightness(0.45);
}

/* .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--dark);
  transition: var(--trans);
  backdrop-filter: blur(4px);
}

.video-wrap:hover .play-circle {
  transform: scale(1.12);
  background: var(--gold-lt);
  box-shadow: 0 0 0 16px rgba(201, 150, 12, 0.15);
}

.video-wrap::before {
  content: "● VIDEO";
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
} */

/* ─── 12. REVIEWS SECTION ──────────────────────────── */
.reviews-section {
  padding: 100px 0;
  background: var(--light2);
}
.reviews-section .section-head h2,
.reviews-section .section-head p {
  color: var(--light-text);
}

.rating-summary {
  text-align: center;
  margin-bottom: 48px;
}

.rating-summary .brand {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--light-text);
}

.stars-row {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 4px;
}

.rating-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.review-count {
  font-size: 0.8rem;
  color: var(--light-muted);
  margin-top: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(201, 150, 12, 0.15);
  border-radius: 20px;
  padding: 24px;
  transition: var(--trans);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
  border-color: rgba(201, 150, 12, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.reviewer-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk));
  color: #000;
}

.reviewer-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--light-text);
}

.reviewer-info span {
  font-size: 0.75rem;
  color: var(--light-muted);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.83rem;
  color: var(--light-muted);
  line-height: 1.6;
}

/* ─── 13. FAQ SECTION ──────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--dark3);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(208, 153, 71, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-section .section-head h2 {
  color: var(--text);
}

.faq-section .section-head p {
  color: var(--muted);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark2);
  border: 1px solid rgba(208, 153, 71, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.faq-item:hover {
  border-color: rgba(208, 153, 71, 0.3);
  box-shadow: 0 8px 32px rgba(208, 153, 71, 0.15);
  transform: translateY(-4px);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--trans);
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q .faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-q.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 24px;
  border-top: 1px solid rgba(208, 153, 71, 0.08);
}

.faq-a.open {
  max-height: 200px;
  padding: 20px 24px;
}

/* ─── 14. CTA BANNER ───────────────────────────────── */
.cta-banner {
  padding: 90px 0;
  background: var(--light2);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 150, 12, 0.15);
  border-bottom: 1px solid rgba(201, 150, 12, 0.15);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(208, 153, 71, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Gold corner accents */
.cta-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(208, 153, 71, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 800px;
  position: relative;
  color: var(--light-text);
  line-height: 1.2;
}

.cta-banner h2 em {
  font-style: normal;
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.cta-banner h2 em::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(208, 153, 71, 0.15);
  z-index: -1;
}

.cta-banner p {
  color: var(--light-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
}

.cta-banner .btn {
  position: relative;
  transition: all 0.3s ease;
}

.cta-banner .btn:hover {
  transform: translateY(-3px);
}

/* ─── 15. FOOTER ───────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: inline-block;
  color: #000;
}

.footer-brand img {
  height: 40px;
}

.footer-brand p {
  font-size: 0.83rem;
  color: var(--dark2);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: var(--dark2);
  transition: var(--trans);
}

.footer-col ul li a:hover {
  color: var(--dark);
  padding-left: 4px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--dark2);
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-item strong {
  color: var(--dark);
}

.contact-item a {
  color: var(--dark) !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--dark2);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── 16. FLOATING BUTTONS ─────────────────────────── */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(201, 150, 12, 0.4);
}

.back-top.show {
  display: flex;
}

.back-top:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
}

.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 16px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--trans);
  text-decoration: none;
  overflow: hidden;
  max-width: 200px;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  background: #20c05a;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.3);
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}

.wa-float svg {
  flex-shrink: 0;
}

.wa-float-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ─── 17. KEYFRAMES ────────────────────────────────── */
@keyframes gold-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(208, 153, 71, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(208, 153, 71, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(208, 153, 71, 0);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes line-grow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes promo-shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

@keyframes sep-blink {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.15;
  }
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
──────────────────────────────────────────────────── */
/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .why-inner {
    gap: 48px;
  }
  .hero-stats {
    padding: 24px 32px;
  }
}

/* Small Tablet (max 900px) */
@media (max-width: 900px) {
  /* Navigation */
  .nav-links {
    display: none;
  }
  .nav-inner {
    gap: 16px;
  }
  .nav-logo img {
    height: 34px;
  }
  .navbar.scrolled .nav-logo img {
    height: 30px;
  }

  /* Hero */
  .hero {
    padding: 60px 0;
  }
  .hero-bg-image img {
    width: 100%;
    opacity: 0.35;
  }
  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.75) 50%,
        rgba(26, 26, 26, 0.95) 100%);
  }
  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
  }
  .hero .container {
    gap: 40px;
  }
  .hero-stats {
    padding: 24px 20px;
  }
  .stat-num {
    font-size: 1.7rem;
  }
  .hero-content {
    max-width: 100%;
  }

  /* Sections */
  .video-section {
    padding: 70px 0;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .perks-inner {
    justify-content: space-between;
  }
  .why-inner {
    grid-template-columns: 1fr;
  }
  .why-right {
    grid-template-columns: 1fr 1fr;
  }

  /* Floating WhatsApp */
  .wa-float {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    max-width: 52px;
  }
  .wa-float-label {
    display: none;
  }
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* Mobile (max 600px) */
@media (max-width: 600px) {
  /* Base */
  .container {
    padding: 0 20px;
  }

  /* Navigation */
  .navbar {
    padding: 12px 0;
  }
  .nav-inner {
    gap: 12px;
  }
  .nav-logo img {
    height: 24px;
  }
  .navbar.scrolled .nav-logo img {
    height: 20px;
  }
  .nav-phone {
    padding: 9px 14px;
    font-size: 0.78rem;
  }
  .nav-wa {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  /* Hero */
  .hero {
    padding: 50px 0;
    min-height: 100svh;
  }
  .hero .container {
    gap: 32px;
  }
  .hero-content {
    text-align: left;
    align-items: flex-start;
    max-width: 100%;
  }
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .hero h1 em{
    margin: 0px;
  }
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 28px;
    max-width: 100%;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .hero-trust {
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
  }
  .hero-trust-dot {
    display: none;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 16px;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    flex: unset;
    padding: 16px 12px;
    text-align: center;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(3) {
    border-bottom: 1px solid rgba(208, 153, 71, 0.12);
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(5) {
    border-right: 1px solid rgba(208, 153, 71, 0.12);
  }
  .stat-num {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 0.65rem;
  }

  /* Promo */
  .promo-section {
    padding: 50px 0;
  }
  .promo-title {
    font-size: 1.3rem;
  }
  .countdown {
    gap: 8px;
  }
  .cd-box {
    min-width: 60px;
    padding: 12px 10px;
  }
  .cd-num {
    font-size: 1.6rem;
  }

  /* Perks */
  .perks-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }
  .perk {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
    align-items: flex-start;
  }
  .perk-divider {
    display: none;
  }

  /* Services */
  .services-section {
    padding: 50px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-cta {
    flex-direction: column;
    align-items: center;
  }
  .service-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Why Us */
  .why-section {
    padding: 50px 0;
  }
  .why-right {
    grid-template-columns: 1fr;
  }
  .why-left-stats {
    padding: 16px;
  }
  .why-stat-num {
    font-size: 1.5rem;
  }
  .section-head {
    text-align: left;
  }
  .rating-summary {
    text-align: left;
  }

  /* Video */
  .video-section {
    padding: 50px 0;
  }

  /* Reviews */
  .reviews-section {
    padding: 50px 0;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-section {
    padding: 50px 0;
  }

  /* CTA */
  .cta-banner {
    padding: 50px 0;
  }
  .cta-banner .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating WhatsApp - ensure it's visible on mobile */
  .wa-float {
    display: flex;
  }
}

/* Very Small (max 400px) */
@media (max-width: 400px) {
  .nav-logo img {
    height: 20px;
  }
  .nav-phone {
    padding: 8px 10px;
    font-size: 0.75rem;
  }
  .nav-wa {
    width: 32px;
    height: 32px;
    display: none;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .stat-num {
    font-size: 1.5rem;
  }
  .hero-badge {
    font-size: 0.6rem;
    padding: 5px 12px;
  }
  .cd-box {
    min-width: 52px;
    padding: 10px 8px;
  }
}