/* =========================
   GLOBAL RESET & VARIABLES
========================= */
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --bg-dark: #020617;
  --bg-light: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --border: #e5e7eb;
  --success: #16a34a;
  --shadow: rgba(37, 99, 235, .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;
}

/* =========================
   NAVBAR (TRUSTED LOOK)
========================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.navbar a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.navbar a:hover {
  color: #ffffff;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--primary);
}

/* =========================
   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, .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 (ENTERPRISE FEEL)
========================= */
.hero {
  padding: 140px 20px 120px;
  text-align: center;
  background: radial-gradient(circle at top, #1e293b 0%, #020617 70%);
  color: #ffffff;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 48px;
  max-width: 900px;
  margin: auto;
  line-height: 1.2;
  font-weight: 800;
}

.hero p {
  max-width: 750px;
  margin: 20px auto 40px;
  color: #cbd5f5;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
  /* =========================
   STATS BAR IMPROVEMENT
========================= */
.stats {
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 40px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  gap: 40px;
  justify-items: center;
}

.stat-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  transition: transform 1s ease-in-out;
}

.stat-description {
  font-size: 14px;
  color: var(--text-light);
}

.stats .stat-card:hover .stat-number {
  transform: scale(1.1);
}


/* =========================
   SECTIONS
========================= */
.section {
  padding: 100px 20px; 
  margin: auto;
}

.section.dark {
  background: var(--bg-dark);
  color: #ffffff;
}

.section.light {
  background: #ffffff;
}

.section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  text-align: center;
}

/* =========================
   FEATURE CARDS (PREMIUM)
========================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
 /* =========================
   FEATURE CARDS IMPROVEMENT
========================= */
.feature-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 35px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  color: var(--primary);
  transition: color 0.3s ease;
}

.feature-card:hover i {
  color: var(--primary-dark);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 15px;
  margin-top: 10px;
}

/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */
@media (max-width: 767px) {
  .feature-card {
    padding: 25px;
  }
  
  .feature-card h3 {
    font-size: 18px;
  }
  
  .feature-card p {
    font-size: 14px;
  }
}


/* =========================
   PRICING CARDS (TRUST BUILDER)
========================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.price-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 35px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

.section.dark .price-card {
  background: #020617;
  border-color: rgba(255, 255, 255, 0.08);
}

.price-card h3 {
  font-size: 22px;
  font-weight: 700;
}

.price {
  font-size: 34px;
  font-weight: 800;
  margin: 15px 0 25px;
  color: var(--primary);
}

.price-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.price-card li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-light);
}

.section.dark .price-card li {
  color: #cbd5f5;
}

.price-card.popular {
  border: 2px solid var(--primary);
}

.badge {
  position: absolute;
  top: -14px;
  right: 25px;
  background: var(--primary);
  color: #ffffff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}

/* =========================
   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;
}

#cartItemsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

#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;
}

#cartItemsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

#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;
}

#cartItemsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

#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: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 80px 20px;
}

.final-cta h2 {
  font-size: 34px;
  font-weight: 800;
}

.final-cta p {
  max-width: 650px;
  margin: 20px auto 35px;
  font-size: 17px;
  color: #e0e7ff;
}

/* ======================
   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 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;
  }
}
/* CART PAGE PREMIUM STYLES */
#cartItemsContainer .card {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

#cartItemsContainer .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

#cartItemsContainer h5 {
  font-weight: 600;
}

#checkoutBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* =============================
   CART PAGE – FINAL PRO DESIGN
============================= */

body {
  background: #f8fafc;
}

/* HERO */
.cart-hero {
  padding: 90px 20px;
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #fff;
}

.cart-hero h1 {
  font-size: 42px;
  font-weight: 800;
}

.cart-hero p {
  margin-top: 10px;
  color: #cbd5f5;
}

/* WRAPPER */
.cart-wrapper {
  padding: 90px 0 120px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}
 

/* ================= CART FINAL CLEAN ================= */

.cart-hero {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #1e293b, #020617);
  color: #fff;
}

.cart-hero h1 {
  font-size: 40px;
  font-weight: 800;
}

.cart-wrapper {
  padding: 80px 0 120px;
  background: #f8fafc;
}

.cart-panel,
.billing-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.panel-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* CART ITEM */
.cart-item {
  background: #fff;
  border-radius: 18px;
  padding: 28px 32px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.cart-item-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
}

.cart-info h5 {
  font-size: 18px;
  font-weight: 600;
}

.price-note {
  font-size: 14px;
  color: #64748b;
}

.cart-qty {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cart-qty button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.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;
}

.checkout-btn {
  padding: 16px;
  font-size: 18px;
  border-radius: 14px;
}

.trust-box {
  margin-top: 25px;
  font-size: 14px;
  color: #64748b;
  border-top: 1px dashed #e5e7eb;
  padding-top: 15px;
}

.cart-footer {
  background: #020617;
  color: #cbd5f5;
  text-align: center;
  padding: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
  .cart-item-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }

  .cart-total {
    text-align: center;
  }
}

/* ===============================
   CART SECTION – PRO SAAS DESIGN
=============================== */

/* WRAPPER */
.cart-wrapper {
  padding: 80px 0 120px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* PANELS */
.cart-panel,
.billing-panel {
  background: #ffffff;
  border-radius: 26px;
  padding: 40px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

/* TITLES */
.panel-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0f172a;
}

/* ===============================
   CART ITEM
=============================== */

#cartItemsContainer {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 30px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.cart-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

/* GRID */
.cart-item-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
  gap: 20px;
}

/* LEFT */
.cart-info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.price-note {
  font-size: 14px;
  color: #64748b;
}

/* CENTER – QTY */
.cart-qty {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.cart-qty button {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  background: #ffffff;
  font-size: 18px;
  font-weight: 600;
  color: #2563eb;
  transition: all 0.25s ease;
}

.cart-qty button:hover {
  background: #2563eb;
  color: #ffffff;
}

.cart-qty span {
  font-size: 16px;
  font-weight: 600;
  width: 30px;
  text-align: center;
}

/* 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;
}

/* CHECKOUT */
.checkout-btn {
  padding: 16px;
  font-size: 18px;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.35);
}

/* TRUST */
.trust-box {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed #e5e7eb;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 768px) {
  .cart-panel,
  .billing-panel {
    padding: 28px;
  }

  .cart-item-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .cart-total {
    text-align: center;
  }
}
.cart-total .btn-danger {
  border: 1px solid #fecaca;
  color: #ef4444;
  background: transparent;
}

.cart-total .btn-danger:hover {
  background: #fee2e2;
}
.cart-qty button {
  border: 1px solid #dbeafe;
  color: #2563eb;
}

.cart-qty button:hover {
  background: #2563eb;
  color: #fff;
}
#cartItemsContainer {
  gap: 22px;
}
/* ADD USERS */
.add-users-box {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.add-users-left h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.user-note {
  font-size: 13px;
  color: #64748b;
}

.add-users-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.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;
}

/* ===== BILLING TOGGLE ===== */
.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.toggle-label {
  font-weight: 600;
  color: #64748b;
}

.toggle-label.active {
  color: #2563eb;
}

.save-tag {
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 6px;
}

/* SWITCH */
.switch {
  position: relative;
  width: 52px;
  height: 26px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  background: #cbd5f5;
  border-radius: 999px;
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  top: 3px;
  left: 4px;
  border-radius: 50%;
  transition: 0.3s;
}

.switch input:checked + .slider {
  background: #2563eb;
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
}

/* USERS BOX */
.add-users-box {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-note {
  font-size: 14px;
  color: #64748b;
}

.user-select {
  width: 140px;
  border-radius: 10px;
}

/* CART PANELS */
.cart-panel,
.billing-panel {
  background: #fff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.1);
}

.cart-item {
  padding: 25px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  margin-bottom: 18px;
}

.cart-item-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 0.7fr;
  align-items: center;
}

.checkout-btn {
  padding: 16px;
  font-size: 18px;
  border-radius: 14px;
}

.trust-box {
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
}
.yearly-breakdown{
  display:none;
  margin-top:8px;
  font-size:14px;
  color:#6b7280;
}

.yearly-breakdown .calc-text{
  margin-bottom:2px;
}

.yearly-breakdown .save-text{
  color:#16a34a;
  font-weight:600;
}
