@font-face {
  font-family: "Gotham";
  src: url("./fonts/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./fonts/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./fonts/Gotham-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./fonts/Gotham-BookItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

:root {
  --pink: #c7387b;
  --dark: #0f1221;
  --light: #fff6fb;
  --text: #181a2a;
}

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

body {
  font-family: "Gotham", sans-serif;
  color: var(--text);
  background: #f8f4f1;
}

/* LAYOUT */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* HEADER */

.header {
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #f8f4f1;
  transition: padding 0.3s;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  text-decoration: none;
}

.nav-logo {
  height: 50px;
  /* Adjust based on actual logo aspect ratio */
  width: auto;
  display: block;
}

/* Fallback text style if image fails */
.logo-text {
  font-weight: 700;
  color: var(--pink);
  line-height: 1.1;
  font-size: 1.2rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 10px 24px;
  transition: 0.3s;
}

.menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
}

.menu-btn img {
  width: 32px;
  height: auto;
  display: block;
}

.btn-login {
  background-color: var(--dark);
  color: white !important;
  border: 1px solid var(--dark);
}

.btn-login:hover {
  background-color: #333;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--dark);
  /* Changed to dark per design 1? Or keep pink? stick to design 1 image looks dark text/border */
  color: var(--pink) !important;
}

.btn-outline:hover {
  background-color: var(--dark);
  color: white !important;
}

/* OVERLAY MENU */
.menu-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--pink);
  z-index: 9999;
  display: none;
  /* Toggled via JS */
  flex-direction: column;
  padding-bottom: 40px;
}

.menu-overlay.active {
  display: flex;
}

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
}

.nav-logo.white {
  filter: brightness(0) invert(1);
  /* Make logo white */
}

.logo-text.white-text {
  color: white;
}

.overlay-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login.small {
  padding: 8px 20px;
  font-size: 0.8rem;
}

.btn-light {
  background: white;
  color: var(--pink);
  border: 1px solid white;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.8rem;
  transition: 0.3s;
}

.btn-light:hover {
  background: #f0f0f0;
}

.close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  margin-left: 20px;
}

.overlay-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;

}

.overlay-content a {
  color: white;
  text-decoration: none;
  font-size: 2.5rem;
  letter-spacing: 0.01em;
  font-weight: 300;
  transition:
    opacity 0.2s ease,
    letter-spacing 0.2s ease,
    font-weight 0.2s ease;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.overlay-content a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.overlay-content a:hover {
  opacity: 0.9;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration:underline;
}

.overlay-content a:hover::after {
  width: 100%;
}

@media (max-width: 600px) {
  .desktop-only {
    display: none;
  }

  .overlay-content {
    gap: 20px;
  }

  .overlay-content a {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}

/* HERO Section CSS*/
.rate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.rate img {
  height: 24px;
  width: auto;
}

.hero {
  text-align: center;
  padding: 40px 0 80px;
  overflow: hidden;
}

.hero h1 {
  font-size: 3rem;
  font-weight: black;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--pink);
  letter-spacing: -2px;
}

.highlight-marker {
  position: relative;
  display: inline-block;
  color: var(--dark) !important;
  /* Ensure text is dark, not pink if inherited */
  z-index: 1;
}

.highlight-marker::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -10px;
  width: 120%;
  height: 50px;
  background-image: url("./assets/lines.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  transform: none;
  background-color: transparent;
}

.hero p {
  margin-top: 16px;
  color: #181a2a;
  font-size: 1.125rem;
}

.hero-illustration {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  height: auto;
  position: relative;
}

.hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.btn-get-started {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #1a1a1a;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-get-started:hover {
  transform: translate(-50%, -55%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stats {
  color: var(--pink);
  font-size: 2.5rem;
  margin-top: 40px;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.stats small {
  font-size: 1.25rem;
  color: var(--dark);
  font-weight: bold;
}

/* TRUSTED BY */
.trusted-by {
  margin-top: 60px;
  padding-top: 40px;
  width: 100%;
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  display: block;
}

.logos-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 30s linear infinite;
  /* Adjusted speed for better visibility */
}

.logos-track:hover {
  animation-play-state: paused;
}

.logos-slide {
  display: flex;
  align-items: center;
  gap: 80px;
  /* Increased gap for better visual separation */
  padding-right: 80px;
  /* Match gap */
}

.logos-slide img {
  max-height: 73px;
  filter: grayscale(100%);
  transition: 0.3s;
  opacity: 0.6;
}

.logos-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* CURVES */

.curve {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.curve svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
  transition: transform 0.3s ease;
}

.curve-down {
  margin-bottom: -1px;
  /* Remove gap */
}

.curve-up {
  margin-top: -1px;
  /* Remove gap */
}

.curve-bottom {
  margin-top: -1px;
}

@media (max-width: 768px) {
  .curve svg {
    transform: scaleY(0.6);
    /* 60% of original depth */
    transform-origin: bottom center;
  }
}

/* Almost flat on mobile */
@media (max-width: 480px) {
  .curve svg {
    transform: scaleY(0.3);
  }
}


/* Ensure paths use the correct fill via CSS if needed, though mostly handled in HTML */
/* .curve-down path,
.curve-up path {
    fill: var(--dark);
} */

/* DARK SECTION */

.dark-section {
  background: var(--dark);
  color: white;
  padding: 80px 0 100px;
  text-align: center;
  clip-path: ellipse(85% 100% at 50% 0%);
  /* TOP curve at center */

  transition: clip-path 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dark-section {
    padding: 60px 0 80px;
    clip-path: ellipse(95% 100% at 50% 0%);
    /* Shallow curve */
  }
}

@media (max-width: 480px) {
  .dark-section {
    padding: 40px 0 60px;
    clip-path: ellipse(99% 100% at 50% 0%);
    /* Almost flat */
  }
}

.dark-section h2 {
  font-size: 2rem;
  margin-bottom: 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.card {
  background: #d1f2eb;
  /* Light Mint/Green */
  padding: 32px;
  border-radius: 24px;
  text-align: center;
  color: #1a1a1a;
  /* Dark text for light background */
}

.card h3 {
  margin-bottom: 20px;
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.3;
}

.card img {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
  margin: 20px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
}

.primary-btn {
  background: #f8f4f1;
  border: none;
  color: var(--text);
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.3s;
}

/* VALUES */

.values {
  position: relative;
  z-index: 2;
  margin-top: -50px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.value h3 {
  margin-bottom: 8px;
  font-size: 2.5rem;
  font-weight: black;
}

.value p {
  color: var(--pink);
  font-size: 1.5rem;
}

.value img {
  max-height: 125px;
}

/* People in the news section */
.news-marquee {
  background-color: var(--pink);
  color: white;
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: scroll 20s linear infinite;
}

.marquee-content {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 0;
  display: flex;
  align-items: center;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

/* NEWS SECTION */
.news-section {
  background-color: var(--pink);
  overflow: hidden;
}

.news-container {
  display: flex;
  overflow-x: auto;
  gap: 32px;
  padding: 20px 5%;
  /* Side padding for scroll start */
  padding-bottom: 40px;
  /* Space for scrollbar if any, or shadow */
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

.news-container::-webkit-scrollbar {
  display: none;
}

.news-card {
  background: white;
  min-width: 300px;
  max-width: 400px;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  scroll-snap-align: center;
  text-align: center;
  flex-shrink: 0;
}

.news-image {
  width: 100%;
  height: 180px;
  background-color: #eee;
  border-radius: 12px;
  margin-bottom: 20px;
  background-image: url("assets/hero-img.png");
  /* Fallback/Placeholder */
  background-size: cover;
  background-position: center;
}

.news-title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: #1a1a1a;
}

.news-date {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.news-excerpt {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.news-logo {
  font-weight: 900;
  color: #002d72;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-size: 1.1rem;
}

.expansion-section {
  background-color: var(--pink);
  padding: 60px 0 80px;
  position: relative;
  text-align: center;
  overflow: hidden;
  clip-path: ellipse(85% 100% at top);
}

.expansion-content {
  position: relative;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expansion-section h2 {
  color: #1a1a1a;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 900;
  z-index: 2;
  line-height: 1.2;
  padding: 0 20px;
  margin: 0;
}

.expansion-section h2 span {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 400;
}

.job-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 38px;
  border-radius: 999px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: lowercase;
  white-space: nowrap;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* === Bubble Positions — Spread Wide Around Center === */
.b1 {
  top: 5%;
  left: 5%;
  animation-delay: 0s;
}

.b2 {
  top: 40%;
  right: 2%;
  animation-delay: 1s;
}

.b3 {
  bottom: 41%;
  left: 8%;
  animation-delay: 2s;
}

.b4 {
  bottom: 5%;
  right: 5%;
  animation-delay: 3s;
}

.b5 {
  top: 16%;
  left: 33%;
  animation-delay: 1.5s;
}

.b6 {
  bottom: 28%;
  right: 13%;
  animation-delay: 2.5s;
}

.b7 {
  top: 25%;
  left: 18%;
  animation-delay: 0.5s;
}

.b8 {
  bottom: 8%;
  left: 57%;
  transform: translateX(-50%);
  animation-delay: 3.5s;
}

.b9 {
  top: 18%;
  right: 15%;
  animation-delay: 4s;
}

.b10 {
  bottom: 18%;
  left: 18%;
  animation-delay: 4.5s;
}

.b11 {
  top: 2%;
  left: 55%;
  transform: translateX(-50%);
  animation-delay: 5s;
}

.b12 {
  bottom: 8%;
  right: 50%;
  transform: translateX(50%);
  animation-delay: 5.5s;
}

@keyframes float {

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

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

@media (max-width: 768px) {
  .job-bubble {
    padding: 10px 24px;
    font-size: 0.8rem;
  }

  .b7,
  .b10,
  .b5,
  .b9 {
    display: none;
    /* Optional: reduce density */
  }
}

/* FAQ SECTION */
.faq-section {
  padding: 240px 0 80px;
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.faq-visual {
  margin-top: -200px;
  /* Desktop overlap */
  z-index: 10;
  display: flex;
  justify-content: center;
}

.faq-visual img {
  width: 100%;
  max-width: 450px;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.faq-content h2 {
  font-size: 2rem;
  font-weight: black;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  /* Pill shape */
  padding: 20px 32px;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item[open] {
  border-radius: 32px;
  /* Less rounded when open to fit text */
  background: white;
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  /* Hide default triangle */
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

/* Hide default marker in Safari/Chrome */
.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background-color: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s;
}

/* Arrow icon using CSS pseudo-elements */
.faq-icon::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-text {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  padding-right: 40px;
  /* Keep text away from the right edge */
}

/* Responsiveness */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-content h2 {
    font-size: 2rem;
  }

  .faq-summary {
    text-align: left;
    /* Keep questions readable */
  }
}

@media (max-width: 900px) {
  .faq-visual {
    margin-top: -140px;
    /* Less overlap on tablet/mobile */
  }

  .faq-visual {
    margin-top: -140px;
    /* Less overlap on tablet */
  }

  .faq-section {
    padding: 180px 0 60px;
  }

  .faq-visual img {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .faq-visual {
    margin-top: -110px;
  }

  .faq-section {
    padding: 150px 0 50px;
  }

  .faq-visual img {
    max-width: 280px;
  }
}

@media (max-width: 400px) {
  .faq-visual {
    margin-top: -90px;
    /* Minimum overlap */
  }

  .faq-section {
    padding: 130px 0 40px;
  }

  .faq-visual img {
    max-width: 240px;
  }
}

/* CONTACT SECTION */
.contact-section {
  padding: 100px 0;
  min-height: 80vh;
  /* Ensure it takes up good screen space */
  display: flex;
  align-items: center;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.contact-content {
  flex: 1;
  max-width: 600px;
  /* Prevent it from getting too wide on huge screens */
}

.contact-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  /* Add a subtle float animation to the visual too if desired */
  animation: float 6s ease-in-out infinite;
}

/* Role Selectors */
.role-selectors {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}

.role-card {
  border-width: 2px;
  border-style: solid;
  border-radius: 32px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 180px;
  height: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pink-card {
  border-color: var(--pink);
  color: var(--pink);
}

.white-card {
  border-color: var(--dark);
  color: var(--dark);
}

.role-icon img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.role-text {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2;
}

/* Contact Form */
.contact-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-input,
.form-textarea {
  width: 100%;
  background-color: #e6e6e6;
  /* Light grey placeholder bg */
  border: none;
  padding: 16px 20px;
  border-radius: 8px;
  /* Slightly rounded corners */
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: background 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  background-color: #ddd;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  align-self: flex-start;
  padding: 12px 60px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.btn-submit:hover {
  background: var(--dark);
  color: white;
}

/* Responsive adjustments for Contact Section */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column-reverse;
    /* Visual on top, Content below */
    gap: 40px;
  }

  .contact-content {
    width: 100%;
    max-width: 100%;
  }

  .role-selectors {
    justify-content: center;
    /* Center cards on mobile */
  }

  .contact-heading {
    text-align: center;
    /* Center heading on mobile */
  }

  .btn-submit {
    /* Center button on mobile? Optional, but often looks better */
    align-self: center;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 500px) {
  .form-row {
    flex-direction: column;
    /* Stack inputs on very small screens */
  }

  .role-selectors {
    gap: 12px;
  }

  .role-card {
    width: 140px;
    height: 140px;
    padding: 16px;
  }

  .role-text {
    font-size: 0.85rem;
  }

  .role-icon img {
    height: 48px;
  }
}

/* FOOTER */
.footer {
  background: var(--pink);
  color: white;
  padding: 80px 0 30px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-col {
  flex: 1;
  min-width: 150px;
}

/* Brand Column specific */
.brand-col {
  flex: 2;
  /* Takes more space */
  min-width: 250px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

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

.footer-socials a {
  color: white;
  /* Pink on white */
  background: transparent;
  border: 2px solid white;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: black;
  font-size: 0.8rem;
  transition: 0.3s;
  text-transform: uppercase;
}

.footer-socials a:hover {
  background: white;
  color: #c43675;
}

/* Links Columns */
.footer-col h4 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Badge Column */
.badge-col {
  display: flex;
  justify-content: flex-end;
}

.bba-badge {
  text-align: left;
  line-height: 0.8;
}

.bba-badge span {
  display: block;
  font-size: 1rem;
  margin-bottom: -5px;
  font-weight: 600;
}

.act-text {
  font-size: 4rem;
  font-weight: 900;
  text-transform: lowercase;
  -webkit-text-stroke: 1px white;
  color: transparent;
  /* Outline text effect */
  letter-spacing: -2px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  font-size: 0.8rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .badge-col {
    justify-content: flex-start;
  }
}

/* SIGNUP PAGE STYLES */

.signup-section {
  padding: 60px 0;
  min-height: calc(100vh - 400px);
  /* Adjust based on header/footer */
  display: flex;
  align-items: center;
}

.signup-container {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.signup-cards-wrapper {
  flex: 1;
  display: flex;
  gap: 30px;
}

.signup-card {
  background: white;
  border-radius: 32px;
  padding: 40px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.signup-card:hover {
  transform: translateY(-5px);
}

.card-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.card-title.pink {
  color: var(--pink);
}

.card-title.dark {
  color: var(--dark);
}

.card-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 20px;
  min-height: 60px;
  /* Align buttons/images */
}

.find-out-more {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 24px;
  display: inline-block;
  text-transform: uppercase;
}

.find-out-more.pink {
  color: var(--pink);
}

.find-out-more.dark {
  color: var(--dark);
}

.card-visual {
  margin-bottom: 30px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-signup {
  background: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  padding: 12px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: 0.2s;
}

.btn-signup:hover {
  background: #f0f0f0;
}

.btn-card-login {
  background: var(--dark);
  color: white;
  border: 1px solid var(--dark);
  padding: 12px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: 0.2s;
}

.btn-card-login:hover {
  background: #333;
}

/* Visual Side */
.signup-visual-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 45%;
}

.floating-visual {
  width: 100%;
  max-width: 500px;
  animation: float 8s ease-in-out infinite;
}

/* Responsive Signup */
@media (max-width: 992px) {
  .signup-container {
    flex-direction: column;
  }

  .signup-visual-side {
    max-width: 80%;
    order: -1;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .signup-cards-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .signup-visual-side {
    display: none;
  }

  .card-desc {
    min-height: auto;
  }
}

/* BUSINESS PAGE STYLES */
.business-hero {
  padding: 80px 0;
  background-color: #f8f4f1;
}

.business-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.business-hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
}

.hero-title .text-black {
  color: #1a1a1a;
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-stat-and-button {
  display: flex;
  /* align-items: flex-start; Aligns button top with stat number */
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-stat {
  margin-bottom: 40px;
  flex-shrink: 0;
}

.stat-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--pink);
  display: block;
  line-height: 1;
}

.stat-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.btn-dark {
  background-color: #1a1a1a;
  color: white;
  padding: 10px 40px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.3s;
}

.btn-dark:hover {
  background-color: #333;
}

.business-hero-video {
  flex: 1.2;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #ddd;
  background-image: url('assets/hero-img.png');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  /* Dark overlay */
}

.play-button-circle {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-button-circle:hover {
  transform: scale(1.1);
}

.play-icon {
  font-size: 2rem;
  color: #1a1a1a;
  margin-left: 5px;
}

.video-caption {
  position: absolute;
  bottom: 30px;
  margin-top: 10px;
  color: white;
  text-decoration: underline;
  z-index: 2;
  font-weight: 600;
  font-size: 0.9rem;
  top: 60%;
}


/* Interactive Section */
.business-interactive-section {
  position: relative;
  padding: 100px 0;
  min-height: 600px;
  overflow: hidden;
  text-align: center;
}

.curve-line-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.curve-line-bg svg {
  width: 100%;
  height: 100%;
}

.interactive-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.float-icon {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.float-left {
  left: 5%;
  top: 10%;
  width: 200px;
}

.float-right {
  right: 5%;
  top: 20%;
  width: 200px;
  animation-delay: 2s;
}

.float-icon img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.stars-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  color: #666;
  font-size: 1.5rem;
}

.testimonial-card-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  z-index: 2;
}

.testimonial-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: -20px;
  position: relative;
  z-index: 3;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  background-color: #ccc;
  background-size: cover;
  margin: 0 -10px;
}

.avatar:nth-child(1) {
  background-image: url('assets/trustedbrand/2.png');
}

/* Placeholder */
.avatar:nth-child(3) {
  background-image: url('assets/trustedbrand/3.png');
}

/* Placeholder */

.center-avatar {
  width: 70px;
  height: 70px;
  z-index: 2;
  margin-top: -10px;
  background-image: url('assets/hero-img.png');
  /* Main person */
  background-position: top;
}

.testimonial-speech-bubble {
  background: rgba(255, 240, 245, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 60px 40px 40px;
  border-radius: 20px;
  position: relative;
  border: 1px solid rgba(255, 200, 210, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
}

.speech-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #4a6ee0;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 3px solid white;
  z-index: 4;
}

.testimonial-speech-bubble p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-speech-bubble strong {
  display: block;
  font-weight: 800;
  color: #1a1a1a;
}

/* Stack effect below card */
.card-stack-effect {
  position: absolute;
  bottom: -15px;
  left: 20px;
  right: 20px;
  height: 30px;
  background: #c7387b;
  /* Pink layer 1 */
  border-radius: 0 0 20px 20px;
  z-index: -1;
  opacity: 0.8;
}

.card-stack-effect::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 20px;
  right: 20px;
  height: 30px;
  background: #9d2b6b;
  /* Darker Pink layer 2 */
  border-radius: 0 0 20px 20px;
  z-index: -2;
  opacity: 0.8;
}

.bottom-cta-container {
  margin-top: 80px;
  text-align: center;
}

.btn-outline-wide {
  border: 2px solid #1a1a1a;
  background: transparent;
  color: #1a1a1a;
  padding: 10px 60px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-wide:hover {
  background: #1a1a1a;
  color: white;
}


/* Responsive Business Page */
@media (max-width: 992px) {
  .business-hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .business-hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .interactive-container {
    flex-direction: column;
  }

  .float-icon {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 40px auto;
    width: 140px;
  }

  .float-left,
  .float-right {
    order: -1;
    display: none;
  }

  .float-left,
  .float-right {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .stat-num {
    font-size: 2.5rem;
  }
}

/* DESTINATION STORIES SECTION */

.stories-section {
  background-color: #0f1221;
  color: white;
  padding: 40px 0 100px;
  overflow: hidden;
}

.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.stories-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
}

.stories-nav {
  display: flex;
  gap: 16px;
}

.nav-arrow {
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  color: #1a1a1a;
}

.nav-arrow:hover {
  opacity: 0.8;
}

.stories-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  /* Space for scrollbar if visible */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.stories-carousel::-webkit-scrollbar {
  display: none;
}

.story-card {
  flex-shrink: 0;
  width: 245px;
  /* Adjusted for 4.5 cards */
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #f0f0f0;
  /* Default card bg */
}

.card-content-top {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
  color: #1a1a1a;
}

.story-card small {
  font-weight: 700;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 12px;
  color: inherit;
}

.story-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #444;
}

.watch-video-link,
.read-story-link {
  margin-top: auto;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
}

.watch-video-link:hover,
.read-story-link:hover {
  text-decoration: underline;
}

.play-icon-small {
  background: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  padding-left: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* .read-icon {
  font-size: 1.2rem;
} */


.card-image-bottom {
  height: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Specific Styles */

/* Indigo Card */
.card-indigo {
  background-color: #769b82;
/
}

.card-indigo .card-content-top h3,
.card-indigo .card-content-top small,
.card-indigo .card-content-top p,
.card-indigo .watch-video-link {
  color: #0f2b1d;
}

.card-indigo .play-icon-small {
  color: #769b82;
}

.purple-bg {
  background-color: #4b0082;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-logo-large {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Standard Card (Naked Chips, etc) */
.card-standard {
  background-color: #e6e4e1;
}

.card-standard .card-content-top h3 {
  color: #777;
}

.card-standard .card-content-top h3:first-line {
  color: #1a1a1a;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .stories-title {
    font-size: 1.8rem;
  }
}

/* INDUSTRY UPDATES SECTION */
.updates-section {
  padding: 100px 0;
  background-color: #f8f4f1;
}

.section-title-dark {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: -1px;
}

.updates-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  /* Featured slightly wider */
  gap: 32px;
}

.updates-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.updates-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Common Card Styles */
.update-card-featured,
.update-card-wide,
.update-card-small {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.update-card-featured:hover,
.update-card-wide:hover,
.update-card-small:hover {
  transform: translateY(-5px);
}

/* Featured Card (Left) */
.update-card-featured {
  background-color: #181a2a;
  /* Dark background */
  color: white;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-image {
  height: 300px;
  background-color: #181a2a;
  padding: 24px;
   
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.featured-content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.featured-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #ccc;
}

.read-more-link {
  color: white;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid white;
  width: max-content;
  padding-bottom: 4px;
}

.pink-arrow {
  color: var(--pink);
  font-size: 0.8rem;
}

/* Wide Card (Top Right) */
.update-card-wide {
  background-color: #e6e4e1;
  /* Light gray */
  color: #1a1a1a;
  display: flex;
  align-items: center;
  /* Side by side logo/content */
}

.wide-logo-area {
  width: 40%;
  background-color: white;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.wide-logo-area h4 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.orange-text {
  color: #ffa500;
}

.wide-content {
  width: 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wide-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.wide-content p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #444;
}

.read-more-link-dark {
  color: #1a1a1a;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid #1a1a1a;
  width: max-content;
  padding-bottom: 4px;
}

/* Small Cards (Bottom Right) */
.update-card-small {
  background-color: #e6e4e1;
  color: #1a1a1a;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.update-card-small h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.update-card-small p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #444;
}

/* Responsive Updates */
@media (max-width: 992px) {
  .updates-grid {
    grid-template-columns: 1fr;
  }

  .update-card-wide {
    flex-direction: column;
    align-items: stretch;
  }

  .wide-logo-area {
    width: 100%;
    height: 150px;
  }

  .wide-content {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .updates-row {
    grid-template-columns: 1fr;
  }

  .section-title-dark {
    font-size: 2.2rem;
  }
}