@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  --green-dark:    #0a3d1f;
  --green-mid:     #166534;
  --green-vivid:   #16a34a;
  --green-bright:  #22c55e;
  --green-glow:    #4ade80;
  --gold:          #d4a017;
  --text-white:    #f0fdf4;
  --text-muted:    rgba(240, 253, 244, 0.70);
  --text-dimmed:   rgba(240, 253, 244, 0.45);

  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.35s var(--ease);
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  /* allow scroll so content is never clipped on short viewports */
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-white);
  background-color: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* push content to centre but let it grow downward */
  min-height: 100dvh;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* ===========================
   Background Image Layer
   =========================== */
.bg-photo {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Multi-layer overlay for contrast + green tint */
.bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(6, 30, 15, 0.88) 0%,
      rgba(10, 61, 31, 0.80) 40%,
      rgba(6, 30, 15, 0.92) 100%
    );
}

/* ===========================
   Decorative SVG Grid
   =========================== */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(34, 197, 94, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ===========================
   Glowing Orbs
   =========================== */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
  opacity: 0.25;
  animation: pulse-orb 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green-vivid), transparent 70%);
  top: -120px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  bottom: -80px;
  right: -60px;
  animation-delay: 3s;
}

@keyframes pulse-orb {
  from { opacity: 0.15; transform: scale(1); }
  to   { opacity: 0.30; transform: scale(1.12); }
}

/* ===========================
   Main Content Wrapper
   =========================== */
.page-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  /* top padding clears nothing (no fixed nav); bottom padding clears fixed footer (~70px) */
  padding: 60px 40px 100px;
  margin: auto;           /* centres vertically when body has enough height */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  /* ensure wrapper is at least full viewport height so content is centred */
  min-height: 100dvh;
  justify-content: center;
}

/* ===========================
   Logo
   =========================== */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  animation: fade-down 0.8s var(--ease) both;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-vivid), var(--green-bright));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

.logo-icon i {
  font-size: 1.6rem;
  color: #fff;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.03em;
}

.logo-text span {
  color: var(--green-bright);
}

/* ===========================
   Badge / Tag
   =========================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--green-glow);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fade-down 0.9s var(--ease) 0.1s both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ===========================
   Hero Heading
   =========================== */
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 28px;
  animation: fade-up 0.9s var(--ease) 0.2s both;
}

.hero-heading .highlight {
  background: linear-gradient(90deg, var(--green-bright), var(--green-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   Sub-paragraph
   =========================== */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 52px;
  animation: fade-up 0.9s var(--ease) 0.35s both;
}

/* ===========================
   Divider
   =========================== */
.divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-vivid), var(--green-glow));
  border-radius: 2px;
  margin: 0 auto 52px;
  animation: fade-up 0.9s var(--ease) 0.4s both;
}

/* ===========================
   Contact Cards Row
   =========================== */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 52px;
  animation: fade-up 0.9s var(--ease) 0.5s both;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 14px;
  padding: 20px 28px;
  text-align: left;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.contact-card:hover {
  background: rgba(34, 197, 94, 0.10);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-vivid), var(--green-bright));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

.card-icon i {
  font-size: 1.15rem;
  color: #fff;
}

.card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dimmed);
  margin-bottom: 4px;
}

.card-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
}

/* ===========================
   CTA Button
   =========================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  background: linear-gradient(135deg, var(--green-vivid) 0%, var(--green-bright) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 30px rgba(34, 197, 94, 0.40);
  animation: fade-up 0.9s var(--ease) 0.65s both;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.55);
}

.cta-btn:hover::before {
  opacity: 1;
}

/* ===========================
   Footer Strip
   =========================== */
.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(34, 197, 94, 0.12);
  background: rgba(6, 30, 15, 0.60);
  backdrop-filter: blur(12px);
  animation: fade-up 0.9s var(--ease) 0.8s both;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-dimmed);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
  background: rgba(34, 197, 94, 0.1);
  transform: translateY(-2px);
}

/* ===========================
   Keyframe Animations
   =========================== */
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Responsive
   =========================== */

/* ---- Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .page-wrapper {
    padding: 60px 32px 100px;
  }

  .hero-heading {
    font-size: clamp(2.4rem, 5vw, 4rem);
  }
}

/* ---- Large Mobile (≤ 600px) ---- */
@media (max-width: 600px) {
  .page-wrapper {
    padding: 48px 20px 96px;
    /* on short phones content scrolls naturally */
    min-height: auto;
    justify-content: flex-start;
    padding-top: 48px;
  }

  .logo {
    margin-bottom: 28px;
  }

  .logo-icon {
    width: 46px;
    height: 46px;
  }

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

  .badge {
    font-size: 0.72rem;
    padding: 7px 16px;
    margin-bottom: 22px;
  }

  .hero-heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 0.97rem;
    margin-bottom: 36px;
  }

  .divider {
    margin-bottom: 36px;
  }

  /* Stack cards full-width on mobile */
  .contact-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
  }

  .contact-card {
    width: 100%;
    max-width: 420px;
    padding: 16px 20px;
  }

  .cta-btn {
    width: 100%;
    max-width: 420px;
    justify-content: center;
    padding: 15px 28px;
    font-size: 1rem;
  }

  /* Footer becomes two-line centred */
  .footer-strip {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 14px 20px;
  }
}

/* ---- Small Phone (≤ 400px) ---- */
@media (max-width: 400px) {
  .logo-text { font-size: 1.3rem; }
  .logo-icon { width: 40px; height: 40px; }
  .logo-icon i { font-size: 1.2rem; }

  .card-value { font-size: 0.95rem; }

  .footer-copy { font-size: 0.75rem; }
}
