/* ============================================================
   VAKSHANA INTERIOR — LANDING PAGE STYLESHEET
   bestinteriordesignerschandigarh.com
   Version: 2.0 | March 2025
   Font: Playfair Display (headings) + DM Sans (body)
   Icons: Remix Icons (CDN)
============================================================ */

/* ── VARIABLES ── */
:root {
  --gold:          #C9A96E;
  --gold-light:    #E8C98A;
  --gold-dim:      rgba(201,169,110,0.18);
  --gold-glow:     rgba(201,169,110,0.07);
  --dark:          #0D0D0D;
  --dark2:         #111111;
  --dark3:         #181818;
  --dark4:         #202020;
  --dark5:         #2A2A2A;
  --border:        rgba(201,169,110,0.15);
  --border-soft:   rgba(255,255,255,0.07);
  --text:          #EDE9E3;
  --text-muted:    #7A756E;
  --text-soft:     #555050;
  --white:         #FFFFFF;
  --green:         #25D366;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --shadow:        0 8px 40px rgba(0,0,0,0.5);
  --transition:    0.22s ease;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

/* ── TEXTURE ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}

/* ══════════════════════════════
   TOP BAR
══════════════════════════════ */
.topbar {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 9px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 10px;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: var(--dark);
  padding: 3px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.topbar-info {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.topbar-info i { color: var(--gold); font-size: 12px; }
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 4px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: background var(--transition);
}
.topbar-cta:hover { background: rgba(201,169,110,0.25); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  padding: 72px 24px 52px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 90% 55% at 50% 0%, var(--gold-glow) 0%, transparent 70%);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201,169,110,0.09);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 26px;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.13;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.65s ease 0.08s both;
}
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fadeUp 0.65s ease 0.16s both;
}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp 0.65s ease 0.24s both;
}
.hero-stat { text-align: center; padding: 0 28px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.hero-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ══════════════════════════════
   FORM
══════════════════════════════ */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto 64px;
  padding: 0 20px;
  animation: fadeUp 0.65s ease 0.32s both;
}
.form-section {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
}
.form-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.form-icon {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  color: var(--white);
  margin-bottom: 4px;
}
.form-header p {
  font-size: 13px;
  color: var(--text-muted);
}
.form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group { flex: 1; min-width: 140px; }
.form-group label {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-group label i { color: var(--gold); font-size: 13px; }
.form-group input,
.form-group select {
  width: 100%;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--text-soft); }
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); background: var(--dark5); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%237A756E'%3E%3Cpath d='M12 15l-7-7h14z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 30px; }
.form-group select option { background: #1e1e1e; }
.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  padding: 15px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  transition: opacity var(--transition), transform 0.12s;
  letter-spacing: 0.2px;
}
.btn-primary:hover { opacity: 0.91; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.form-note i { color: var(--gold); font-size: 12px; }

/* ══════════════════════════════
   SECTION HEADER
══════════════════════════════ */
.section-header {
  text-align: center;
  padding: 0 24px 36px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 10px;
}
.section-header p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ══════════════════════════════
   CARDS CONTAINER
══════════════════════════════ */
.cards {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ══════════════════════════════
   RANK 1 CARD
══════════════════════════════ */
.card-rank1 {
  background: linear-gradient(140deg, #16130A 0%, #1A1710 50%, #141208 100%);
  border: 1.5px solid rgba(201,169,110,0.45);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201,169,110,0.06), var(--shadow);
}
.rank1-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.rank-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.rank-badge-top i { font-size: 13px; }
.card-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.rank-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 52px;
  opacity: 0.85;
}
.card-header-info { flex: 1; }
.card-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
}
.card-tagline {
  font-size: 13.5px;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 300;
}
.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.22);
  padding: 4px 11px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--gold-light);
}
.meta-chip i { font-size: 12px; }
.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 9px;
  margin-bottom: 22px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}
.feature-item i {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}
.services-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.services-label i { color: var(--gold); }
.services-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-muted);
  transition: border-color var(--transition);
}
.service-tag:hover { border-color: var(--border); color: var(--text); }
.service-tag i { font-size: 12px; }
.card-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: opacity var(--transition), transform 0.12s;
  letter-spacing: 0.2px;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: opacity var(--transition);
}
.btn-wa:hover { opacity: 0.9; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition);
}
.btn-outline:hover { background: rgba(201,169,110,0.08); }

/* ══════════════════════════════
   REGULAR RANK CARDS
══════════════════════════════ */
.card {
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 22px 22px 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover {
  border-color: rgba(201,169,110,0.28);
  transform: translateY(-2px);
}
.card-left { display: flex; align-items: flex-start; justify-content: center; padding-top: 3px; }
.card-num {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 700;
  flex-shrink: 0;
}
.card-body-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}
.card-body-best {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-body-best i { font-size: 12px; }
.card-body-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 12px;
}
.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.card-tag {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 11.5px;
  color: var(--text-soft);
}

/* ══════════════════════════════
   WHY VAKSHANA SECTION
══════════════════════════════ */
.why-section {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
  margin-bottom: 64px;
  text-align: center;
}
.why-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  margin-bottom: 8px;
  color: var(--white);
}
.why-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.why-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 2.1rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.why-card h3 {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 7px;
}
.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-section {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 24px;
  text-align: center;
}
.faq-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 36px;
  color: var(--white);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  text-align: left;
}
.faq-q {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold-light); }
.faq-icon {
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 14px;
}

/* ══════════════════════════════
   STICKY WHATSAPP
══════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.sticky-label {
  background: var(--dark3);
  color: var(--text-muted);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.sticky-wa {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.38);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sticky-wa:hover {
  transform: scale(1.09);
  box-shadow: 0 6px 32px rgba(37,211,102,0.5);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-note {
  font-size: 12.5px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 18px;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 13px;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 0.75; }
.footer-seo {
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-soft);
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card { animation: fadeUp 0.5s ease both; }
.card:nth-child(2)  { animation-delay: 0.05s; }
.card:nth-child(3)  { animation-delay: 0.10s; }
.card:nth-child(4)  { animation-delay: 0.15s; }
.card:nth-child(5)  { animation-delay: 0.20s; }
.card:nth-child(6)  { animation-delay: 0.25s; }
.card:nth-child(7)  { animation-delay: 0.30s; }
.card:nth-child(8)  { animation-delay: 0.35s; }

/* ══════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════ */
@media (max-width: 768px) {
  .hero { padding: 56px 18px 40px; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 18px; }
  .hero-stat-num { font-size: 1.8rem; }
  .form-section { padding: 24px 18px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .card-rank1 { padding: 24px 18px; }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════ */
@media (max-width: 580px) {
  .hide-sm { display: none !important; }
  .topbar { padding: 8px 16px; }
  .hero { padding: 44px 16px 32px; }
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 12px; }
  .hero-stat { padding: 0 10px; }
  .form-row { flex-direction: column; }
  .card-rank1 { padding: 20px 16px; }
  .rank-number { font-size: 2.2rem; }
  .card-cta { flex-direction: column; }
  .btn-gold, .btn-wa, .btn-outline { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .card { grid-template-columns: 1fr; }
  .card-left { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cards { padding: 0 14px 60px; }
  .sticky-cta { bottom: 16px; right: 16px; }
  .sticky-wa { width: 52px; height: 52px; font-size: 24px; }
  .faq-section { padding: 0 16px; }
}

@media (max-width: 360px) {
  .why-grid { grid-template-columns: 1fr; }
  .card-meta { gap: 5px; }
}
