/* =========================
   ROOT VARIABLES (THEME)
========================= */
:root {
  --bg-main: #0b1220;
  --bg-secondary: #111827;
  --glass: rgba(255, 255, 255, 0.05);

  --primary: #2563eb;      /* Blue */
  --accent: #f97316;       /* Orange */

  --text-main: #e5e7eb;
  --text-muted: #9ca3af;

  --border: rgba(255,255,255,0.1);
  --radius: 14px;
}


/* =========================
   GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0b1220, #020617);
  font-family: 'Poppins', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}


/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(11, 18, 32, 0.7);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-weight: 600;
  font-size: 20px;
  color: white;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: 0.3s;
}

.nav a:hover {
  color: white;
}

.btn-pay {
  background: var(--accent);
  padding: 8px 14px;
  border-radius: 8px;
  color: white !important;
}


/* =========================
   HERO SECTIONS
========================= */
.services-hero,
.pay-hero,
.about-section {
  padding: 80px 0;
  text-align: center;
}

.services-hero h1,
.pay-hero h1,
.about-section h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.services-hero p,
.about-section p,
.pay-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: auto;
}


/* =========================
   GLASS CARD
========================= */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.center {
  text-align: center;
}


/* =========================
   SERVICES GRID
========================= */
.services-section {
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--bg-secondary);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.price {
  display: block;
  margin: 15px 0;
  color: var(--accent);
  font-weight: 600;
}

.service-btn {
  display: inline-block;
  padding: 10px 14px;
  background: var(--primary);
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.service-btn:hover {
  background: #1d4ed8;
}


/* =========================
   ABOUT GRID
========================= */
.about-grid {
  padding: 60px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.about-card {
  background: var(--bg-secondary);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.about-card h3 {
  margin-bottom: 10px;
}

.about-card p {
  color: var(--text-muted);
  font-size: 14px;
}


/* =========================
   CTA BUTTONS
========================= */
.cta-button {
  display: inline-block;
  margin-top: 15px;
  background: var(--primary);
  padding: 12px 18px;
  border-radius: 10px;
  transition: 0.3s;
}

.cta-button:hover {
  background: #1d4ed8;
}

.urgent {
  background: var(--accent);
}

.urgent:hover {
  background: #ea580c;
}


/* =========================
   PAYMENT
========================= */
.pay-section {
  padding: 60px 0;
}

.pay-card {
  max-width: 500px;
  margin: auto;
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pay-card input {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #020617;
  color: white;
}

.pay-btn {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.status-box {
  margin-top: 15px;
  font-size: 14px;
}


/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

.footer-note {
  color: var(--text-muted);
  font-size: 14px;
}


/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-hero h1,
  .about-section h1 {
    font-size: 28px;
  }
}/* =========================
   HOME PAGE (SCOPED)
========================= */

/* HERO WRAPPER */
.home .hero {
  position: relative;
  padding: 120px 20px 80px;
  overflow: hidden;
}

/* BACKGROUND GLOW */
.home .hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, #2563eb33, transparent 40%),
              radial-gradient(circle at 80% 70%, #f9731633, transparent 40%);
  z-index: 0;
}

/* CONTENT */
.home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* MAIN TITLE */
.home .hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* TYPING TEXT */
.home .typing-text {
  font-size: 20px;
  color: var(--primary);
  min-height: 28px;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.home .hero p {
  color: var(--text-muted);
  max-width: 650px;
  margin: auto;
}

/* BUTTONS */
.home .hero-actions {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.home .btn-primary {
  background: var(--primary);
  padding: 12px 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.home .btn-primary:hover {
  background: #1d4ed8;
}

.home .btn-secondary {
  background: #25d366;
  padding: 12px 20px;
  border-radius: 10px;
  color: white;
}

.home .btn-secondary:hover {
  opacity: 0.9;
}

/* =========================
   QUICK PAY SECTION
========================= */
.home .quick-pay {
  padding: 60px 20px;
  text-align: center;
}

.home .quick-pay h2 {
  margin-bottom: 25px;
}

/* GRID */
.home .quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

/* CARD */
.home .quick-card {
  display: block;
  padding: 18px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: 0.3s;
  font-size: 14px;
}

.home .quick-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* =========================
   ALIGNMENT FIX
========================= */
.home .container {
  max-width: 1100px;
  margin: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .home .hero h1 {
    font-size: 30px;
  }

  .home .typing-text {
    font-size: 16px;
  }
}
/* =========================
   TESTIMONIALS
========================= */
.testimonials-section {
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section h2 {
  margin-bottom: 30px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.testimonial-card h4 {
  font-size: 13px;
  color: var(--text-main);
  font-weight: 500;
}
/* =========================
   LIGHT THEME VARIABLES
========================= */
body.light {
  --bg-main: #f9fafb;
  --bg-secondary: #ffffff;
  --glass: rgba(0, 0, 0, 0.05);

  --text-main: #111827;
  --text-muted: #4b5563;

  --border: rgba(0,0,0,0.1);
}

/* Apply background */
body {
  background: var(--bg-main);
  transition: background 0.3s ease, color 0.3s ease;
}

/* =========================
   THEME TOGGLE BUTTON
========================= */
.theme-toggle {
  margin-left: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-main);
  transition: 0.3s;
}

.theme-toggle:hover {
  transform: scale(1.05);
}
/* =========================
   CONTACT GRID (NEW)
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: 0.3s;
}

.contact-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.contact-item .icon {
  font-size: 26px;
  background: rgba(37, 99, 235, 0.15);
  padding: 10px;
  border-radius: 10px;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-main);
}

.contact-item p {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
/* =========================
   CONTACT PAGE IMPROVEMENTS
========================= */

.contact-section {
  padding: 80px 20px 40px;
}

.page-content {
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    transparent
  );
  opacity: 0;
  transition: 0.3s;
}

.contact-item:hover::before {
  opacity: 1;
}

.contact-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.contact-item .icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.15);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 13px;
}

.contact-note {
  margin-top: 25px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {

  .contact-section {
    padding-top: 60px;
  }

  .section-title {
    font-size: 24px;
  }

  .contact-item {
    padding: 16px;
  }

}
/* =========================
   AI FLOAT BUTTON (LIKE WHATSAPP)
========================= */
.ai-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: var(--primary);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 9999;
  transition: 0.3s;
}

.ai-float:hover {
  transform: scale(1.1);
}

/* =========================
   AI CHAT BOX
========================= */
.ai-box {
  position: fixed;
  bottom: 160px;
  right: 20px;
  width: 320px;
  height: 420px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Hidden state */
.hidden {
  display: none;
}

/* HEADER */
.ai-header {
  background: var(--primary);
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* MESSAGES */
.ai-messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 13px;
}

/* INPUT */
.ai-input {
  display: flex;
  border-top: 1px solid var(--border);
}

.ai-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: #020617;
  color: white;
}

.ai-input button {
  background: var(--accent);
  border: none;
  padding: 10px;
  color: white;
  cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
  .ai-box {
    width: 90%;
    right: 5%;
    bottom: 120px;
  }
}
/* =========================
   FILTER BAR (FIVERR STYLE)
========================= */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}

.filter-btn {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-main);
  cursor: pointer;
  transition: 0.3s;
  font-size: 13px;
}

.filter-btn:hover {
  border-color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
}

/* =========================
   SAAS SERVICE CARD
========================= */
.service-card {
  position: relative;
  padding: 25px;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* TAG */
.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* LIST */
.service-card ul {
  margin: 10px 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

/* PRICING */
.pricing {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

.pricing span {
  color: var(--accent);
}

/* BUTTON IMPROVEMENT */
.service-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--primary);
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.service-btn:hover {
  background: #1d4ed8;
}
/* ================= FILTER BAR ================= */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-main);
  cursor: pointer;
  transition: 0.3s;
  font-size: 13px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
}

/* ================= SAAS CARD UPGRADE ================= */
.service-card {
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease-in-out;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* TAGS */
.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent);
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 12px;
}

.tag.premium {
  background: #8b5cf6;
}

/* PRICING TIERS */
.tiers {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 10px 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}