/* =========================
   GLOBAL RESET & VARIABLES
========================= */
:root {
  --primary: #f3d706;
  --primary-dark: #1e40af;
  --bg-dark: #000000;
  --bg-light: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --border: #e5e7eb;
  --success: #16a34a;
  --shadow: rgba(37, 99, 235, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}
/* =========================
   BODY SPACING FIX
========================= */

/* =========================
   TOPBAR
========================= */

.topbar {
  background: var(--bg-dark);

  color: #d1d5db;

  font-size: 14px;

  padding: 6px 0;

  z-index: 1050;
}

/* =========================
   MAIN NAVBAR
========================= */

.main-navbar {
  background: var(--bg-dark);

  padding: 12px 0;

  top: 36px;

  z-index: 1040;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* =========================
   CENTER MENU SPACING FIX
========================= */

.nav-center {
  gap: 18px;
}

/* REMOVE EXTRA SPACE */
.navbar-brand {
  color: var(--primary);
}

.navbar-nav .nav-link {
  padding: 6px 10px;
  color: var(--primary);

  font-size: 15px;
}
.topbar-right a {
  color: var(--primary);
  padding: 5px 8px;
  border-radius: 50%;
}

/* =========================
   CONTAINER WIDTH CONTROL
========================= */

.main-navbar .container-fluid {
  max-width: 1350px;
}

/* =========================
   SCROLL SHADOW EFFECT
========================= */

.main-navbar.scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* ================================
   BUTTON STYLE
================================ */

.btn-gold {
  background: linear-gradient(135deg, #facc15, #eab308);

  color: #000;

  font-weight: 600;

  padding: 9px 20px;

  border-radius: 8px;

  border: none;

  transition: 0.3s;
}

.btn-gold:hover {
  transform: translateY(-1px);

  box-shadow: 0 6px 14px rgba(250, 204, 21, 0.25);
}

/* CART BUTTON */

.btn-outline-light {
  border-radius: 8px;

  padding: 8px 18px;
}

/* ================================
   SCROLL EFFECT
================================ */

.main-navbar.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

/* ================================
   MOBILE
================================ */

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}
/* =========================
   BUTTONS (SAAS STYLE)
========================= */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  box-shadow: 0 10px 30px var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
/* =========================================
   HERO SECTION PROFESSIONAL STYLE
========================================= */

.hero {
  background:
    radial-gradient(
      circle at center,
      rgba(250, 204, 21, 0.15),
      transparent 60%
    ),
    linear-gradient(135deg, #000000, #000000, #000000);

  padding: 140px 0;

  color: white;
}

/* TITLE */

.hero-title {
  font-size: 56px;

  font-weight: 700;

  line-height: 1.2;

  letter-spacing: -1px;

  margin-bottom: 20px;
}

/* SUBTITLE */

.hero-subtitle {
  font-size: 18px;

  color: #cbd5f5;

  max-width: 720px;

  margin: auto;

  margin-bottom: 16px;
}

/* TRUST LINE */

.hero-trust {
  font-size: 14px;

  color: #94a3b8;

  margin-bottom: 32px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;

  justify-content: center;

  gap: 16px;

  margin-bottom: 30px;
}

/* PRIMARY BUTTON */

.hero-btn-primary {
  background: linear-gradient(135deg, #facc15, #f59e0b);

  border: none;

  padding: 14px 28px;

  font-weight: 600;

  border-radius: 8px;

  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);

  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(250, 204, 21, 0.4);
}

/* SECOND BUTTON */

.hero-btn-secondary {
  padding: 14px 28px;

  border-radius: 8px;
}

/* HIGHLIGHTS */

.hero-highlights {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 24px;

  font-size: 14px;

  color: #cbd5f5;
}

/* =========================================
   STATS SECTION
========================================= */

.stats-section {
  background: #f8fafc;

  padding: 70px 0;
}

.stat-card {
  background: white;

  padding: 25px;

  border-radius: 12px;

  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  font-size: 32px;

  color: #facc15;

  margin-bottom: 10px;
}

.stat-number {
  font-size: 32px;

  font-weight: 700;

  color: #0f172a;
}

.stat-label {
  color: #64748b;
}

/* =========================================
   FEATURES
========================================= */

.features-section {
  padding: 80px 0;

  background: #ffffff;
}

.section-title {
  font-size: 38px;

  font-weight: 700;

  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 720px;

  margin: auto;

  color: #64748b;

  margin-bottom: 50px;
}

.feature-card {
  background: white;

  padding: 35px;

  border-radius: 14px;

  transition: all 0.3s ease;

  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 36px;

  color: #facc15;

  margin-bottom: 15px;
}

/* =========================================
   PRICING SECTION
========================================= */

.pricing-section {
  background:
    radial-gradient(
      circle at center,
      rgba(250, 204, 21, 0.15),
      transparent 60%
    ),
    linear-gradient(135deg, #000000, #000000, #000000);

  padding: 90px 0;

  color: white;
}

.pricing-title {
  font-size: 42px;

  font-weight: 700;

  margin-bottom: 12px;
}

.pricing-subtitle {
  max-width: 700px;

  margin: auto;

  color: #94a3b8;

  font-size: 17px;
}

.price-card {
  background: white;

  color: black;

  padding: 40px;

  border-radius: 16px;

  transition: all 0.3s ease;

  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.popular-plan {
  border: 2px solid #facc15;

  transform: scale(1.05);
}

.popular-badge {
  position: absolute;

  top: -12px;

  left: 50%;

  transform: translateX(-50%);

  background: #facc15;

  color: black;

  padding: 6px 14px;

  font-size: 12px;

  font-weight: 600;

  border-radius: 20px;
}

.plan-name {
  font-size: 26px;

  font-weight: 700;

  margin-bottom: 12px;
}

.plan-price {
  font-size: 38px;

  font-weight: 700;

  margin-bottom: 24px;
}

.plan-price span {
  font-size: 16px;

  color: #64748b;
}

.plan-features {
  list-style: none;

  padding: 0;

  margin-bottom: 30px;

  text-align: left;
}

.plan-features li {
  margin-bottom: 12px;

  font-size: 15px;

  position: relative;

  padding-left: 22px;
}

.plan-features li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: #facc15;

  font-weight: bold;
}

.pricing-btn {
  width: 100%;

  padding: 14px;

  font-size: 16px;

  font-weight: 600;

  border-radius: 8px;
}
/* =========================
   ADDONS & USE CASES
========================= */
.addon-grid,
.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.addon-grid div,
.use-grid div {
  background: #ffffff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-align: center;
  font-weight: 600;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form {
  max-width: 520px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 5px var(--primary);
}

/* =========================
   FOOTER (ENTERPRISE)
========================= */
/* =========================
   Footer Styling
========================= */
.footer {
  background-color: #006f74;
  color: #fff;
  padding: 30px 0;
}

.footer h4 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer ul {
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer ul li a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer .bi {
  transition: all 0.3s;
}

.footer .bi:hover {
  color: var(--primary);
}

/* Social media icons and links */
.footer .d-flex a {
  font-size: 24px;
  color: white;
}

.footer .d-flex a:hover {
  color: var(--primary);
}

/* Contact Info and Help Desk */
.footer .bi-phone,
.footer .bi-envelope {
  margin-right: 10px;
}

/* Copyright Text */
.footer .text-center p {
  font-size: 14px;
  color: #ffffff;
  margin-top: 30px;
}

/* Ensure responsiveness */
@media (max-width: 768px) {
  .footer .row {
    flex-direction: column;
  }

  .footer .col-md-3 {
    margin-bottom: 30px;
  }

  .footer .col-md-6 {
    margin-bottom: 30px;
  }
}

/* =========================
   CART STYLING
========================= */
#cart {
  display: block;
}

#cartTotal {
  margin-top: 20px;
}

.card {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn {
  margin-top: 10px;
}

.footer {
  background: #020617;
  color: #cbd5f5;
  text-align: center;
  padding: 35px 20px;
  font-size: 14px;
}
/* =========================
   CART STYLING
========================= */
#cart {
  display: block;
}

#cartTotal {
  margin-top: 20px;
}

.card {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn {
  margin-top: 10px;
}

.footer {
  background: #020617;
  color: #cbd5f5;
  text-align: center;
  padding: 35px 20px;
  font-size: 14px;
}
/* =========================
   CART STYLING
========================= */
#cart {
  display: block;
}

#cartTotal {
  margin-top: 20px;
}

.card {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn {
  margin-top: 10px;
}

.footer {
  background: #020617;
  color: #cbd5f5;
  text-align: center;
  padding: 35px 20px;
  font-size: 14px;
}

/* ======================
   FINAL CTA
====================== */
.final-cta {
  background: var(--bg-light);
  color: #fff;
  padding: 80px 20px;
}

.final-cta h2 {
  font-size: 34px;
  color: var(--bg-dark);
  font-weight: 800;
}

.final-cta p {
  max-width: 650px;
  margin: 20px auto 35px;
  font-size: 17px;
  color: #191b20;
}

/* ======================
   FOOTER
====================== */
.site-footer {
  background: #020617;
  color: #cbd5f5;
  padding: 70px 20px;
}

.site-footer h5,
.site-footer h6 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 15px;
  color: #94a3b8;
  max-width: 420px;
}

.footer-small {
  font-size: 13px;
  margin-top: 25px;
  color: #64748b;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: var(--bg-light);
}

.footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #2563eb;
}

.footer-contact {
  font-size: 14px;
  color: #cbd5f5;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  font-size: 20px;
  color: #cbd5f5;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #2563eb;
}

/* ======================
   MOBILE
====================== */
@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 26px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

#checkoutBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* =============================
   CART PAGE – FINAL PRO DESIGN
============================= */

body {
  background: #f8fafc;
}

.panel-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.cart-info h5 {
  font-size: 18px;
  font-weight: 600;
}

.price-note {
  font-size: 14px;
  color: #64748b;
}

.cart-total {
  text-align: right;
}

.cart-total strong {
  font-size: 18px;
  font-weight: 700;
}

/* BILLING */
.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.summary-line.total {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
}

.cart-footer {
  background: #020617;
  color: #cbd5f5;
  text-align: center;
  padding: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .cart-total {
    text-align: center;
  }
}

/* ===============================
   CART SECTION – PRO SAAS DESIGN
=============================== */

/* TITLES */
.panel-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0f172a;
}

/* LEFT */
.cart-info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.price-note {
  font-size: 14px;
  color: #64748b;
}

/* RIGHT – PRICE */
.cart-total {
  text-align: right;
}

.cart-total strong {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.cart-total .btn {
  margin-top: 6px;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 8px;
}

/* ===============================
   EMPTY CART
=============================== */

.empty-cart {
  text-align: center;
  padding: 70px 20px;
  color: #64748b;
}

.empty-cart .emoji {
  font-size: 48px;
  margin-bottom: 12px;
}

/* ===============================
   BILLING SUMMARY
=============================== */

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 15px;
}

.summary-line.total {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 768px) {
  .cart-total {
    text-align: center;
  }
}
.cart-total .btn-danger {
  border: 1px solid #fecaca;
  color: #ef4444;
  background: transparent;
}

.cart-total .btn-danger:hover {
  background: #fee2e2;
}

.user-note {
  font-size: 13px;
  color: #64748b;
}

.user-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #dbeafe;
  background: #fff;
  color: #2563eb;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-btn:hover {
  background: #2563eb;
  color: #fff;
}

#userCount {
  font-size: 15px;
  font-weight: 600;
  width: 22px;
  text-align: center;
}

.user-note {
  font-size: 14px;
  color: #64748b;
}

.user-select {
  width: 140px;
  border-radius: 10px;
}

/* ===============================
   FOOTER
================================ */

.site-footer {
  background: var(--bg-dark);

  color: #cbd5e1;

  padding: 70px 0 0;
}

.footer-logo {
  font-size: 28px;

  font-weight: 700;

  color: white;

  margin-bottom: 16px;
}

.footer-text {
  font-size: 16px;

  line-height: 1.7;

  max-width: 380px;
}

.footer-title {
  font-size: 18px;

  font-weight: 600;

  color: white;

  margin-bottom: 20px;

  letter-spacing: 1px;
}

.footer-contact {
  list-style: none;

  padding: 0;
}

.footer-contact li {
  margin-bottom: 12px;

  font-size: 15px;
}

.footer-links {
  list-style: none;

  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #60a5fa;

  text-decoration: none;

  font-size: 15px;

  transition: 0.3s;
}

.footer-links a:hover {
  color: white;

  padding-left: 6px;
}

/* ===============================
   COPYRIGHT BAR
================================ */

.footer-bottom {
  background: var(--bg-dark);
  border-top: 1px solid #fff;
  text-align: center;

  padding: 16px;

  margin-top: 50px;

  font-size: 14px;
}

.brand {
  color: var(--primary);

  font-weight: 600;
}

.designer {
  color: #facc15;

  font-weight: 600;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {
  .footer-text {
    max-width: 100%;
  }

  .footer-about {
    margin-bottom: 30px;
  }
}

/* ===============================
        FAQ SECTION
================================ */

.faq-section {
  background: #f8fafc;
}

.faq-title {
  font-size: 36px;

  font-weight: 700;
}

.faq-subtitle {
  color: #64748b;

  font-size: 16px;
}

.faq-accordion .accordion-item {
  border: none;

  margin-bottom: 15px;

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;

  font-size: 16px;

  padding: 18px;
}

.accordion-button:not(.collapsed) {
  background: var(--bg-dark);

  color: white;
}

.accordion-body {
  font-size: 15px;

  color: #475569;

  line-height: 1.6;
}

.btn-outline-primary {
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #000;
  border: 1px solid var(--primary);
}
