:root {
  color-scheme: dark;
  --bg: #070707;                 /* dark black */
  --bg-alt: #0f0f0f;
  --card: #141414;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --accent: #d4af37;             /* gold */
  --accent-dark: #b8922d;
  --border: rgba(212, 175, 55, 0.18);
  --success: #3fbf7f;
  --danger: #ff6b6b;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.logo img {
  width: 60px;          /* 56 / 64 as you like */
  height: 64px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0b0f1f;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.35);
  background: var(--accent-dark);
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
  background: url("../assets/bg-fallback.jpg") center/cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.12) contrast(1.06);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 520px at 18% 22%, rgba(212,175,55, 0.18), transparent 55%),
    radial-gradient(720px 460px at 72% 30%, rgba(212,175,55, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.65), rgba(2, 6, 23, 0.86));
}

.hero .container {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

@media (max-width: 768px) {
  .hero-video { display: none; }
  .hero { min-height: auto; padding: 5rem 0; }
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card {
  background: var(--card);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.section {
  padding: 4rem 0;
}

.section-heading {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-heading p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 1.5rem;
}

.timeline-step {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--card);
  border-radius: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial {
  display: grid;
  gap: 0.75rem;
}

.faq-preview {
  display: grid;
  gap: 1rem;
}

.faq-preview details {
  background: var(--card);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.tools-grid {
  display: grid;
  gap: 2rem;
}

.tool-card {
  background: var(--card);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: grid;
  gap: 1.25rem;
}

.tool-card h2 {
  font-size: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0c0c0c;
  color: var(--text);
}


input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(212, 175, 55, 0.5);
}

.output {
  background: rgba(212, 175, 55, 0.08);
  padding: 1rem;
  border-radius: 12px;
  border: 1px dashed rgba(212, 175, 55, 0.5);
  color: var(--text);
}

.output strong {
  color: var(--accent);
}

.notice {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #0f1528;
  border: 1px solid var(--border);
  color: var(--muted);
}

.reminder {
  display: grid;
  gap: 0.75rem;
}

.reminder-item {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reminder-item.overdue {
  border-color: var(--danger);
  color: var(--danger);
}

.reminder-item.upcoming {
  border-color: var(--success);
  color: var(--success);
}

footer {
  background: #070707;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}


.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #0b0f1f;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: var(--accent-dark);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.5);
}

.whatsapp-float svg {
  display: block;
}


.modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 24, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--card);
  padding: 2rem;
  border-radius: 18px;
  width: min(520px, 100%);
  position: relative;
  border: 1px solid var(--border);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 720px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.table th,
.table td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(7, 7, 7, 0.98);
    flex-direction: column;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: none;
    min-width: 220px;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}


@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ===== Contact page layout ===== */
.contact-grid{
  display: grid;
  gap: 1.5rem;
}
.contact-card h2{ margin-bottom: .5rem; }
.muted{ color: var(--muted); }

.contact-actions{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.btn-full{ width: 100%; }

.contact-side{
  display: grid;
  gap: 1.5rem;
}

.contact-lines{
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}
.contact-lines .line{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .75rem;
  align-items: start;
}
.contact-lines .k{
  color: var(--muted);
  font-weight: 600;
}

.quick-links{
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}
.quick-links a{
  padding: .75rem 1rem;
  border-radius: 12px;
  background: rgba(212,175,55,.06);
  border: 1px solid var(--border);
  color: var(--text);
}
.quick-links a:hover{
  border-color: rgba(212,175,55,.45);
  color: var(--accent);
}

/* 2-column on desktop */
@media (min-width: 900px){
  .contact-grid{
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
  }
}

/* ===== WhatsApp float icon fix ===== */
.whatsapp-float{
  color: #111; /* IMPORTANT: makes icon visible on gold */
}
.whatsapp-float svg{
  display: block;
}
/* Universal fix: card ke andar text + button spacing */
.card p + .btn,
.card p + a.btn {
  margin-top: 14px;
}
/* Hero image slow slider */
.hero-slider img{
  width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 1.6s ease; /* smooth fade */
}

.hero-slider img.fade-out{
  opacity: 0;
}
/* ===== Golden Glow ONLY behind Hero Image Panel ===== */

.hero-card {
  position: relative;
  z-index: 1;
}

/* Glow layer */
.hero-card::before {
  content: "";
  position: absolute;
  inset: -35px;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(212, 175, 55, 0.28) 0%,
    rgba(212, 175, 55, 0.18) 30%,
    rgba(212, 175, 55, 0.08) 55%,
    transparent 70%
  );
  z-index: -1;
  filter: blur(18px);
  pointer-events: none;
}

/* Mobile pe thoda subtle */
@media (max-width: 768px) {
  .hero-card::before {
    inset: -20px;
    opacity: 0.7;
  }
}
/* ===== Footer Social Links ===== */
.footer-social{
  display: flex;
  gap: 14px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.25);
  color: #e6e6e6;
  font-size: .9rem;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.social-link i{
  font-size: 1rem;
}

/* Hover = premium gold feel */
.social-link:hover{
  transform: translateY(-2px);
  background: rgba(212,175,55,.18);
  color: #d4af37;
}

/* Platform subtle identity */
.social-link.instagram:hover{
  border-color: #e1306c;
}

.social-link.facebook:hover{
  border-color: #1877f2;
}

/* Mobile center */
@media (max-width:600px){
  .footer-social{
    justify-content: center;
  }
}
.social-icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  color: #d4af37;
  transition: transform .2s ease, background .2s ease;
}

.social-icon:hover{
  transform: translateY(-3px);
  background: rgba(212,175,55,.22);
}




/* ===== PROPLUS VISUAL UPGRADE (2026) ===== */
:root{
  --accent2: #FFB700; /* gold mid */
  --accent3: #FFE066; /* gold soft */
  --bg-grad:
    radial-gradient(900px circle at 15% 10%, rgba(212,175,55,.14), transparent 55%),
    radial-gradient(700px circle at 85% 20%, rgba(124,92,255,.18), transparent 55%),
    radial-gradient(800px circle at 60% 85%, rgba(46,229,157,.10), transparent 60%);
  --glass: rgba(255,255,255,.06);
  --glass-strong: rgba(255,255,255,.09);
  --ring: 0 0 0 6px rgba(212,175,55,.10);
}

html{ scroll-behavior:smooth; }
::selection{ background: rgba(212,175,55,.28); }

body{
  background:
    var(--bg-grad),
    linear-gradient(180deg, #060606 0%, #070707 35%, #050505 100%);
}

/* subtle grid for depth */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.07), transparent 55%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 28px);
  opacity:.18;
  mix-blend-mode: overlay;
}

/* header polish */
header{
  background: rgba(7,7,7,.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{ padding: .9rem 0; }
.logo img{ filter: drop-shadow(0 10px 24px rgba(0,0,0,.55)); }

/* nav links underline */
.nav-links a{
  position: relative;
  padding: .35rem .15rem;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:.15rem; right:.15rem; bottom:-6px;
  height:2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
  opacity:.9;
}
.nav-links a:hover::after,
.nav-links a.active::after{ transform: scaleX(1); }

/* buttons: richer */
.btn{
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0px) scale(.99); }

.btn-primary{
  background: linear-gradient(135deg, #FFD700 0%, #FFB700 55%, #E6A700 100%);
  border: 1px solid rgba(255,255,255,.10);
  position: relative;
  overflow: hidden;
}
.btn-primary::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(250px circle at 20% 30%, rgba(255,255,255,.30), transparent 45%);
  opacity:.0;
  transition: opacity .18s ease;
}
.btn-primary:hover::before{ opacity:.9; }
.btn-outline{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.12);
}
.btn-outline:hover{
  border-color: rgba(212,175,55,.35);
  box-shadow: 0 18px 40px rgba(0,0,0,.35), 0 0 0 6px rgba(212,175,55,.06);
}

/* hero card glass + glow */
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  position: relative;
  overflow: hidden;
}
.hero-card::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 20%, rgba(212,175,55,.18), transparent 45%),
              radial-gradient(circle at 70% 80%, rgba(124,92,255,.18), transparent 50%);
  filter: blur(18px);
  opacity:.75;
  pointer-events:none;
}

/* sections spacing and dividers */
.section{
  padding: 4.75rem 0;
}
.section + .section{
  border-top: 1px solid rgba(255,255,255,.06);
}
.section-heading h2{
  letter-spacing: -0.02em;
}
.section-heading p{ max-width: 70ch; }

/* cards: premium hover */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  position: relative;
}
.card::before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,175,55,.45), rgba(124,92,255,.35), rgba(46,229,157,.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity:.0;
  transition: opacity .22s ease;
  pointer-events:none;
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
}
.card:hover::before{ opacity: .95; }

/* badges pop */
.badge{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.30);
}
.badge:hover{
  border-color: rgba(212,175,55,.35);
  transform: translateY(-2px);
}

/* footer refine */
footer{
  background:
    radial-gradient(700px circle at 20% 0%, rgba(124,92,255,.12), transparent 55%),
    radial-gradient(700px circle at 90% 30%, rgba(212,175,55,.12), transparent 55%),
    #070707;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* mobile nav panel: glass */
@media (max-width: 860px){
  .nav-links{
    background: rgba(10,10,10,.78);
    backdrop-filter: blur(14px);
  }
}

/* prefers-reduced-motion: respect */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .card, .btn, .badge{ transition:none !important; }
}



/* ===== FORCE GOLD FOR HERO WHATSAPP BUTTON ===== */
.hero-actions .btn-primary{
  background: linear-gradient(135deg, #FFD700 0%, #FFB700 55%, #E6A700 100%) !important;
  color: #111 !important;
  box-shadow: 0 12px 26px rgba(212,175,55,.35) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
.hero-actions .btn-primary:hover{
  filter: brightness(1.06);
}
