:root {
  --brand: #35c8be;
  --brand-dark: #1f8d86;
  --brand-soft: #f0fdfc;
  --peach-soft: #fff7ed;
  --accent: #ff9628;
  --accent-dark: #f18b21;
  --ink: #111822;
  /* Darker ink for better contrast */
  --muted: #64748b;
  --line: #e2e8f0;
  --panel: #ffffff;
  --page: #f8fafc;
  --footer: #111822;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

.bg-mint-soft {
  background-color: var(--brand-soft) !important;
}

.bg-peach-soft {
  background-color: var(--peach-soft) !important;
}

.text-brand {
  color: var(--brand) !important;
}

.text-accent {
  color: var(--accent) !important;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

.section-space {
  padding: 100px 0;
}

/* Metadata Tags */
.section-meta {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--brand);
}

.section-copy {
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Navbar */
.site-navbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-brand img {
  height: 48px;
}

.nav-link {
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1.25rem !important;
  border-radius: 100px;
  transition: 0.2s;
}

.nav-link.active,
.nav-link:hover {
  background: var(--brand-soft);
  color: var(--brand) !important;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(255, 150, 40, 0.25);
}

/* Hero Style - Reverted to High Fidelity Dark Gradient */
.hero, .cta-bg-dark {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 25%, rgba(255, 150, 40, 0.18), transparent 22%),
    radial-gradient(circle at 20% 20%, rgba(53, 200, 190, 0.22), transparent 18%),
    linear-gradient(135deg, #121822 0%, #202c3d 45%, #121822 100%);
}

.cta-bg-dark {
  padding: 80px 0 !important;
}


.hero-star-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(53, 200, 190, 0.4);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--brand);
}

.hero-copy {
  font-size: 1.25rem;
  opacity: 0.85;
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Service Cards - White on Gray Style */
.service-card {
  background: #fff;
  padding: 28px; /* Reduced from 35px */
  border-radius: 20px;
  border: 1.5px solid var(--line);
  height: 100%;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }

.icon-box-box {
  width: 48px; height: 48px; /* Reduced from 54px */
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.2rem;
}

.service-card h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 15px; }
.service-price { font-weight: 800; font-size: 1rem; color: var(--ink); display: block; margin-top: auto; }

/* Pricing Cards - The "Neat" Look */
.price-card {
  background: #fff;
  padding: 35px 30px; /* Reduced for compactness */
  border-radius: 24px;
  border: 1.5px solid var(--line);
  height: 100%;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  border: 2.5px solid var(--brand);
  position: relative;
  background: #fff;
}

.price-card.bg-brand {
  background-color: var(--brand);
  color: #fff !important;
}

.price-card.bg-brand h3, 
.price-card.bg-brand p, 
.price-card.bg-brand .price-value,
.price-card.bg-brand .price-value span {
  color: #fff !important;
}

.popular-tag {
  position: absolute;
  top: -12px; left: 30px;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-card h1, .price-card h2, .price-card h3, .price-card h4 { 
  font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; 
}

.price-value { font-size: 2.6rem; font-weight: 800; color: var(--ink); margin-bottom: 5px; }
.price-value span { font-size: 1.1rem; color: var(--muted); vertical-align: middle; }
.price-subtitle { color: var(--muted); font-size: 0.85rem; margin-bottom: 25px; }

.price-list { list-style: none; padding: 0; margin-bottom: 30px; }
.price-list li {
  display: flex; align-items: start; gap: 10px; 
  margin-bottom: 10px; font-size: 0.88rem; color: var(--ink);
  line-height: 1.4;
}
.check-circle {
  width: 16px; height: 16px; flex-shrink: 0;
  background: var(--brand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.6rem; margin-top: 2px;
}

/* Avatar Bubbles */
.avatar-bubble {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 0.9rem;
}
.avatar-mint { background-color: var(--brand); }
.avatar-orange { background-color: var(--accent); }
.avatar-purple { background-color: #8b5cf6; }
.avatar-peach { background-color: #fb923c; }

.btn-price {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.2s;
}

.btn-price-outline {
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.btn-price-solid {
  background: var(--brand);
  color: #fff;
  border: none;
}

.btn-price-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 10px 20px rgba(255, 150, 40, 0.3);
}

/* Stats Band */
.stats-band {
  background: var(--brand);
  padding: 50px 0;
  color: #fff;
}

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-item p {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin: 0;
}

/* Testimonials */
.testi-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  border: 1.5px solid var(--line);
  height: 100%;
}

/* Icons */
.link-more {
  color: var(--brand);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Footer */
.footer {
  background: var(--ink);
  padding: 80px 0 40px;
  color: #fff;
}

.footer-logo {
  height: 48px;
  margin-bottom: 30px;
}

.footer h5 {
  font-weight: 800;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 15px;
  font-size: 0.95rem;
  transition: 0.2s;
}

.footer-links a:hover {
  color: var(--brand);
}

@media (max-width: 991px) {
  .price-card.popular {
    margin: 30px 0;
    transform: none;
  }
}

/* Form Feedback Styles */
#formFeedback {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-control:focus, .form-select:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 4px var(--brand-soft) !important;
  background-color: #fff !important;
}

.btn-price-solid:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}