:root {
  --bg: #1B211A;
  --card: #06402B;
  --primary: #34ac5f;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  background: var(--bg);
  color: var(--text);
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 64, 43, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-logo img {
  height: 42px;
  border-radius: 10px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  background: var(--primary);
  border: none;
  cursor: pointer;
  font-weight: 600;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 5% 6rem;
  min-height: 100vh;
  /* Full viewport height */
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.15), transparent 60%);
}

.hero-text {
  max-width: 45%;
}

.hero-text h1 {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: 800;
  font-family: "Raleway", sans-serif;
}

.hero-text .highlight {
  color: var(--primary);
}


.subtext {
  margin-top: 2rem;
  font-size: 1.6rem;
  color: var(--muted);
}

.subtext span {
  color: var(--primary);
}

/* RIGHT SIDE */
.hero-media {
  width: 48%;
  height: 100%;
  display: flex;
  align-items: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  width: 100%;
  height: 100%;
}

.vid {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 16px;
  object-fit: cover;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

/* Slight variation per video */
.v2 {
  animation-delay: 1s;
}

.v3 {
  animation-delay: 2s;
}

.v4 {
  animation-delay: 3s;
}

.v5 {
  animation-delay: 4s;
}

.v6 {
  animation-delay: 5s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* BUTTON */
.btn {
  padding: 1rem 2.4rem;
  border-radius: 999px;
  background: var(--primary);
  color: #020617;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  border: none;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(52, 172, 95, 0.25);
}

/* SECTIONS */
section {
  padding: 8rem 2rem;
}

h2 {
  text-align: center;
  font-size: 3.4rem;
  margin-bottom: 4rem;
}

/* SERVICES */
.services-section {
  padding: 8rem 2rem;
  text-align: center;
}

.services-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg);
}

.services-card {
  background: rgba(27, 33, 26, 0.9);
  /* same as Why section */
  border: 1px solid rgba(52, 172, 95, 0.25);
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.services-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-intro {
  font-size: 1.8rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 3rem;
}

.services-intro .highlight {
  color: var(--primary);
  font-weight: 600;
}


/* =====================
   SERVICES GRID – RESPONSIVE
===================== */

.services-features {
  display: grid;
  gap: 2.5rem;

  /* 🖥 Desktop: 4 × 1 */
  grid-template-columns: repeat(2, 1fr);
}

/* =====================
   Tablet: 2 × 2
===================== */
@media (max-width: 1024px) {
  .services-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================
   Mobile: 2 × 2
===================== */
@media (max-width: 640px) {
  .services-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.feature-item {
  background: rgba(27, 33, 26, 0.85);
  border: 1px solid rgba(52, 172, 95, 0.25);
  border-radius: 16px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  transition: all 0.35s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(52, 172, 95, 0.35);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(52, 172, 95, 0.2);
  color: #34ac5f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0 0 18px rgba(52, 172, 95, 0.35);
}

.feature-text h3 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #e8f5ee;
}

.feature-text p {
  font-size: 1.5rem;
  color: #b8cbbf;
  line-height: 1.6;
}

/* CONTACT */
.contact-section {
  text-align: center;
}

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

.contact-links {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* =====================
   CALENDAR MODAL (FINAL FIX)
===================== */

.calendar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.calendar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.calendar-modal {
  background: #020617;
  width: 100%;
  max-width: 820px;
  /* ⬅ balanced width */
  border-radius: 18px;
  border: 1px solid var(--border);

  display: flex;
  flex-direction: column;

  padding: 2rem 2rem 2.4rem;
  text-align: center;

  max-height: 90vh;
  overflow: hidden;

  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;

  position: relative;
}

.calendar-overlay.active .calendar-modal {
  transform: translateY(0);
  opacity: 1;
}

/* Close button */
.calendar-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2.6rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}

.calendar-close:hover {
  color: var(--primary);
}

/* Header */
.calendar-modal h2 {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.calendar-modal .muted {
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* 🔥 IMPORTANT FIX */
.calendar-embed {
  flex: 1;
  min-height: 520px;
  /* ⬅ FORCE real height */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.calendar-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  /* ⬅ Cal.com needs this */
  border: none;
}

/* Mobile */
@media (max-width: 640px) {
  .calendar-modal {
    max-width: 100%;
    padding: 1.6rem 1.4rem 2rem;
  }

  .calendar-modal h2 {
    font-size: 2.1rem;
  }

  .calendar-embed,
  .calendar-embed iframe {
    min-height: 480px;
  }
}

/* FOOTER */
footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--muted);
}



/* extra */

.calendar-modal {
  overflow-y: auto;
}


@media (max-width: 420px) {
  .nav-list {
    gap: 1.2rem;
  }

  .nav-cta {
    padding: 0.5rem 1.2rem;
    font-size: 1.4rem;
  }
}


/* =====================
   MOBILE POLISH (iPhone)
===================== */

@media (max-width: 430px) {

  /* NAVBAR */
  .nav {
    padding: 0.8rem 1.4rem;
  }

  .nav-list {
    gap: 1.4rem;
  }

  .nav-list a {
    font-size: 1.5rem;
  }

  .nav-cta {
    padding: 0.5rem 1.2rem;
    font-size: 1.4rem;
    border-radius: 999px;
  }

  /* HERO */
  .hero {
    flex-direction: column;
    padding: 9rem 5% 4rem;
  }

  .hero-text,
  .hero-media {
    max-width: 100%;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .subtext {
    font-size: 1.3rem;
    padding: 9px;
  }

  /* CTA BUTTON */
  .hero-cta {
    padding: 1rem 2.2rem;
    font-size: 1.5rem;
  }
}


/* =====================
   HAMBURGER MENU (≤400px)
===================== */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate to X */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.3);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  background: rgba(2, 6, 23, 0.96);
  backdrop-filter: blur(12px);
  border-left: 1px solid var(--border);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;

  padding: 3.2rem 2rem;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: var(--text);
  font-size: 1.8rem;
  text-decoration: none;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  padding: 1.2rem 2.4rem;
  border-radius: 50px;
  background: var(--primary);
  color: #020617;
  font-weight: 600;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
  z-index: 1001;
  transition: transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-sticky-cta:hover {
  transform: scale(1.05);
}

/* Hide sticky CTA when menu is open */
.menu-overlay.active~.mobile-sticky-cta {
  display: none;
}

/* Breakpoint fix */
@media (max-width: 768px) {
  .nav-list {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-sticky-cta {
    display: block;
  }
}

/* FAQs */
.faqs-section {
  padding: 8rem 2rem;
  text-align: center;
}

.faqs-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.faq-item {
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 2.4rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(56, 189, 248, 0.1);
}

.faq-icon {
  color: var(--primary);
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon::before {
  content: "\f068";
  /* minus icon */
}

.faq-item:not(.active) .faq-icon::before {
  content: "\f067";
  /* plus icon */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2.4rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  /* adjust based on content */
  padding: 0 2.4rem 2.4rem;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Mobile FAQs */
@media (max-width: 768px) {
  .faq-question {
    padding: 2rem;
    font-size: 1.8rem;
  }

  .faq-answer {
    padding: 0 2rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
  }
}

/* Mobile Services */
@media (max-width: 768px) {
  .services-card {
    padding: 3rem 2rem;
  }

  .services-intro {
    font-size: 1.6rem;
  }

  .services-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .feature-icon {
    align-self: center;
  }

  .feature-text h3 {
    font-size: 1.4rem;
  }
}

/* FIX service card alignment */
.feature-item {
  display: flex;
  flex-direction: column;
  /* ⬅ stack icon, heading, text */
  align-items: center;
  /* ⬅ horizontal center */
  text-align: center;
  /* ⬅ text center */
  gap: 1.4rem;
  /* ⬅ consistent spacing */
}

/* Icon box */
.feature-icon {
  width: 56px;
  height: 56px;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

/* Heading */
.feature-text h3 {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 600;
}

/* Description text (THIS fixes your issue) */
.feature-text p {
  margin: 0;
  max-width: 260px;
  /* ⬅ keeps text neat */
  line-height: 1.55;
  color: var(--muted);
}



/* =====================
   WHY CHOOSE GROWA (DARK)
===================== */

.why-section {
  padding: 8rem 2rem;
  background: var(--bg);
  text-align: center;
}

.why-section h2 {
  font-size: 3.4rem;
  margin-bottom: 5rem;
}

/* WHY CHOOSE GROWA – FIXED GRID */

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.8rem;

  /* Desktop: 3 columns */
  grid-template-columns: repeat(3, 1fr);
}

/* Card */
.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 3rem 2.8rem;
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

/* Icon */
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--primary);
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}

/* Title */
.why-card h3 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

/* Text */
.why-card p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Mobile polish */
@media (max-width: 480px) {
  .why-section {
    padding: 6rem 1.6rem;
  }

  .why-card {
    padding: 2.6rem 2.2rem;
  }

  .why-card h3 {
    font-size: 1.7rem;
  }

  .why-card p {
    font-size: 1.45rem;
  }
}


/* =====================
   ABOUT SECTION (UPGRADED)
===================== */

.about-section {
  padding: 9rem 2rem;
  background: radial-gradient(circle at top,
      rgba(56, 189, 248, 0.08),
      transparent 55%);
}

.about-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* Small label */
.about-eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.9;
}

/* Heading */
.about-section h2 {
  font-size: 3.6rem;
  margin-bottom: 2.2rem;
  line-height: 1.2;
}

/* Lead paragraph */
.about-lead {
  font-size: 1.9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 3rem;
}

/* Divider */
.about-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right,
      transparent,
      var(--primary),
      transparent);
  margin: 3rem auto;
  opacity: 0.6;
}

/* Body text */
.about-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2.4rem;
}

/* Strong closing line */
.about-strong {
  font-size: 1.7rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
  margin: 3.5rem 0;
}

/* CTA */
.about-cta {
  margin-top: 1.5rem;
}

/* Highlight */
.about-section .highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .about-section {
    padding: 7rem 1.6rem;
  }

  .about-section h2 {
    font-size: 3rem;
  }

  .about-lead {
    font-size: 1.7rem;
  }

  .about-text {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-section {
    padding: 6rem 1.6rem;
  }

  .about-text {
    font-size: 1.55rem;
    line-height: 1.7;
  }
}


@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

.calendar-overlay {
  z-index: 9999;
  /* higher than menu overlay */
}

.video-wrap {
  position: relative;
  border-radius: 18px;
  overflow: visible;
}

.video-wrap {
  height: 100%;
}

/* Glow layer */
.video-wrap::before {
  content: "";
  position: absolute;
  inset: -14px;
  background: radial-gradient(circle,
      rgba(52, 172, 95, 0.45),
      rgba(52, 172, 95, 0.15),
      transparent 70%);
  filter: blur(22px);
  z-index: -1;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

/* Hover glow boost */
.video-wrap:hover::before {
  opacity: 1;
}

/* Actual video */
.video-wrap video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}


.video-wrap:hover::before {
  filter: blur(24px);
}

.vid {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 18px;
  object-fit: cover;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.video-wrap {
  height: 100%;
  min-height: 260px;
}


/* 📱 Mobile fix – 2 videos per row */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 Very small phones (optional) */
@media (max-width: 420px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}