/* ============================
   GLOBAL RESET & BASE STYLES
   ============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;        /* Prevents layout overflow */
  font-family: 'Poppins', sans-serif;
}

/* ============================
   BODY BACKGROUND STYLING
   ============================ */
body {
  min-height: 100vh;             /* Full viewport height */

  /* Light white overlay on background image
     Keeps text readable on all devices */
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0.35)
    ),
    url("../images/bg.jpeg");

  background-size: cover;        /* Image always fills screen */
  background-position: center;   /* Keeps focus center */
  background-repeat: no-repeat;
  background-attachment: fixed;  /* Parallax effect on desktop */

  overflow-x: hidden;            /* Prevents horizontal scroll */
}

/* ============================
   MOBILE OPTIMIZATION
   (Fixes background-attachment issue)
   ============================ */
@media (max-width: 768px) {
  body {
    background-attachment: scroll; /* Fixed causes lag on mobile */
  }
}

/* ============================
   SMALL MOBILE SCREENS
   ============================ */
@media (max-width: 480px) {
  body {
    background-position: top;   /* Better composition on small screens */
  }
}


/* ============================
   NAVBAR CONTAINER
   ============================ */
.header {
  position: relative;
  z-index: 1000;

  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #1a1a1a;
  top: 0;

  overflow: visible; /* 🔥 THIS FIXES EVERYTHING */
}

/* ============================
   LOGO
   ============================ */
.logo-wrap img {
  height: 66px;
  max-width: 100%; /* Prevents overflow on small screens */
}

/* ============================
   NAV LINKS (DESKTOP)
   ============================ */
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #5b7b55;
}

/* ============================
   BUTTON (CTA)
   ============================ */
.btn {
  background: #5b7b55;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  white-space: nowrap; /* Prevents text wrapping */
}

/* ============================
   HAMBURGER ICON (HIDDEN ON DESKTOP)
   ============================ */
.hamburger {
  display: none;            /* Hidden on desktop */
  font-size: 26px;
  cursor: pointer;
  color: #ffffff;
  user-select: none;
}
/* ============================
   TABLET & MOBILE NAV
============================ */
@media (max-width: 992px) {

  .header {
    padding: 0 24px;
  }

  /* Hide nav by default */
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;

    background: #1a1a1a;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 20px 0;

    display: none !important;
    z-index: 9999;      /* 🔥 MOST IMPORTANT */
  }

  .nav.active {
    display: flex !important;
  }


  /* Show hamburger */
  .hamburger {
    display: block;
  }

  /* Bigger links for touch */
  .nav a {
    font-size: 16px;
  }
}

/* ============================
   SMALL MOBILE SCREENS
============================ */
@media (max-width: 480px) {
  .header {
    padding: 0 16px;
  }

  .logo-wrap img {
    height: 56px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}


/* =====================================================
   HERO SECTION (DESKTOP DEFAULT)
   ===================================================== */
.hero {
  min-height: 100vh;                 /* Full viewport height */
  position: relative;

  /* ✅ DEFAULT BACKGROUND (FIRST SLIDE) */
  background: url("images/homepage/slider 1.jpeg") center / cover no-repeat;

  transition: background-image 1s ease-in-out;

  display: flex;
  align-items: center;               /* Vertical centering */
  
  background-size: cover;
  background-position: center;
  transition: background-image 0.8s ease-in-out;


}


/* =====================================================
   DARK GRADIENT OVERLAY (CINEMATIC LOOK)
   ===================================================== */
.hero-overlay {
  position: absolute;
  inset: 0;                          /* Top, right, bottom, left = 0 */

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.1)
  );

  z-index: 1;
}

/* =====================================================
   HERO CONTENT (TEXT BLOCK)
   ===================================================== */
.hero-content {
  position: relative;
  max-width: 600px;
  margin-left: 120px;                /* Desktop spacing */
  z-index: 2;                        /* Above overlay */
}

.hero-content h1 {
  color: #ddd;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  margin: 18px 0 30px;
  font-size: 16px;
  color: #ddd;
}

/* =====================================================
   HERO BUTTONS
   ===================================================== */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;                   /* Prevent overflow on small screens */
}

/* Common button styling */
.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
}

/* Primary CTA */
.primary {
  background: #5b7b55;
  color: #fff;
}

/* Outline CTA */
.outline {
  border: 2px solid #5b7b55;
  color: #fff;
}

/* =====================================================
   TABLET RESPONSIVE (≤ 992px)
   ===================================================== */
@media (max-width: 992px) {

  .hero {
    justify-content: center;          /* Center content horizontally */
    text-align: center;
    padding: 0 40px;
  }

  .hero-content {
    margin-left: 0;                  /* Remove left offset */
    max-width: 700px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* =====================================================
   MOBILE RESPONSIVE (≤ 600px)
   ===================================================== */
@media (max-width: 600px) {

  .hero {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 22px;
    font-size: 13px;
  }
}


/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
  padding: 100px 0;
  color: #000;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* -----------------------------------------------------
   ABOUT IMAGE
   ----------------------------------------------------- */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

/* Decorative accent box */
.color-box {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #5b7b55);
  border-radius: 12px;
  z-index: 1;
}

/* -----------------------------------------------------
   ABOUT CONTENT
   ----------------------------------------------------- */
.about-content .tagline {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #777;
}

.about-content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 15px 0 20px;
}

.about-content p {
  color: #555;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* -------- TABLET -------- */
@media (max-width: 1024px) {
  .hero-content {
    margin-left: 60px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .about-container {
    gap: 40px;
  }
}

/* -------- MOBILE -------- */
@media (max-width: 768px) {
  .hero {
    align-items: center;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
    padding: 0 24px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-container {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .color-box {
    display: none;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

/* -------- SMALL MOBILE -------- */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 22px;
    font-size: 13px;
  }
}

/* =====================================================
   SHORTS SECTION
   ===================================================== */
.shorts-section {
  padding: 100px 0;
}

/* Container */
.shorts-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
  text-align: center;
}

/* Section Title */
.shorts-container h2 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #000;
}

/* Section Subtitle */
.shorts-sub {
  color: #555;
  margin-bottom: 50px;
  font-size: 15px;
  line-height: 1.6;
}

/* -----------------------------------------------------
   SHORTS GRID
   ----------------------------------------------------- */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop */
  gap: 25px;
}

/* Individual Short Card */
.shorts-grid iframe {
  width: 100%;
  aspect-ratio: 9 / 16;              /* Perfect Shorts ratio */
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */
.why-section {
  padding: 110px 0;
}

/* Container */
.why-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
  text-align: center;
}

/* Small Tagline */
.why-tag {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #777;
}

/* Main Heading */
.why-title {
  font-size: 44px;
  margin: 10px 0;
  color: #000;
}

/* Subtitle Text */
.why-sub {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* -------- LARGE TABLETS -------- */
@media (max-width: 1100px) {
  .shorts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-title {
    font-size: 38px;
  }
}

/* -------- TABLETS & MOBILES -------- */
@media (max-width: 768px) {
  .shorts-container,
  .why-container {
    padding: 0 24px;
  }

  .shorts-container h2 {
    font-size: 34px;
  }

  .why-title {
    font-size: 34px;
  }

  .shorts-sub,
  .why-sub {
    font-size: 14px;
  }
}

/* -------- SMALL MOBILES -------- */
@media (max-width: 600px) {
  .shorts-grid {
    grid-template-columns: 1fr;
  }

  .shorts-section,
  .why-section {
    padding: 70px 0;
  }

  .shorts-container h2,
  .why-title {
    font-size: 28px;
  }
}

/* =====================================================
   WHY CHOOSE US — GRID
   ===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop layout */
  gap: 30px;
}

/* -----------------------------------------------------
   WHY CARD
   ----------------------------------------------------- */
.why-card {
  border-radius: 18px;
  overflow: hidden;
  text-align: left;

  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

/* Card Image */
.why-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Card Title */
.why-card h3 {
  font-size: 20px;
  margin: 18px 18px 8px;
  color: #000;
}

/* Card Description */
.why-card p {
  margin: 0 18px 22px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* =====================================================
   WHY GRID — RESPONSIVE
   ===================================================== */

/* -------- TABLET -------- */
@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------- MOBILE -------- */
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 34px;
  }
}

/* =====================================================
   HOST SECTION
   ===================================================== */
.host-section {
  padding: 110px 0;
}

/* Container Layout */
.host-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Text | Image */
  gap: 80px;
  align-items: center;
}

/* -----------------------------------------------------
   HOST CONTENT
   ----------------------------------------------------- */
.host-tag {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #777;
}

.host-content h2 {
  font-size: 44px;
  margin: 10px 0 25px;
  color: #000;
}

.host-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.7;
}

/* Highlight Line */
.host-highlight {
  font-weight: 600;
  color: #000;
  margin-top: 20px;
}

/* -----------------------------------------------------
   HOST IMAGE
   ----------------------------------------------------- */
.host-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  display: block;
}

/* =====================================================
   HOST SECTION — RESPONSIVE
   ===================================================== */

/* -------- TABLET & MOBILE -------- */
@media (max-width: 900px) {
  .host-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .host-content h2 {
    font-size: 34px;
  }
}

/* -------- SMALL MOBILE -------- */
@media (max-width: 480px) {
  .host-section {
    padding: 80px 0;
  }

  .host-content h2 {
    font-size: 30px;
  }

  .host-content p {
    font-size: 14px;
  }
}

/* =====================================================
   THE PROCESS SECTION
   ===================================================== */
.process-section {
  padding: 110px 0;
}

/* Section Title */
.process-title {
  text-align: center;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 90px;
  color: #000;
}

/* =====================================================
   TIMELINE WRAPPER
   ===================================================== */
.process-timeline {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

/* Center Vertical Line (Desktop) */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #5b7b55;
  transform: translateX(-50%);
}

/* =====================================================
   TIMELINE ITEM
===================================================== */
.process-item {
  position: relative;
  display: flex;
  margin-bottom: 100px;          /* More breathing space */
}

/* LEFT ALIGNED STEP */
.process-item.left {
  justify-content: flex-end;
  padding-right: 100px;
}

/* RIGHT ALIGNED STEP */
.process-item.right {
  justify-content: flex-start;
  padding-left: 100px;
}

/* =====================================================
   STEP CONTENT BOX
===================================================== */
.process-box {
  width: 420px;
  background: #ffd800;
  padding: 30px 34px;
  border-radius: 14px;           /* Softer corners */
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

/* Hover lift for polish */
.process-box:hover {
  transform: translateY(-4px);
}

/* Step Heading */
.process-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #111;
}

/* Step Description */
.process-box p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* =====================================================
   CENTER DOT
===================================================== */
.process-item::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #5b7b55;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* =====================================================
   STEP LABEL (Step 1, Step 2…)
===================================================== */
.step-label {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 70px;
  margin-left: -35px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  background: #ffffff;
  padding: 3px 8px;
  border-radius: 14px;
  z-index: 4;
}

/* =====================================================
   RESPONSIVE — TABLET & MOBILE
===================================================== */
@media (max-width: 900px) {

  /* Move timeline to left */
  .process-timeline::before {
    left: 28px;
  }

  /* Stack all steps on one side */
  .process-item {
    padding-left: 80px;
    justify-content: flex-start !important;
  }

  /* Align dot to left */
  .process-item::before {
    left: 28px;
  }

  /* Align label with dot */
  .step-label {
    left: 28px;
    margin-left: -35px;
  }

  /* Full width card */
  .process-box {
    width: 100%;
  }

  .process-title {
    font-size: 34px;
  }
}

/* =====================================================
   SMALL MOBILE REFINEMENTS
===================================================== */
@media (max-width: 480px) {

  .process-section {
    padding: 70px 16px;
  }

  .process-title {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .process-box {
    padding: 22px;
  }

  .process-box h3 {
    font-size: 16px;
  }

  .process-box p {
    font-size: 13px;
  }
}


/* =====================================================
   PODCAST EPISODES SECTION
   ===================================================== */
.episodes-section {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden; /* Prevent arrow overflow */
}

/* -----------------------------------------------------
   BACKGROUND (IMAGE + GRADIENT OVERLAY)
   ----------------------------------------------------- */
.episodes-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.4)
    ),
    url("../images/homepage/Slider 13.png")
    center / cover no-repeat;

  z-index: 0;
}

/* -----------------------------------------------------
   MAIN CONTAINER
   ----------------------------------------------------- */
.episodes-container {
  position: relative;
  z-index: 1;

  max-width: 1300px;
  margin: auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

/* =====================================================
   SLIDER AREA
   ===================================================== */
.episodes-slider {
  position: relative;
}

/* Individual Slide */
.episode-slide {
  display: none;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.episode-slide.active {
  display: block;
}

/* Slide Image */
.episode-slide img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* -----------------------------------------------------
   PLAY BUTTON OVERLAY
   ----------------------------------------------------- */
.play-btn {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 70px;
  color: #fff;
  background: rgba(0,0,0,0.35);
  cursor: pointer;

  transition: background 0.3s ease, transform 0.3s ease;
}

.play-btn:hover {
  background: rgba(0,0,0,0.55);
  transform: scale(1.05);
}

/* -----------------------------------------------------
   SLIDER ARROWS
   ----------------------------------------------------- */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  border: none;
  background: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.arrow.left  { left: -40px; }
.arrow.right { right: -40px; }

/* =====================================================
   CONTENT AREA
   ===================================================== */
.episodes-content .tag {
  color: #00ff5a;
  font-size: 12px;
  letter-spacing: 2px;
}

.episodes-content h2 {
  font-size: 40px;
  margin: 15px 0;
}

.episodes-content p {
  color: #ddd;
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* =====================================================
   VIDEO MODAL
   ===================================================== */
.video-modal {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

/* Video Wrapper */
.video-wrapper {
  width: 80%;
  max-width: 900px;
  position: relative;
}

/* Responsive Video */
.video-wrapper iframe {
  width: 100%;
  height: 500px;
  border-radius: 8px;
}

/* Close Button */
.video-wrapper .close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* -------- TABLET -------- */
@media (max-width: 900px) {
  .episodes-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .arrow.left  { left: 10px; }
  .arrow.right { right: 10px; }

  .episodes-content h2 {
    font-size: 34px;
  }
}

/* -------- MOBILE -------- */
@media (max-width: 600px) {
  .episodes-section {
    padding: 80px 0;
  }

  .episodes-container {
    padding: 0 24px;
  }

  .episodes-content h2 {
    font-size: 30px;
  }

  .play-btn {
    font-size: 56px;
  }

  .video-wrapper iframe {
    height: 280px;
  }
}

/* =====================================================
   BLOG SECTION
   ===================================================== */
.blog-section {
  padding: 110px 0;
}

/* Container */
.blog-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
  text-align: center;
}

/* Tag */
.blog-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #777;
  font-weight: 600;
}

/* Heading */
.blog-title {
  font-size: 42px;
  margin: 15px 0 60px;
  color: #000;
}

/* -----------------------------------------------------
   BLOG GRID
   ----------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* -----------------------------------------------------
   BLOG CARD
   ----------------------------------------------------- */
.blog-card {
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;

  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

/* Card Image */
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* Card Content */
.blog-content {
  padding: 25px;
  text-align: left;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-date {
  font-size: 13px;
  color: #5b7b55;
}

/* =====================================================
   BLOG — RESPONSIVE
   ===================================================== */
@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-section {
    padding: 80px 0;
  }

  .blog-title {
    font-size: 30px;
  }
}

/* =====================================================
   REQUEST INVITATION SECTION
   ===================================================== */
.invite-section {
  padding: 120px 0;
}

/* Container */
.invite-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* -----------------------------------------------------
   IMAGE
   ----------------------------------------------------- */
.invite-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* -----------------------------------------------------
   FORM
   ----------------------------------------------------- */
.invite-form h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #000;
}

/* Two column form row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Input group */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

/* Inputs */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* Textarea */
textarea {
  border-radius: 20px;
  resize: none;
}

/* Checkbox row */
.form-checkbox {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin: 25px 0;
  color: #555;
}

/* Submit button */
.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #5b7b55);
  color: #fff;
  padding: 16px;
  border-radius: 40px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Form status */
#formStatus {
  margin-top: 15px;
  font-size: 14px;
}

/* =====================================================
   FORM TEXT VISIBILITY FIX
   ===================================================== */
.invite-form,
.invite-form * {
  color: #000 !important;
}

.invite-form label {
  font-weight: 500;
}

.invite-form input,
.invite-form textarea {
  color: #000 !important;
  border: 1px solid #ccc;
}

.invite-form input::placeholder,
.invite-form textarea::placeholder {
  color: #888 !important;
}

.form-checkbox span {
  color: #333 !important;
}

/* =====================================================
   INVITE SECTION — RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .invite-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .invite-form h2 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .invite-section {
    padding: 90px 0;
  }

  .invite-form h2 {
    font-size: 30px;
  }
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #0b0b0b;
  color: #ccc;
  padding: 80px 0 0;
}

/* -----------------------------------------------------
   FOOTER GRID CONTAINER
   ----------------------------------------------------- */
.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr; /* Brand | Links | Contact */
  gap: 80px;
}

/* =====================================================
   BRAND BLOCK
   ===================================================== */
.footer-brand img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
}

/* =====================================================
   LINKS & CONTACT
   ===================================================== */
.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

/* Links List */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #5b7b55;
}

/* Contact text */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ccc;
}

/* =====================================================
   SOCIAL ICONS
   ===================================================== */
.social-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;

  background: #5b7b55;
  color: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* =====================================================
   FOOTER BUTTON
   ===================================================== */
.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;

  background: #5b7b55;
  color: #000;
  font-weight: 600;

  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-2px);
}

/* =====================================================
   FOOTER BOTTOM BAR
   ===================================================== */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 60px;
  padding: 20px 40px;

  text-align: center;
  font-size: 13px;
  color: #777;
}

/* =====================================================
   RESPONSIVE FOOTER
   ===================================================== */

/* -------- TABLET & MOBILE -------- */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    padding: 20px;
  }
}

/* -------- SMALL MOBILE -------- */
@media (max-width: 480px) {
  .site-footer {
    padding: 60px 0 0;
  }

  .footer-brand img {
    width: 150px;
  }
}
