/* =========================
   BRAND COLORS
========================= */

:root {
  --purple: #5b2a86;
  --purple-dark: #3d1b5f;
  --gold: #d4af37;
  --gold-dark: #b8962e;
  --bg-light: #f9f9fb;
}

/* =========================
   HEADER & NAV
========================= */

.header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 48px;
}

.nav ul {
  display: flex;
  gap: 22px;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.nav a:hover,
.nav a.active {
  color: var(--purple);
}

/* =========================
   HERO SECTION
========================= */

.hero {
  background: linear-gradient(135deg, #f4f1fb, #ffffff);
  padding: 1px 20px 120px; /* reduced top padding */
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* =========================
   HERO LOGO
========================= */

.hero-logo {
  width: 350px;
  max-width: 85%;
  margin: 0 auto 8px; /* 🔽 reduced bottom margin */
  display: block;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .hero-logo {
    width: 85px;
    margin-bottom: 18px;
  }
}

/* =========================
   HERO INTRO TEXT
========================= */

.hero-intro {
  max-width: 680px;
  margin: 0 auto 16px; /* 🔽 tight spacing */
  font-size: 1.05rem;
  color: #555;
  font-weight: 500;
}


/* =========================
   OVERVIEW / SECTIONS
========================= */

.overview {
  background: var(--bg-light);
  padding: 80px 20px;
  text-align: center;
}

.overview p {
  max-width: 800px;
  margin: 0 auto;
}

/* =========================
   SERVICES LIST
========================= */

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.services-list li {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* =========================
   PRICING
========================= */

.pricing-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.pricing-card h3 {
  margin-bottom: 6px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple);
}

.note {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #666;
}

/* =========================
   PROJECTS
========================= */

.page ul {
  margin-top: 10px;
}

.page ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* =========================
   CONTACT
========================= */

.page p strong {
  color: var(--purple);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .nav ul {
    gap: 14px;
  }
}
/* =========================
   PROJECTS GRID
========================= */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

.project-card img {
  height: 48px;
  margin-bottom: 14px;
}

.project-card h3 {
  margin-bottom: 8px;
  color: var(--purple);
}

.project-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

/* =========================
   STATUS BADGES
========================= */

.status {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}

.status.live {
  background: #e6f8ef;
  color: #1e8e5a;
}

.status.ongoing {
  background: #fff4e5;
  color: #c77700;
}

.status.coming {
  background: #f0f0f5;
  color: #6b6b80;
}
/* =========================
   FLOATING NAV (SVG ICONS)
========================= */

.floating-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.floating-nav a {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

/* SVG ICON */
.floating-nav svg {
  width: 20px;
  height: 20px;
  fill: #5b2ea6;
  transition: fill 0.25s ease;
}

/* HOVER EFFECT */
.floating-nav a:hover {
  background: linear-gradient(135deg, #5b2ea6, #d4af37);
  transform: translateX(-4px);
}

.floating-nav a:hover svg {
  fill: #ffffff;
}

/* MOBILE: HIDE */
@media (max-width: 768px) {
  .floating-nav {
    display: none;
  }
}
/* =========================
   MOBILE BOTTOM NAV
========================= */

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #ffffff;
  display: none;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #eee;
  z-index: 1000;
}

/* NAV LINKS */
.mobile-bottom-nav a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #666;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ICONS */
.mobile-bottom-nav svg {
  width: 20px;
  height: 20px;
  fill: #5b2ea6;
  transition: fill 0.2s ease;
}

/* ACTIVE / HOVER */
.mobile-bottom-nav a:hover svg {
  fill: #d4af37;
}

.mobile-bottom-nav a span {
  font-weight: 500;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }

  /* Hide floating nav on mobile */
  .floating-nav {
    display: none;
  }

  /* Prevent content from hiding behind nav */
  body {
    padding-bottom: 72px;
  }
}
/* =========================
   PRICING PAGE
========================= */

.pricing-page {
  text-align: center;
}

.pricing-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

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

/* CARD */
.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

/* FEATURED */
.pricing-card.featured {
  border: 2px solid #d4af37;
}

/* TEXT */
.pricing-card h3 {
  color: #5b2ea6;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin: 14px 0;
}

.desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
}

/* CTA */
.cta {
  font-weight: 600;
  color: #5b2ea6;
  display: inline-block;
  transition: color 0.25s ease;
}

.pricing-card:hover .cta {
  color: #d4af37;
}

/* NOTE */
.pricing-note {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #666;
}
/* Maintenance Section */
.maintenance-section {
  margin-top: 4rem;
  text-align: center;
}

.maintenance-section h2 {
  font-size: 2rem;
  color: #4b1f7a;
  margin-bottom: 0.5rem;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #555;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.maintenance-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
}

.maintenance-card h3 {
  color: #4b1f7a;
  margin-bottom: 0.5rem;
}

.maintenance-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.maintenance-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.maintenance-card ul li {
  margin-bottom: 0.5rem;
  color: #444;
}

.maintenance-card .btn.whatsapp {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}

.maintenance-card .btn.whatsapp:hover {
  opacity: 0.9;
}

/* Featured Plan */
.maintenance-card.featured {
  border: 2px solid #d4af37;
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #d4af37;
  color: #000;
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-weight: 700;
}
/* SERVICES SECTION */
.services-section {
  padding: 4rem 1rem;
  text-align: center;
}

.services-section h1 {
  font-size: 2.4rem;
  color: #4b1f7a;
  margin-bottom: 0.5rem;
}

.services-section .section-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  color: #555;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
}

.service-card h3 {
  color: #4b1f7a;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: #444;
  margin-bottom: 1rem;
}

.service-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.service-card ul li {
  margin-bottom: 0.4rem;
  color: #555;
}

/* LINK */
.service-link {
  font-weight: 600;
  color: #4b1f7a;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

/* FEATURED */
.service-card.featured {
  border: 2px solid #d4af37;
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #d4af37;
  color: #000;
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-weight: 700;
}
/* =========================
   HOME HERO TIGHTENING
========================= */

.hero {
  padding-bottom: 3rem; /* reduce big gap */
}

.hero p {
  margin-bottom: 12px;
}

.hero .primary-cta {
  margin-top: 18px;
  margin-bottom: 28px;
}
/* =========================
   WHAT WE DO SECTION
========================= */

.what-we-do {
  padding-top: 1rem; /* was visually too far */
}

.what-we-do h2 {
  margin-top: 0;
}
/* =========================
   FORCE HERO → NEXT SECTION TIGHT
========================= */

/* Reduce hero bottom padding */
.hero {
  padding-bottom: 1.5rem !important;
}

/* Remove extra space below CTA */
.hero .primary-cta {
  margin-bottom: 1rem !important;
}

/* Remove paragraph bottom stacking */
.hero p:last-of-type {
  margin-bottom: 0.5rem;
}

/* Pull next section UP */
.what-we-do {
  padding-top: 0.5rem !important;
  margin-top: 0 !important;
}

/* Kill default h2 top margin if any */
.what-we-do h2 {
  margin-top: 0 !important;
}
/* =========================
   MOBILE SPACING AUDIT
========================= */

@media (max-width: 768px) {

  /* HERO SECTION */
  .hero {
    padding-top: 2.5rem !important;
    padding-bottom: 1.2rem !important;
  }

  /* LOGO */
  .hero img {
    margin-bottom: 0.8rem;
    max-width: 260px; /* keeps it visible but not dominant */
  }

  /* HERO TEXT */
  .hero p {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* CTA BUTTON */
  .hero .primary-cta {
    margin-top: 0.8rem !important;
    margin-bottom: 1rem !important;
    padding: 12px 22px;
    font-size: 0.95rem;
  }

  /* WHAT WE DO SECTION */
  .what-we-do {
    padding-top: 1.2rem !important;
  }

  .what-we-do h2 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }

  .what-we-do p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

}
