:root {
  --bg-dark: #050607;
  --bg-darker: #020304;
  --bg-light: #f4f5f7;
  --accent-green: #0B5D33;
  --accent-lime: #70FF4F;
  --accent-gold: #D4AF37;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --card-bg: #111827;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --danger: #ef4444;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.5;
}

/* Layout helpers */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: radial-gradient(circle at top left, #111827, #020617);
}

.section-contact {
  background: linear-gradient(135deg, #020617, #0B5D33);
}

.section-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2rem;
}

.section-note {
  color: var(--text-muted);
  margin-top: 1rem;
}

.center {
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to right, rgba(2, 6, 23, 0.95), rgba(5, 46, 22, 0.9));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, var(--accent-lime), var(--accent-green));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #020617;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0.3rem;
  border-radius: 999px;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.main-nav a:hover {
  color: var(--accent-lime);
  background-color: rgba(15, 23, 42, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, color 0.12s ease;
}

.btn.small {
  padding: 0.45rem 0.9rem;
}

.btn-primary {
  background: radial-gradient(circle at top left, var(--accent-lime), var(--accent-green));
  color: #020617;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.6), 0 18px 30px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.6), 0 22px 36px rgba(22, 163, 74, 0.4);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--text-main);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-ghost {
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-main);
  background-color: rgba(15, 23, 42, 0.8);
}

.btn-ghost:hover {
  border-color: var(--accent-lime);
  color: var(--accent-lime);
}

.btn.full-width {
  width: 100%;
}

/* Hero */
.hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: radial-gradient(circle at top left, #0f172a, #020617);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-image-card {
  background: radial-gradient(circle at top left, rgba(112, 255, 79, 0.12), rgba(15, 23, 42, 1));
  border-radius: 1.75rem;
  padding: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.6);
}

.hero-image-card img {
  width: 100%;
  border-radius: 1.2rem;
  display: block;
  object-fit: cover;
}

.hero-image-caption {
  padding: 0.65rem 0.75rem 0.3rem 0.75rem;
}

.hero-image-caption p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Grid helpers */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  border-radius: 1.25rem;
  padding: 1.2rem;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(112, 255, 79, 0.06), rgba(15, 23, 42, 1));
}

.card-soft h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card-soft p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text-muted);
}

.pill-muted {
  opacity: 0.8;
}

.pill-gold {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.pricing-card {
  border-radius: 1.5rem;
  padding: 1.2rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pricing-featured {
  border-color: var(--accent-gold);
  box-shadow: 0 18px 35px rgba(234, 179, 8, 0.25);
  position: relative;
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.pricing-header h3 {
  margin: 0;
  font-size: 1.05rem;
}

.old-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.new-price {
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.new-price .unit {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.save-tag {
  font-size: 0.8rem;
  color: var(--accent-lime);
}

.pricing-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background-color: #020617;
}

.gallery-item img {
  width: 100%;
  display: block;
  height: 200px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.65rem 0.75rem 0.8rem 0.75rem;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  border-radius: 1.25rem;
  padding: 1.2rem;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(112, 255, 79, 0.05), rgba(15, 23, 42, 1));
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-bottom: 0.45rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
  border-radius: 1.25rem;
  padding: 1.1rem;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(112, 255, 79, 0.05), rgba(15, 23, 42, 1));
}

.testimonial .quote {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.testimonial .author {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 2rem;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0.5rem 0;
  font-size: 0.9rem;
}

.contact-list li {
  margin-bottom: 0.3rem;
}

.contact-form-wrapper {
  background-color: rgba(15, 23, 42, 0.9);
  border-radius: 1.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

input,
textarea {
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.65);
  padding: 0.6rem 0.7rem;
  font-size: 0.9rem;
  background-color: #020617;
  color: var(--text-main);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent-lime);
  box-shadow: 0 0 0 1px rgba(112, 255, 79, 0.4);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Footer */
.site-footer {
  padding: 1.5rem 0 2rem;
  background-color: var(--bg-darker);
  border-top: 1px solid rgba(31, 41, 55, 1);
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0.15rem 0;
}

.footer-sub {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.85);
  color: var(--text-muted);
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 1.1rem;
  bottom: 4.2rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, var(--accent-lime), var(--accent-green));
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 18px 35px rgba(22, 163, 74, 0.6);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    display: none; /* keep it simple for now on mobile */
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero {
    padding-top: 3rem;
  }

  .grid-4,
  .pricing-grid,
  .gallery-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image-card {
    margin-top: 0.5rem;
  }

  .section {
    padding: 3rem 0;
  }
}


.logo-img {
  height: 32px;
  width: auto;
  border-radius: 0.75rem;
  display: block;
}


/* New hero with big photo */
.hero-with-photo {
  padding-top: 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent-lime);
  margin-bottom: 0.75rem;
}
.hero-title {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
  margin-bottom: 0.75rem;
}
.hero-hours {
  font-size: 0.86rem;
  color: var(--text-muted);
}
.hero-photo img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.95);
  object-fit: cover;
  max-height: 460px;
}

/* Footer social links */
.footer-social {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-social a {
  color: var(--accent-lime);
  text-decoration: none;
}
.footer-social a:hover {
  text-decoration: underline;
}
.footer-social .dot {
  opacity: 0.6;
  margin: 0 0.4rem;
}

.contact-hours {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-photo {
    order: -1;
  }
}


/* Blog pages */
.page-body {
  background-color: var(--bg-dark);
  color: var(--text-main);
}
.blog-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.blog-container {
  max-width: 800px;
}
.blog-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.blog-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.blog-container h2 {
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}
.blog-container p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.link-simple {
  color: var(--accent-lime);
  text-decoration: none;
}
.link-simple:hover {
  text-decoration: underline;
}
.btn-small {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}


/* Blog pages */
.blog-index {
  max-width: 60rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.blog-card {
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.1rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(112, 255, 79, 0.04), rgba(15, 23, 42, 1));
}
.blog-card h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}
.blog-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.blog-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent-soft);
}
.blog-link:hover {
  text-decoration: underline;
}

.blog-article {
  max-width: 58rem;
}
.blog-article h1 {
  margin-bottom: 1rem;
}
.blog-article h2 {
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}
.blog-article p {
  font-size: 0.96rem;
  color: var(--text-muted);
}
.blog-article ul {
  margin-left: 1.2rem;
  margin-bottom: 1rem;
}
.blog-cta {
  margin-top: 2.4rem;
  padding: 1.3rem 1.4rem;
  border-radius: 1rem;
  border: 1px solid var(--border-strong);
  background: radial-gradient(circle at top left, rgba(112, 255, 79, 0.1), rgba(15, 23, 42, 1));
}
.blog-cta h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}
.blog-cta p {
  margin-bottom: 0.9rem;
}

@media (min-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
