/* ══════════════════════════════════════════════
   Gaurav Creations — Global Stylesheet
   Professional Creative Services
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0C0C0E;
  --bg-card: #141418;
  --bg-elevated: #1A1A20;
  --text: #E8E6E1;
  --text-muted: #8A8A8F;
  --accent: #C9A96E;
  --accent-light: #E2CB96;
  --accent-dark: #A68B4B;
  --border: rgba(201, 169, 110, 0.12);
  --border-hover: rgba(201, 169, 110, 0.3);
  --white: #FFFFFF;
  --success: #2D6A4F;
  --paypal-blue: #003087;
  --paypal-light: #7B9FDB;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', 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(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 3px; }

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

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
a { text-decoration: none; }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo em { font-style: italic; }
.logo span {
  color: var(--text-muted);
  font-size: 0.65em;
  margin-left: 6px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 10px 24px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: 0.3s; display: block; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.2);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 16px 36px;
  border: 1px solid var(--border-hover);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ══════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.section-title em { color: var(--accent); font-style: italic; }
.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
  pointer-events: none;
}
.page-hero .glow-1 { background: var(--accent); top: -150px; right: -100px; }
.page-hero .glow-2 { background: #6E5CC9; bottom: -200px; left: -100px; }
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--accent); font-style: italic; }
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ══════════════════════════════════════
   TRUST BADGES (PayPal approval)
   ══════════════════════════════════════ */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.trust-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(201, 169, 110, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   PAYMENT BADGE
   ══════════════════════════════════════ */
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 48, 135, 0.08);
  border: 1px solid rgba(0, 48, 135, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--paypal-light);
  letter-spacing: 0.03em;
}
.payment-badge svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-left .logo { font-size: 1.3rem; }
.footer-left p { color: var(--text-muted); font-size: 0.82rem; margin-top: 6px; font-weight: 300; }
.footer-nav { display: flex; gap: 48px; }
.footer-nav-col h5 {
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.footer-nav-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-nav-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--accent); background: rgba(201, 169, 110, 0.06); }
.footer-social a svg { width: 18px; height: 18px; fill: var(--text-muted); transition: fill 0.3s; }
.footer-social a:hover svg { fill: var(--accent); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); font-weight: 300; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: var(--text-muted); transition: color 0.3s; }
.footer-legal a:hover { color: var(--accent); }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12,12,14,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .trust-items { gap: 24px; }
  .footer-content { flex-direction: column; }
  .footer-nav { gap: 32px; }
}
@media (max-width: 600px) {
  section { padding: 72px 0; }
  .page-hero { padding: 130px 0 60px; }
  .trust-items { flex-direction: column; gap: 16px; }
  .footer-nav { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
