:root {
  --bg: #0e1620;
  --card: #111b27;
  --accent: #2f8fff;
  --text: #e6edf5;
  --muted: #9fb3c8;

  --accent-btn: #1e40af; /* buttons (WCAG safe) */
  --accent-hover: #1e3a8a; /* hover states */
  --accent-glow: rgba(47, 143, 255, 0.45);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ===== HERO ===== */
.hero {
  padding: 90px 20px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(47, 143, 255, 0.15), transparent 60%),
    var(--bg);
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 25px auto;
  font-size: 17px;
}

.btn {
  background: var(--accent-btn);
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 600;
}

/* ===== BADGES ===== */
.areas {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.badge {
  background: #162233;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid #1f2f45;
}

/* ===== SECTIONS ===== */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.alt {
  background: #0b121a;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 15px rgba(47, 143, 255, 0.25);
  transition: 0.3s;
  color: #fff; /* force text color */
  text-decoration: none; /* remove underline */
}

.card:hover {
  transform: translateY(-6px);
  border-color: #3a7bd5;
  /* slightly lighter neon on hover */
  box-shadow: 0 0 25px rgba(47, 143, 255, 0.35);
}

.card h3 {
  margin-top: 0;
}

/* ===== CTA ===== */
.cta {
  /* background: linear-gradient(120deg, #102037, #0b121a); */
  text-align: center;
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.price {
  font-size: 22px;
  color: #7fb3ff;
  font-weight: 600;
}

.card.testimonial {
  border: 1px solid #ff6f61;
  /* coral neon */
  box-shadow: 0 0 15px rgba(255, 111, 97, 0.25);
  transition: 0.3s;
}

.card.testimonial:hover {
  transform: translateY(-6px);
  border-color: #ff856f;
  /* lighter coral on hover */
  box-shadow: 0 0 25px rgba(255, 111, 97, 0.35);
}

.card.services {
  border-color: #2f8fff;
  box-shadow: 0 0 15px rgba(47, 143, 255, 0.25);
}

.card.why {
  border-color: #ff6f61;
  box-shadow: 0 0 15px rgba(255, 111, 97, 0.25);
}

.section-divider {
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(47, 143, 255, 0.3),
    rgba(58, 123, 213, 0.3)
  );
  box-shadow: 0 0 12px rgba(47, 143, 255, 0.2);
  margin: 50px auto;
  width: 80%;
  border-radius: 2px;
}

.section h2 {
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(47, 143, 255, 0.4),
    rgba(58, 123, 213, 0.4)
  );
  box-shadow: 0 0 8px rgba(47, 143, 255, 0.25);
  margin-top: 8px;
  border-radius: 2px;
}

.alt {
  background: #0b121a;
  border-top: 2px solid rgba(47, 143, 255, 0.3);
  box-shadow: 0 -4px 12px rgba(47, 143, 255, 0.15);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 22, 32, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(47, 143, 255, 0.25);
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--accent);
}

/* ===== LINKS ===== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--text);
}

/* subtle neon underline */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== CTA LINK ===== */
.nav-cta {
  color: white !important;
  background: var(--accent-btn);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  box-shadow: 0 0 15px rgba(47, 143, 255, 0.45);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0b121a;
  border-top: 1px solid rgba(47, 143, 255, 0.25);
  box-shadow: 0 -6px 20px rgba(47, 143, 255, 0.15);
  margin-top: 80px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  margin-top: 0;
  color: var(--text);
}

.footer-col h3 span {
  color: var(--accent);
}

.footer-col p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-muted {
  margin-top: 12px;
  font-size: 13px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: var(--text);
}

/* WhatsApp button */
.footer-btn {
  display: inline-block;
  margin-top: 12px;
  background: #25d366;
  color: #0b121a;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.footer-btn:hover {
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  padding: 16px 20px;
  border-top: 1px solid rgba(47, 143, 255, 0.15);
  font-size: 13px;
  color: var(--muted);
}

/* ===== BLOG ===== */

.blog-grid {
  margin-top: 40px;
}

.blog-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card h3 {
  color: var(--text);
  margin-top: 0;
  font-size: 18px;
  line-height: 1.4;
}

.blog-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card .read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

.blog-card:hover .read-more {
  text-shadow: 0 0 8px rgba(47, 143, 255, 0.6);
}

/* ===== BLOG ARTICLE ===== */

.blog-article {
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

.blog-article h2 {
  margin-top: 40px;
}

.blog-article ul {
  padding-left: 20px;
}

.blog-article li {
  margin-bottom: 10px;
  color: var(--muted);
}

.blog-intro {
  font-size: 17px;
  color: var(--muted);
}

.blog-date {
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
}

.article-cta {
  margin-top: 40px;
}

/* ===============================
   Contact Form – Modern but Clear
================================ */

.contact-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 32px;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Form groups */
.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text); /* dark but readable */
}

/* Inputs */
.form-group input,
.form-group textarea {
  padding: 14px 14px;
  font-size: 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: inherit;
  background-color: #ffffff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Focus state (important for trust) */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2a9d8f;
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.25);
}

/* Placeholder tone */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

/* Submit button */
.contact-card .btn {
  margin-top: 10px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
}

/* Status / error text */
.form-status {
  margin-top: 12px;
  font-size: 14px;
}

.error-message {
  font-size: 13px;
  margin-top: 4px;
  color: #dc2626;
}

.pricing-option {
  margin-bottom: 40px;
}
/* Pricing grid layout */
.plans-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap; /* ensures responsiveness on smaller screens */
  margin-top: 30px;
}

/* Individual plan cards */
.plan,
.package {
  position: relative;
  flex: 1 1 280px;
  background: var(--card);
  padding: 24px;
  border-radius: 12px;
  color: var(--text);
  border: 1px solid var(--accent); /* blue accent border */
  box-shadow: 0 0 12px rgba(47, 143, 255, 0.6); /* blue glow */
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.plan:hover,
.package:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(47, 143, 255, 0.9);
  border-color: var(--accent);
}

/* Highlighted plan */
.plan.popular,
.package.popular {
  border: 2px solid var(--accent);
  box-shadow: 0 0 25px rgba(47, 143, 255, 0.9);
  z-index: 1;
}

/* Badge styling */
.plan .badge,
.package .badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--accent-btn);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  box-shadow:
    0 6px 16px var(--accent-glow),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

/* Plan headings */
.plan h4 {
  margin-bottom: 12px;
  color: var(--accent);
}

/* Plan features list */
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan ul li {
  margin-bottom: 8px;
  color: var(--muted);
}

.packages-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.package h3 {
  margin-bottom: 12px;
  color: var(--accent);
}

.package ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package ul li {
  margin-bottom: 8px;
  color: var(--muted);
}

.content-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.small-muted {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumbs {
  margin: 20px 0;
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  color: var(--muted);
}

.breadcrumbs li a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumbs li::after {
  content: "›";
  margin: 0 6px;
  color: var(--muted);
}

.breadcrumbs li:last-child::after {
  content: "";
}

.breadcrumbs li[aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

/* #breadcrumbs {
  display: none;
} */

body.blog .breadcrumbs {
  display: none;
}

.faq-section h2 {
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-item p {
  margin-top: 0.4rem;
  color: var(--muted);
}

/* .card h2 {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}

.card h2::after {
  content: none; 
} */

.card p {
  color: var(--muted);
}

.card h2 {
  font-size: 1.17em; /* same size for both */
  margin: 0; /* same spacing */
  font-weight: bold; /* consistent weight */
  line-height: 1.4; /* optional, keeps rhythm */
}

.card h2::after {
  content: none !important; /* remove global h2 decoration */
  display: none !important;
}

.blog-meta {
  font-size: 0.9rem;
  color: #777;
  margin-top: 20px;
}

.blog-meta .author {
  font-weight: 600;
  color: #444;
}
