/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold-light:   #f0d080;
  --gold-main:    #c9a84c;
  --gold-dark:    #8a6a1e;
  --gold-glow:    rgba(201, 168, 76, 0.35);
  --black:        #04040a;
  --dark-1:       #080810;
  --dark-2:       #0d0d1a;
  --dark-3:       #121225;
  --dark-card:    #0e0e1c;
  --white:        #ffffff;
  --text-muted:   #fbfbff;
  --border-gold:  rgba(201, 168, 76, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============================================================
   CANVAS PARTICLES
   ============================================================ */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   GRID OVERLAY
   ============================================================ */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ============================================================
   GLOWING ORBS
   ============================================================ */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(100, 60, 180, 0.08) 0%, transparent 70%);
  bottom: 0;
  left: -150px;
  animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, 40px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(40px, -30px) scale(1.05); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  display: flex;
  justify-content: center;
  padding: 40px 0 20px;
}

.logo-wrap {
  position: relative;
}

.site-logo {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.5));
  transition: filter 0.3s ease;
}

.site-logo:hover {
  filter: drop-shadow(0 0 35px rgba(201, 168, 76, 0.8));
}

/* ============================================================
   BADGE SECTION
   ============================================================ */
.badge-section {
  display: flex;
  justify-content: center;
  margin: 20px 0 40px;
}

.badge-confirmed {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 10px 24px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-light));
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-icon svg {
  width: 16px;
  height: 16px;
  color: var(--black);
}

.badge-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-main);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  margin-bottom: 60px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Text */
.hero-title {
  margin-bottom: 24px;
  line-height: 1.1;
}

.title-line-1 {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.title-line-2 {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-top: 6px;
}

.title-line-2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e6e6ec;
  margin-bottom: 24px;
}

.gold-text {
  color: var(--gold-main);
  -webkit-text-fill-color: var(--gold-main);
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pillar {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-main);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 5px 12px;
  white-space: nowrap;
}

.pillar-sep {
  color: var(--gold-dark);
  font-size: 1.2rem;
}

/* Hero Image */
.hero-image-wrap {
  display: flex;
  justify-content: center;
}

.image-frame {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.image-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.25) 0%, transparent 70%);
  border-radius: 20px;
  z-index: 0;
  animation: imageGlow 4s ease-in-out infinite;
}

@keyframes imageGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
  display: block;
}

/* Corner decorations */
.image-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
}
.image-corner.tl { top: -2px;    left: -2px;   border-top: 2px solid var(--gold-main); border-left: 2px solid var(--gold-main); }
.image-corner.tr { top: -2px;    right: -2px;  border-top: 2px solid var(--gold-main); border-right: 2px solid var(--gold-main); }
.image-corner.bl { bottom: -2px; left: -2px;   border-bottom: 2px solid var(--gold-main); border-left: 2px solid var(--gold-main); }
.image-corner.br { bottom: -2px; right: -2px;  border-bottom: 2px solid var(--gold-main); border-right: 2px solid var(--gold-main); }

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 60px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.divider-diamond {
  width: 10px;
  height: 10px;
  background: var(--gold-main);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  display: flex;
  justify-content: center;
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  width: 100%;
}

.warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 180, 0, 0.08);
  border: 1px solid rgba(255, 180, 0, 0.25);
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: #ffd966;
}

.warning-icon {
  font-size: 1.1rem;
}

.cta-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-title .gold-text {
  display: block;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Benefits list */
.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
  text-align: left;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: #f6f6ff;
  transition: border-color 0.3s, transform 0.3s;
}

.benefit-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--gold-main);
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-item strong {
  color: var(--white);
}

/* Arrow label */
.cta-arrow-label {
  font-size: 1rem;
  color: #f6f6ff;
  margin-bottom: 24px;
}

/* WhatsApp button */
.whatsapp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 20px 40px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  margin-bottom: 32px;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 60px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:hover::before {
  opacity: 1;
}

.whatsapp-btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-pulse {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-icon {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.btn-icon svg {
  width: 26px;
  height: 26px;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.whatsapp-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* See you text */
.see-you {
  font-size: 1.05rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.footer-logo {
  height: 50px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(0.3);
  transition: opacity 0.3s;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.site-header   { animation: fadeInUp 0.7s ease both; }
.badge-section { animation: fadeInUp 0.7s 0.2s ease both; }
.hero-text     { animation: fadeInLeft 0.8s 0.3s ease both; }
.hero-image-wrap { animation: fadeInRight 0.8s 0.3s ease both; }
.cta-section   { animation: fadeInUp 0.8s 0.5s ease both; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-image {
    max-width: 320px;
    margin: 0 auto;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .pillars {
    justify-content: flex-start;
  }

  .pillar-sep {
    display: none;
  }

  .whatsapp-btn {
    padding: 18px 24px;
    font-size: 1rem;
    width: 100%;
  }

  .cta-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .page-wrapper {
    padding: 0 16px 40px;
  }

  .site-logo {
    height: 64px;
  }

  .badge-text {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }
}
