/* Modern Dark Luxury Mystical Theme - Single Page Landing */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #07070a;
  --bg-card: #100f17;
  --bg-card-hover: #171522;
  --border-gold: rgba(223, 168, 69, 0.35);
  --border-gold-glow: rgba(223, 168, 69, 0.7);
  
  --gold-primary: #dfa845;
  --gold-light: #f7d070;
  --gold-dark: #b88321;
  --gold-gradient: linear-gradient(135deg, #f7d070 0%, #dfa845 40%, #a67215 100%);
  --gold-gradient-text: linear-gradient(135deg, #fff2cc 0%, #eac266 50%, #ba8a2d 100%);
  
  --whatsapp-green: #25d366;
  --whatsapp-green-dark: #128c7e;
  --whatsapp-glow: rgba(37, 211, 102, 0.4);
  
  --text-main: #f0edfa;
  --text-muted: #a3a0b5;
  --text-dim: #79768b;
  
  --font-serif: 'Cinzel', serif;
  --font-display: 'Cinzel Decorative', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-gold: 0 10px 30px -10px rgba(223, 168, 69, 0.3);
  --shadow-wa: 0 10px 30px -5px rgba(37, 211, 102, 0.4);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-dark);
  position: relative;
}

/* Canvas Particle Background */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Background Ambient Orbs */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 168, 69, 0.08) 0%, rgba(0,0,0,0) 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

.ambient-glow-bottom {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, rgba(0,0,0,0) 70%);
  bottom: 0;
  right: -100px;
  pointer-events: none;
  z-index: -1;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
}

.gold-text {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Warning Notice Bar */
.top-notice-bar {
  background: linear-gradient(90deg, #1f1200 0%, #3d1b00 50%, #1f1200 100%);
  border-bottom: 1px solid var(--gold-primary);
  padding: 10px 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 101;
}

.top-notice-bar svg {
  color: #ff9800;
  flex-shrink: 0;
}

/* Header Navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 168, 69, 0.15);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(223, 168, 69, 0.5);
  color: #000;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}

.header-cta .btn-wa {
  padding: 6px 14px;
  font-size: 0.8rem;
  gap: 5px;
  white-space: nowrap;
}

.header-cta .btn-wa svg {
  width: 14px;
  height: 14px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

/* WhatsApp Buttons Styling */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-wa);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.btn-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-wa-text-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.btn-wa-title {
  font-size: 0.95em;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn-wa-sub {
  font-size: 0.88em;
  font-weight: 600;
  opacity: 0.95;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.btn-wa-lg {
  padding: 18px 36px;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.pulse-animation {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #0d0c00;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  border: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(223, 168, 69, 0.5);
  background: linear-gradient(135deg, #fff2cc 0%, #dfa845 100%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(23, 21, 34, 0.6);
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  font-size: 0.95rem;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(223, 168, 69, 0.15);
  border-color: var(--gold-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 70px 0 90px;
  position: relative;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223, 168, 69, 0.12);
  border: 1px solid var(--border-gold);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Quick Guarantees Strip */
.guarantee-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-item {
  background: rgba(16, 15, 23, 0.7);
  border: 1px solid rgba(223, 168, 69, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.guarantee-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(223, 168, 69, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-text {
  text-align: left;
}

.guarantee-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.guarantee-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

/* User Images Showcase Section */
.gallery-section {
  padding: 90px 0;
  background: linear-gradient(180deg, rgba(7,7,10,0) 0%, rgba(16,15,23,0.6) 50%, rgba(7,7,10,0) 100%);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  position: relative;
}

.gallery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0.7;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold-glow);
  box-shadow: 0 20px 40px rgba(223, 168, 69, 0.2);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect ratio square container */
  background: #000;
  overflow: hidden;
}

.card-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(7, 7, 10, 0.85);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.card-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-list {
  list-style: none;
  margin-bottom: 20px;
}

.card-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-list li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Services Grid Section */
.services-section {
  padding: 90px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(223, 168, 69, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(223, 168, 69, 0.2) 0%, rgba(223, 168, 69, 0.05) 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.86rem;
  color: var(--text-main);
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-features li span {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Process Section */
.process-section {
  padding: 90px 0;
  background: rgba(16, 15, 23, 0.5);
  border-top: 1px solid rgba(223, 168, 69, 0.15);
  border-bottom: 1px solid rgba(223, 168, 69, 0.15);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(223, 168, 69, 0.4);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 90px 0;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(223, 168, 69, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 5px 20px rgba(223, 168, 69, 0.15);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-main);
  transition: var(--transition);
}

.faq-header:hover {
  color: var(--gold-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-body {
  padding: 0 24px 20px 24px;
}

/* Contact CTA Box Section */
.contact-section {
  padding: 70px 0 110px;
}

.contact-card {
  background: linear-gradient(135deg, #13121d 0%, #1e192c 100%);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.phone-display {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  margin: 16px 0;
  display: inline-block;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-alert {
  background: rgba(223, 168, 69, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-top: 20px;
}

/* Footer */
.footer {
  background: #040406;
  border-top: 1px solid rgba(223, 168, 69, 0.15);
  padding: 50px 0 30px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-disclaimer {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* Floating WhatsApp Button Bottom-Right */
.floating-wa-btn {
  position: fixed;
  bottom: 85px;
  right: 16px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp-green);
  color: #fff;
  padding: 8px 14px 8px 10px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: scale(1.06);
  background: #20ba5a;
}

.floating-wa-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--whatsapp-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-wa-icon svg {
  width: 18px;
  height: 18px;
}

.online-badge {
  width: 8px;
  height: 8px;
  background: #00ff66;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  top: 10px;
  left: 30px;
}

/* Sticky Bottom Mobile Bar */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 9, 14, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px;
}

.sticky-mobile-bar .btn-wa {
  width: 100%;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 1rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.4rem;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 9, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 0;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
    display: none;
  }
  
  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    font-size: 0.78rem;
  }
  
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .gallery-grid, .services-grid, .process-steps {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-bar {
    display: block;
  }

  .floating-wa-btn {
    bottom: 95px;
    right: 16px;
    padding: 8px 14px;
    font-size: 0.8rem;
    z-index: 1001;
  }

  body {
    padding-bottom: 70px; /* Offset for sticky bar */
  }
}
