/* Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Root Variables */
:root {
  --primary: #1e3a8a;
  --accent: #7185f4;
  --highlight: #f59e0b;
  --danger: #f43f5e;
  --text: #1e293b;
  --muted: #64748b;
  --bg-section: #f8fafc;
  --bg-card: #ffffff;
  --glass: rgba(255, 255, 255, 0.85);
  --blur: blur(12px);
  --gold: #f6c453;
  --gold-dark: #d4a73c;
  --gold-glow: rgba(246, 196, 83, 0.4);
}

/* Base */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-section);
  color: var(--text);
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1 0 auto;
}

/* Navbar */
.navbar-glass {
  background: var(--glass);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid rgba(200, 230, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  transition: color 0.3s ease;
  gap: 0.8rem;
}

.navbar-brand:hover {
  color: var(--accent);
}

.nav-glass {
  color: var(--text);
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-glass:hover {
  background: rgba(219, 234, 254, 0.5);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Sections */
section {
  background-color: var(--bg-section);
  padding: 80px 0;
}

/* Hero Section */
.hero-section {
  padding: 6rem 0;
  background-color: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-image-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.hero-image-container:hover {
  transform: scale(1.03);
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

/* Cards */
.card, .feature-card, .step-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover, .feature-card:hover, .step-card:hover {
  transform: translateY(-5px);
}

.feature-icon, .step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-icon {
  color: var(--accent);
}

.step-icon {
  color: var(--highlight);
}

.feature-title, .step-title, .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-text, .step-text, .card-body small {
  color: var(--muted);
  font-size: 1rem;
}

/* Pricing Icons */
.list-group-item i {
  color: var(--accent);
}

/* Footer */
.footer-section {
  background-color: var(--bg-card);
  border-top: 1px solid rgba(200, 230, 255, 0.3);
  padding: 3rem 0;
}

.footer-section .row > div {
  padding-left: 1rem;
  padding-right: 1rem;
}

.footer-section h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section small {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-section a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--danger);
  text-decoration: underline;
}

.footer-section .text-center {
  border-top: 1px solid rgba(200, 230, 255, 0.3);
  padding-top: 1rem;
  margin-top: 2rem;
}

.footer-section .text-center p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Social Icons */
.social-links a {
  font-size: 1.3rem;
  color: var(--accent);
  margin-right: 0.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--highlight);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent);
  box-shadow: 0 0 12px rgba(20, 184, 166, 0.4);
  transform: translateY(-2px);
}

/* ✨ Gold Buttons */
.btn-gold {
  background-color: var(--gold);
  color: var(--text);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--gold-glow);
}

/* Q Icon */
.q-icon {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
  background-color: #0d6efd;
  padding: 6px 12px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: inline-block;
  line-height: 1;
}

.logo-icon {
  height: 40px;
  width: auto;
  transform: scale(1.8);
  transform-origin: left center;
  margin-left: -6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn-gold {
    font-size: 0.95rem;
    padding: 0.65rem 1.25rem;
  }

  .q-icon {
    font-size: 1.2rem;
    padding: 5px 10px;
  }
}