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

body {
  font-family: "Inter", sans-serif;
  background-color: #f8f9fc;
  overflow-x: hidden;
}

/* Custom Color Palette */
:root {
  --primary-gold: #d4af37;
  --primary-dark: #0a2540;
  --primary-blue: #1a3a5f;
  --accent-gold-light: #f5e6b8;
  --gray-light: #f4f7fa;
  --text-dark: #1e2f3e;
  --text-muted: #5a6e7e;
}

/* Typography */
h1,
h2,
h3,
h4,
.brand-font {
  font-family: "Space Grotesk", monospace;
  font-weight: 700;
}

.text-gold {
  color: var(--primary-gold);
}

.bg-gold {
  background: var(--primary-gold);
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b8960f 100%);
  color: #0a2540;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #e0be4f 0%, #c4a20d 100%);
  color: #0a2540;
}

.btn-outline-gold {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--primary-gold);
  color: #0a2540;
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: "Space Grotesk", monospace;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0a2540 0%, #d4af37 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0.5rem;
  transition: 0.2s;
}

.nav-link:hover {
  color: var(--primary-gold);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fc 0%, #eff2f8 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  background: rgba(212, 175, 55, 0.12);
  padding: 8px 20px;
  border-radius: 40px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b8860b;
  margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2.2rem;
  color: var(--primary-gold);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #0a2540 0%, #123456 100%);
  color: white;
  padding: 60px 0;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: "Space Grotesk", monospace;
  color: var(--primary-gold);
}

/* Payment Gateway Banner */
.gateway-banner {
  background: linear-gradient(120deg, #fff9e8 0%, #ffffff 100%);
  border-radius: 32px;
  padding: 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
  background: #0a1c2a;
  color: #b0c4de;
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: "Space Grotesk", monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #d4af37;
  transition: 0.2s;
  margin-right: 8px;
}

.social-links a:hover {
  background: var(--primary-gold);
  color: #0a1c2a;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }
  .stat-number {
    font-size: 2rem;
  }
}
