/* ===== GLOBAL RESETS ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

:root {
  --primary: #fcb700;
  --primary-dark: #d69700;
  --dark: #10131c;
  --darker: #080911;
  --gray-100: #f6f6f8;
  --gray-200: #ececf2;
  --gray-400: #9ea3b5;
  --white: #ffffff;
  --text: #222430;
  --radius: 1.2rem;
  /* --font-heading: "Montserrat", sans-serif; */
  --font-heading: "Exo 2", sans-serif;
  --font-body: "Lexend", sans-serif;

  --bento-gap: 0.8rem;
  --bento-radius: 16px;
  --bento-hover-scale: 1.04;
}

html,
body {
  margin: 0;
  background-color: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  width: min(1200px, 92%);
  /* max-width: 1600px; */
  width: 95%;
  /* width: 80%; */
  margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  /* inset: 0 0 auto 0; */
  top: 0;
  left: 0;
  right: 0;
  padding: 0.4rem 0;

  /* Glass effect */
  background: rgba(253, 238, 238, 0.25);
  /* background: rgba(10, 10, 10, 0.25); */
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);

  z-index: 10;
  overflow: visible !important;
}

/* Hide hamburger on desktop */
.menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  /* color: var(--white); */
  color: var(--primary);
  border: none;
  cursor: pointer;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 2rem;
}

.brand img {
  width: 100px;
}

.site-nav {
  display: flex;
  gap: 0.4rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  /* text-shadow: 0 0 6px rgba(0,0,0,0.6); */
  letter-spacing: 0.04em;
  font-size: 0.88rem;
}

.site-nav a {
  /* padding: 0.55rem 1.2rem; */
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  transition: 0.25s ease;
  color: var(--darker);
  position: relative;
}

/* .site-nav a:hover {
  background: var(--dark);
  color: var(--yellow);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);

  z-index: 10;
} */

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  color: var(--primary);
  /* color:inherit; */
}

/* .site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0%;
  background: var(--primary);
  transition: width 0.3s ease;
} */

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a:focus {
  background: var(--gray-400);
  color: var(--dark);
  border-radius: 999px;
}

/* ACTIVE (clicked) state */
/* .site-nav a:active {
  background: var(--dark);
  color: var(--yellow);
  transform: scale(0.97);
} */
/* .site-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(34px) saturate(160%);
  -webkit-backdrop-filter: blur(34px) saturate(160%);

  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: var(--yellow);
} */

.site-nav a.active {
  background: #1C1B1B;
  /* backdrop-filter: blur(20px); */
  color: var(--primary);
  /* box-shadow: 0 4px 16px rgba(0,0,0,0.25); */
}

/* MOBILE NAV DRAWER */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  /* background: rgba(20,20,20,0.98); */
  /* background: rgba(14, 13, 13, 0.98); */
  background: #ffffff;
  /* background: rgba(253, 238, 238, 0.25);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(18px); */
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.35s ease;
  z-index: 9999;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-nav.open {
  right: 0;
}

.close-btn {
  position: absolute;
  right: 1.2rem;
  top: 2.3rem;
  font-size: 1.4rem;
  background: rgb(0, 0, 0);
  border: none;
  border-radius: 50%;
  color: var(--primary);
  cursor: pointer;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #D9D9D9;
  overflow: visible !important;
}

.mobile-logo {
  width: 150px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  overflow: visible;
  margin-top: -17px;
  margin-bottom: -25px;
  /* gap: 1rem;
  margin-top: 1rem; */
}

.mobile-links a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--dark);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
  border: 1px solid transparent;
  overflow: visible !important;
}

.mobile-links a:hover {
  background: #1C1B1B;
  color: var(--primary);
}

.mobile-links a.active {
  background: #1C1B1B;
  color: var(--primary);
}

/* FOOTER INSIDE MOBILE NAV */
/* .mobile-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  color: rgb(0, 0, 0);
  border-top: 1px solid #D9D9D9;
  overflow: visible !important;

} */

.mobile-footer {
  display: flex;
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid #E5E5E5;
  align-items: flex-start;
  justify-content: space-between;
  overflow: visible;
}

/* .mobile-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid #E5E5E5;
} */

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-footer p {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.footer-right p {
  visibility: hidden;       /* keeps space but hides label */
  height: 0;                /* no extra spacing */
  margin: 0;
}

.footer-right{
  display: flex;
  flex-direction: column;
}

.footer-icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 2 columns */
  gap: 1rem 2rem;                 /* row gap | column gap */
}

/* .mobile-footer .icons img {
  width: 28px;
  margin-right: 8px;
  cursor: pointer;
  filter: brightness(0) saturate(100%);
} */

/* .mobile-footer .icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  align-items: center;
} */

.mobile-footer .icons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.icon-col {
  display: flex;
  align-items: center;
  gap: 0.5rem;   
}

.icon-col img {
  width: 22px;   
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.icon-col img:hover {
  transform: scale(1.12);
}

.icon-col span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #000;
  text-transform: none;
}

/* .mobile-footer .icons img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
} */

/* .mobile-footer .icons img:hover {
  transform: scale(1.08);
}

.mobile-footer .icons img {
  filter: brightness(0) saturate(100%);
} */

.footer-left p,
.footer-right p {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
  gap: 1rem;
  letter-spacing: 0.03em;
}

/* SHOW HAMBURGER + HIDE DESKTOP NAV ON MOBILE */
@media (max-width: 880px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
    color: var(--primary);
  }
}

.cta-btn {
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* width: 16rem; */
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  /* text-transform: uppercase; */
  letter-spacing: 0.05em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: var(--primary-dark);
  /* transform: translateY(-2px); */
}

.ghost-btn {
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.85rem 1.6rem;
  background: #101010;
  border-radius: 999px;
  border: 2px solid var(--primary);
  color: var(--white);
  font-weight: 700;
  /* text-transform: uppercase; */
  letter-spacing: 0.04em;
  transition: background 0.3s ease, color 0.3s ease;
}

.ghost-btn:hover {
  /* background: var(--white); */
  /* background: linear-gradient(150deg, #101010, rgb(50 49 49)); */
  background: linear-gradient(150deg, rgb(50 49 49), #101010);
  /* background: #101010; */
  color: var(--white);
}

.ghost-btn-img img {
  width: 3rem;
  height: 1.5rem;
  object-fit: contain;
  display: block;
  margin: 0rem;
}

.ghost-btn.dark {
  border-color: var(--dark);
  color: var(--dark);
}

.ghost-btn.dark:hover {
  background: var(--dark);
  color: var(--white);
}

.cta-btn.secondary {
  background: var(--dark);
  color: var(--white);
}

.cta-btn.secondary:hover {
  background: var(--primary);
  color: var(--dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  /* display: grid; */
  /* place-items: center; */
  text-align: left;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0,0,0,0.4); */
  background: linear-gradient(120deg, rgba(16, 19, 28, 0.85) 0%, rgba(16, 19, 28, 0.2) 60%, rgba(16, 19, 28, 0.7) 100%);
  z-index: 0;
}

.hero-content {
  margin-top: 7rem;
  /* max-width: 650px; */
  max-width: 50rem;
  display: grid;
  margin-left: 9rem;
  gap: 0.8rem;
  z-index: 0;
  position: relative;
  /* top: 120px; */
  top: 0rem;
}

.hero-sub {
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-size: 0.8rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.2;
  margin: 0;
}

.hero h1 span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  max-width: 50rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}


/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-content {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-top: 5rem;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions a,
  .hero-actions button {
    width: 100%;
    text-align: center;
  }
}



@media (max-width: 480px) {
  .hero-content {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 4rem;
  }

  .hero-sub {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 0.9rem;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 0.5rem;
  color: var(--dark);
  margin-top: -0.8rem;
}

.section h2 span {
  color: var(--primary);
}

.section-intro {
  max-width: 620px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  color: var(--gray-400);
}


@media (max-width: 420px) {
  .hero {
    padding: 3rem 0 2.5rem;
    min-height: 75vh;
  }

  .hero-content {
    margin-top: 10.5rem;
    gap: 0.6rem;
    max-width: 92%;
    margin-left: 1rem;
  }

  .hero-sub {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 0.9rem;
    max-width: 95%;
  }

  .hero-actions {
    gap: 0.6rem;
    align-items: stretch;
  }
}

/* ===== ABOUT ===== */
.about {
  background: var(--gray-100);
}

.about-content {
  display: grid;
  /* gap: clamp(2rem, 5vw, 4rem); */
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  overflow: visible;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-text .highlight {
  font-weight: 600;
  margin-top: 1rem;
  color: var(--dark);
}

.mission {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-left: 4px solid var(--primary);
  background: var(--white);
  border-radius: 12px;
}

.mission h4 {
  font-family: var(--font-heading);
  margin: 0 0 0.4rem;
}

.about-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(16, 19, 28, 0.18);
}

.about-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-card:hover img {
  transform: scale(1.05);
}

.about-card .pill {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 1.15rem 1.9rem;
  /* background: rgba(16, 19, 28, 0.85); */
  background: rgba(0, 0, 0, 0.4);
  /* transparent layer */
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background-color: #fffefb;
  /* padding: clamp(3rem, 6vw, 4.5rem) 1.5rem; */
  text-align: center;
  /* font-family: "Poppins", sans-serif; */
}

.how-it-works .section-subtitle {
  color: #222;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.how-it-works h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 2.8rem;
  margin-top: -0.8rem;
  font-weight: 600;
  color: #111;
}

.how-it-works h2 span {
  color: #fbbf24;
  /* yellow-orange highlight */
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: clamp(1.8rem, 3vw, 2.5rem); */
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  overflow: visible;
}

/* CARD */
.feature-card {
  display: flex;
  align-items: flex-start;
  /* gap: 1.2rem; */
  padding: 0rem 1.4rem 0.8rem 0rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
  text-align: left;
  min-height: 180px;
  margin: 1rem;
  color: #111;
}

/* 
.feature-card.dark {
  background: #111;
  color: #fff;
} */

.feature-card:hover {
  background: #111;
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  color: #fff;
}

.icon-wrap {
  flex-shrink: 0;
  background: #fbbf24;
  border-radius: 16px 0 100% 0;
  width: 108px;
  height: 84px;
  display: grid;
  place-items: center;
}

.icon-wrap img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  padding: 0 10% 10% 0;
  /* color: inherit; */
  /* background-color: inherit; */
}

.feature-card:hover .icon-wrap {
  background: #fbbf24;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: inherit;
  /* inherits black or white based on card */
}

.feature-card:hover h3 {
  color: #fbbf24;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  /* color: #e5e5e5; */
  color: inherit;
}

/* .feature-card.dark p {
  color: #e5e5e5;
} */

/* CTA BUTTON */
.btn-primary {
  display: inline-block;
  background: #fbbf24;
  color: #000;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #e5a600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  } */

  /* .icon-wrap {
    border-radius: 50%;
  } */
}

@media (max-width: 420px) {
  .how-it-works h2 {
    font-size: 1.4rem;
  }

  .features-grid {
    gap: 1.2rem;
    padding-inline: 0.5rem;
  }

  /* .feature-card {
    padding: 1rem;
    border-radius: 14px;
  }

  .icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  } */

  .icon-wrap img {
    width: 36px;
    height: 36px;
  }

  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}



/* ===== WHY (BENTO REFRESH) ===== */
.why {
  background: #ffffff;
  color: #04060c;
  padding: clamp(2rem, 8vw, 4rem) 0;
  /* padding: 2rem 0; */
}

.why-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  /* align-items: center; */
  align-items: stretch;
}

.bento-media {
  display: grid;
  /* gap: 0.4rem; */
  grid-template-columns: 1fr 0.8fr;
  width: 100%;
  height: 100%;
  gap: var(--bento-gap);
  align-items: stretch;
  justify-items: center;
  box-sizing: border-box;
  overflow: hidden;
  transform-origin: top left;
}

/* .media-column {
  display: grid;
  gap: clamp(0rem, 3vw, 0.1rem);
} */

/* LEFT column */
.media-column.left {
  display: grid;
  flex-direction: column;
  gap: var(--bento-gap);
  /* align-items:center; */
  /* flex: 1.5; */
  grid-template-rows: 1fr auto 1fr; /* 3 stacked sections */
  height: 100%;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  justify-items: center;
}

/* RIGHT column */
.media-column.right {
  display: grid;
  gap: var(--bento-gap);
  grid-template-rows: 1fr 1fr;
  justify-content: space-evenly;
  align-items: center;
  justify-items: center;
}

.media-column:last-child {
  grid-template-rows: 1fr 1fr;
}

.merged.images {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: 1fr 1fr;
  /* two equal columns */
  /* gap: clamp(0rem, 2vw, 0.5rem); */
  gap: var(--bento-gap);
  justify-content: space-evenly;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.media-item {
  width: 100%;
  height: 100%;
  border-radius: var(--bento-radius);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  box-sizing: border-box;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  backface-visibility: hidden;
}

.media-item video {
  filter: saturate(1.05);
}

/* hover scale (desktop only) */
@media (hover: hover) and (min-width: 701px) {
  .media-item:hover img,
  .media-item:hover video {
    transform: scale(var(--bento-hover-scale));
  }
}

/* .media-item.bento1 { aspect-ratio: 16 / 7; }
.media-item.bento2,
.media-item.bento3 { aspect-ratio: 9 / 5; }
.media-item.bento4 {aspect-ratio: 16 / 7; } */

/* .media-item.bento6 { aspect-ratio: 10 / 18; }
.media-item.bento5 { aspect-ratio: 10 / 18; } */

.bento1 {
  aspect-ratio: 16 / 9;  
}
.bento2,
.bento3 {
  aspect-ratio: 1 / 1;
}
.bento4,
.bento5,
.bento6 {
  aspect-ratio: 4 / 3;     /* more compact than 16/9 tall video */
}

.why-panel {
  /* display: grid; */
  /* gap: 1rem; */
  /* max-width: 640px; */
  justify-self: center;
  margin-left: 2rem;
}

.section-tag {
  font-family: var(--font-heading);
  color: var(--darker);
  font-size: 1.4rem;
  font-weight: 600;
  display: inline-block;
  /* IMPORTANT */
  position: relative;
  overflow-x: initial;
  /* Needed for ::after */
}

.section-tag::after {
  content: "";
  /* display: block; */
  position: absolute;
  left: 0;
  bottom: -4px;
  /* adjust distance below text */
  width: 100%;
  /* Match the text width */
  height: 2px;
  background: var(--primary);
  margin-top: 0.5rem;
}

.why-panel h2 {
  color: #080000;
  margin-top: 0;
}

.why-panel h2 span {
  color: var(--primary);
}

.why-panel .lead {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(9, 0, 0, 0.82);
}

.why-panel .accent {
  color: var(--primary);
  font-weight: 700;
}

/* .why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0rem;
  } */
  
  .why-list {
    margin-left: -4rem;
  }
  
.why-list .icon img {
  width: 100%;
  height: 60%;
  object-fit: contain;
  display: block;
  margin: 0.1rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

/* .why-list .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(252, 183, 0, 0.18);
  font-size: 1.35rem;
  } */
  
  .why-list span {
    font-weight: 600;
    color: rgba(16, 0, 0, 0.88);
  }

  /* ===========================
  BELOW 620px
  =========================== */
  /* @media (max-width: 620px) {
    :root {
    --bento-gap: 0.5rem;
    --bento-radius: 10px;
    --bento-hover-scale: 1.02;
  }
    .why {
      padding: 1.5rem 0;
    }

    .why-layout {
      gap: clamp(1rem, 4vw, 2rem);
      grid-template-columns: 1fr;
      padding-inline: 1rem;
    }

    .why-layout h2 {
      font-size: 1.7rem;
    }

    .why-layout p {
      font-size: 1rem;
      line-height: 1.4;
    }

    .bento-media {
      grid-template-columns: 1fr 0.9fr;
      gap: var(--bento-gap);
      align-items: stretch;
    }

    .bento1,
    .bento4 {
      aspect-ratio: 16/9;
    }

    .bento2,
    .bento3 {
      aspect-ratio: 16/10;
    }

    .bento5,
    .bento6 {
      aspect-ratio: 3/4;
    }

    .section-tag {
      font-size: 1.1rem;
    }
  } */

  @media (max-width: 700px) {
  :root {
    --bento-gap: 0.5rem;
    --bento-radius: 10px;
    --bento-hover-scale: 1.02;
  }

  .why {
    padding: 1.25rem 0;       /* reduce section padding */
  }

  /* keep grid columns visually similar — still two columns, but narrower */
  .bento-media {
    grid-template-columns: 1fr 0.9fr; /* keep the same look but slightly adjusted */
    gap: var(--bento-gap);
    align-items: stretch;
  }

  /* tighten the left column row proportions so center row won't push too far */
  .media-column.left {
    gap: var(--bento-gap);
    grid-template-rows: 0.95fr auto 0.95fr; /* slightly compress */
  }

  /* merged mini-row: keep 2 columns but smaller squares */
  .merged.images {
    grid-template-columns: 1fr 1fr;
    gap: var(--bento-gap);
  }

  /* slightly adjust aspect ratios so heights reduce proportionally on narrow screens */
  .bento1,
  .bento4 { aspect-ratio: 14 / 9; }  /* slightly less tall than desktop */
  .bento2,
  .bento3 { aspect-ratio: 10 / 11; } /* near-square but a touch vertical to match image crop */
  .bento5,
  .bento6 { aspect-ratio: 9 / 12; }  /* slightly more compact tall cards */

  /* reduce radius and transform intensity (no big hover on mobile) */
  .media-item { border-radius: var(--bento-radius); }
  .media-item img,
  .media-item video { transition: transform 0.28s ease; }

  /* ensure video & img don't overflow their grid cells */
  .media-item img,
  .media-item video { max-width: 100%; max-height: 100%; object-position: center; }

  /* Ensure the text panel remains readable — scale its width within wrapper */
  .why-panel { margin-left: 1rem; padding-right: 0.5rem; }  
   /* max-width: 520px; */
}

/* ===========================
   BELOW 420px
  ===========================*/
/* @media (max-width: 420px) {
  .why-layout {
    gap: 1rem;
    padding-inline: 0.5rem;
  }

  .why-layout h2 {
    font-size: 1.4rem;
  }

  .why-layout p {
    font-size: .95rem;
  }

  .section-tag {
    font-size: 1rem;
  }

  .bento-media {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .media-column.left,
  .media-column.right,
  .merged.images {
    grid-template-columns: 1fr 1fr;
  }
} */
 @media (max-width: 420px) {
  :root {
    --bento-gap: 0.4rem;
    --bento-radius: 8px;
  }

  .bento-media {
    /* grid-template-columns: 1fr 0.95fr; */
    grid-template-columns: 0.8fr 0.7fr;
    /* padding-right: 2.2rem; */
    gap: var(--bento-gap);
  }

  .media-column.left { grid-template-rows: 0.9fr auto 0.9fr; }
  .bento1, .bento4 { aspect-ratio: 13 / 9; }
  .bento2, .bento3 { aspect-ratio: 10 / 12; }
  .bento5, .bento6 { aspect-ratio: 9 / 13; }

  .why { padding: 0.9rem 0; }
  .why-layout { padding-inline: 0.4rem; }

  /* smaller text area */
  .why-panel { padding-right: 0.4rem; }
}

.survival-card {
  padding: 1rem 1.7rem;
  margin-top: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(18, 23, 35, 0.95), rgba(10, 13, 22, 0.95));
  /* box-shadow: 0 20px 38px rgba(4, 6, 12, 0.58); */
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  display: grid;
  /* gap: 0.35rem; */
}

.survival-card strong {
  color: var(--primary);
  font-size: 1.18rem;
}

.cta-btn.highlight {
  background: var(--primary);
  color: var(--dark);
  padding-inline: 2.6rem;
  /* box-shadow: 0 20px 40px rgba(252, 183, 0, 0.28); */
  /* width: 40rem; */
  /* width: 33rem; */
  margin-top: 2rem;
}

.cta-btn.highlight:hover {
  background: var(--primary-dark);
}

.stories-media {
  margin: 2.5rem 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.5rem;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(16, 19, 28, 0.12);
  background: var(--gray-100);
}

.stories-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stories-caption {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  text-align: left;
  display: grid;
  gap: 0.6rem;
  align-content: center;
}

.stories-caption h3 {
  font-family: var(--font-heading);
  margin: 0;
  color: var(--dark);
}

.stories-caption p {
  margin: 0;
  color: var(--gray-400);
}

.callout {
  margin: 2rem 0;
  padding: 1.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.25rem;
}

.callout strong {
  color: var(--primary);
  font-size: 1.2rem;
}

.why-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.8rem;
}

.why-gallery img {
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.why-gallery img:hover {
  opacity: 1;
  transform: translateY(-4px);
}

/* ===== SMART SAFETY ===== */
.smart {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
  padding: clamp(1rem, 4vw, 2rem) 1.5rem;
    padding-top: 0.5rem;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.smart::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 23, 42, 0.55);
  /* deep dark blue overlay */
  z-index: 1;
  pointer-events: none;
}

.smart-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.smart-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* THIS is what makes it full background */
  filter: brightness(0.55);
}

.smart-content {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.smart-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.smart-content h2 span {
  color: #e5a600;
}

.smart-content p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  max-width: 971;
  opacity: 0.9;
}

.smart-content-header {
  text-align: center;
  /* max-width: 50rem; */
}

/* .smart-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
} */

.smart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  width: 100%;
  overflow: visible;
  justify-items: stretch;
}

@media (max-width: 768px) {
  .smart-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- GLASSMORPHIC CARDS --------- */
.smart-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.8rem;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.12);
  /* transparent glass */
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  /* transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease; */
  transition: transform 0.3s ease;
}

.smart-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.smart-card .icon img {
  width: 85px;
  height: 85px;
}


/* ===== STORIES ===== */
.stories {
  background: var(--white);
  text-align: center;
}

.stories span {
  color: #FFB300;
}

.story-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.5rem;
  overflow: visible;
}

.story-card {
  /* padding: 2rem 1.6rem; */
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(252, 183, 0, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
  /* box-shadow: 0 12px 24px rgba(16, 19, 28, 0.12); */
  border: 1px solid rgb(224 224 224);
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(16, 19, 28, 0.16);
}

.story-card-content {
  padding: 2rem 1.6rem;
}

.story-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story-card h3 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.story-card span {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.slide-btn {
  display: none;
}

/* MOBILE  (below 420px) */
@media (max-width: 430px) {

  /* STOP ALL PAGE OVERFLOW */
  body, html {
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .story-slider-wrapper {
    width: 100%;
    overflow: visible !important;  
    position: relative;
    z-index: 1;
    padding-bottom: 3.2rem; /* space for arrows */
  }

  /* Horizontal slider container */
  /* .story-slider {
    display: flex;
    margin: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    align-items: center;
    box-sizing: border-box;
    padding: 0 0.9rem 0;
    gap: 0.8rem;
    width: 100%;
    box-sizing: border-box;
  } */

  .story-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0.9rem;
    padding: 0 1rem;
  }

/* hide native scrollbar */
  .story-slider::-webkit-scrollbar { display: none; }
  .story-slider { scrollbar-width: none; }

  /* Grid → horizontal container */
    .story-grid {
    display: flex !important;
    flex-direction: row;
    gap: 0.9rem;
    /* width: auto !important; */
    width: max-content;
    /* min-width: auto !important; */
    padding: 0;
    margin: 0;
    /* box-sizing: border-box; */
    }

    /* .story-card {
    flex: 0 0 92%;
    width: 92%;
    max-width: 92%;
    min-width: 92%;
    box-sizing: border-box;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(140deg, rgba(252,183,0,0.06) 0%, rgba(255,255,255,0.95) 100%);
    box-shadow: 0 12px 24px rgba(16,19,28,0.12);
   } */

   .story-card {
    flex: 0 0 88%;
    max-width: 88%;
    min-width: 88%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(16,19,28,0.12);
  }

  .story-card-content {
    padding: 1.4rem 1.2rem; 
    /* overflow: auto;
    max-height: calc(100vh - 170px - 180px); */
  }

  /* image fits container */
    .story-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    }

  .story-card {
    max-height: calc(100vh - 170px);
  }

  /* ARROWS (centered under slider) */
  .slide-btn {
    display: flex;
    position: absolute;
    bottom: 4px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1C1B1B;
    color: #FFB300;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 10;
  }

  .slide-btn.left {
    left: 44%;
    transform: translateX(-120%);
  }

  .slide-btn.right {
    left: 56%;
    transform: translateX(20%);
  }
}


@media (max-width: 420px) {

  .how-it-works h2 {
    font-size: 1.4rem;
  }

  .features-grid {
    gap: 1rem;
    padding-inline: 0.5rem;
  }

  .feature-card {
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    min-height: 130px;
    /* smaller height */
    width: 92%;
    /* smaller width */
    margin: 0 auto;
    /* center card */
    gap: 0.7rem;
  }

  .icon-wrap {
    width: 50px;
    /* smaller icon box */
    height: 50px;
    border-radius: 14px;
  }

  .icon-wrap img {
    width: 30px;
    /* smaller icon image */
    height: 30px;
    padding: 0;
  }

  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .feature-card p {
    font-size: 0.85rem;
    /* slightly smaller text */
    line-height: 1.4;
  }

}


/* ===== NEWSLETTER ===== */
.newsletter {
  position: relative;
  color: var(--white);
  padding: 4rem 1rem;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.newsletter-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1;
  opacity: 100%;
}

.newsletter-grid {
  position: relative;
  display: grid;
  z-index: 2;
  text-align: center;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  color: #fff;
}

.newsletter-left,
.newsletter-right {
  width: 100%;
  /* Forces them to occupy their full column */
}


.newsletter-left {
  text-align: left;
  /* max-width: 480px; */
  max-width: 544px;
}

.newsletter-left h2,
h3 {
  color: #fff;
}

.newsletter-right {
  display: contents;
  justify-content: center;
  width: 100%;
}

.newsletter-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  /* align-items: center;
  justify-content: center; */
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}

/* Input & button same width */
.newsletter-form input,
.newsletter-form button {
  width: 100%;
}


/* .newsletter-form input {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
} */

.newsletter-form input {
  /* width: 150%; */
  padding: 1.5rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 1.05rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  outline: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Hover / focus glass effect */
.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}


.newsletter-form button {
  /* width: 150%; */
  margin-top: 0.6rem;
  padding: 1.5rem 2.4rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

/* Hide label (accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
    /* stack on small screens */
    text-align: center;
  }

  .newsletter-left {
    text-align: center;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}

/* .footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
} */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: start;
  gap: 4rem;
}

.footer-brand img {
  width: 212px;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  color: #d69700;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  line-height: 1.55;
}

.footer-socials {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  /* font-size: 1.2rem; */
}

.footer-socials a {
  width: 3rem;
  height: 4rem;
  /* border-radius: 12px; */
  /* background: rgba(255, 255, 255, 0.12); */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.2s ease;
}

.footer-socials a img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: brightness(0) invert(1); /* ensures icon is pure white */
}


.footer-socials a:hover {
  /* background: var(--primary); */
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  color: #d69700;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}




.footer-contact p {
  margin: 0.4rem 0;
}

.footer-contact img {
  margin-top: 1.5rem;
  width: 160px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    text-align: left;
  }

  .footer-brand img {
    width: 180px;
  }

  .footer-socials {
    margin-top: 1.4rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    /* gap: 2.5rem; */
    gap: 1.5rem;
  }

  .footer-contact img {
    width: 145px;
  }

  .footer-note {
    margin-top: 2rem;
    font-size: 0.8rem;
  }
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 1024px) {
  .why-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  /* .hero-actions {
    flex-direction: column;
    align-items: stretch;
  } */

  .stories-media {
    grid-template-columns: 1fr;
  }

  .stories-caption {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  /* .why-list li {
    flex-direction: column;
    align-items: flex-start;
  } */
}

/* ===== REGISTER MODAL ===== */
.register-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  visibility: hidden;
  transition: visibility 0.5s;
}

.register-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.register-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
  background: #fffdf9;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(-150%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: visible;
}

.register-modal.active {
  visibility: visible;
}

.register-modal.active .register-overlay {
  opacity: 1;
}

.register-modal.active .register-container {
  transform: translateY(0);
}

.close-register {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #10131c;
  color: #fcb700;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: grid;
  place-items: center;
  transition: transform 0.2s;
}

.close-register:hover {
  transform: scale(1.1);
}

.register-content {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 1000px) {
  .register-content {
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .register-content {
    flex-direction: row;
    align-items: stretch;
  }
}

.register-form-section {
  flex: 1;
  /* padding: 3rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px;    
}

.register-image-section {
  flex: 1;
  /* background: #fdfdf5; */
  min-height: 530px;
  /* min-height: 100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible !important;
}

.register-image-section .register-bg {
  position: absolute;
  /* top: 50%;
  left: 50%;
  width: 87%;   
  height: auto; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* transform: translate(-50%, -50%); */
  /* max-height: 100%;  */
  border-radius: 24px;
  overflow: hidden;
  /* object-fit: contain; */
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

/* .register-image-section img:not(.register-bg) {
  width: 100%;  
  height: auto;  
  z-index: 2;
  object-fit: cover;
} */

.register-image-section img:not(.register-bg) {
  position: absolute;
  top: 14%;           
  left: -8%;          

  width: 100%;        
  height: auto;

  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}



/* .register-image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
} */

/* width: 100%;
height: 70%; */
/* .register-image-section img {
  width: 83%;
  height: 47%;
  z-index: 1;
  object-fit: cover;
} */

.register-form-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #10131c;
}

.highlight-text {
  color: #fcb700;
}

.register-sub {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #10131c;
}

.required {
  color: #d32f2f;
}

.form-group input {
  width: 100%;
  height: 42px;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  /* border-radius: 999px; */
  border-radius: 24px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #fcb700;
}

.submit-btn {
  background: #10131c;
  color: #fcb700;
  border: none;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #000;
}

.submit-btn span {
  font-size: 1.2rem;
}

/* ===========================
   RESPONSIVE REGISTER POPUP
   For Mobile Below 480px
   =========================== */
   @media (max-width: 480px) {

    /* Modal container fits screen */
    .register-container {
      width: 95%;
      margin: 1rem auto;
      max-height: 95vh;
      border-radius: 16px;
    }
  
    /* Stack layout cleanly */
    .register-content {
      flex-direction: column-reverse;
    }
  
    /* Form section spacing */
    .register-form-section {
      padding: 90px 20px;
      padding-top: 35%;
    }
  
    .register-form-section h2 {
      font-size: 1.55rem;
      line-height: 1.3;
    }
  
    .register-sub {
      font-size: 0.9rem;
      margin-bottom: 1.4rem;
    }
  
    /* Make background panel smaller (Figma-style) */
    .register-image-section {
      /* min-height: 300px; */
      min-height: 21rem;
      padding-top: 1rem;
    }
  
    .register-image-section .register-bg {
      width: 95%;
      height: 250px;
      left: 50%;
      top: 10%;
      transform: translateX(-50%);
      object-fit: cover;
      border-radius: 20px;
    }
  
    /* Resize bike & center it properly */
    .register-image-section img:not(.register-bg) {
      top: 5%;
      left: 50%;
      transform: translateX(-50%);
      width: 130%;   /* larger for mobile */
      height: auto;
    }
  
    /* Fix close button overlap */
    .close-register {
      width: 32px;
      height: 32px;
      font-size: 1.2rem;
      top: 1rem;
      right: 1rem;
      z-index: 9999;
    }
  
    /* Inputs sizing */
    .form-group input {
      height: 40px;
      font-size: 0.95rem;
    }
  
    .submit-btn {
      font-size: 1rem;
      padding: 0.9rem 1.4rem;
    }
  }
  
/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  color: #333;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10000;
  border-left: 5px solid var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--primary);
  font-size: 1.4rem;
}
