@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;
  transition: 0.3s;
}



@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;
  text-align: left;
}

.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 - Auto-scrolling Marquee Cards */
.news-section {
  background-color: var(--pink);
  overflow: hidden;
  padding: 40px 0 60px;
  position: relative;
}

/* News Navigation Buttons */
.news-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: var(--pink);
}

.news-nav-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.news-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.news-nav-prev {
  left: 20px;
}

.news-nav-next {
  right: 20px;
}

.news-nav-btn svg {
  width: 24px;
  height: 24px;
}

/* Pause animation when nav is used */
.news-cards-track.paused {
  animation-play-state: paused !important;
}

.news-cards-track {
  display: flex;
  width: max-content;
  animation: news-cards-scroll 35s linear infinite;
}

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

.news-cards-slide {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding-right: 24px;
}

.news-card {
  background: white;
  width: 370px;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.news-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}

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

.news-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--pink);
  margin-bottom: 8px;
  text-align: center;
}

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

.news-excerpt {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
  flex-grow: 1;
}

.news-logo {
  max-height: 28px;
  width: auto;
  object-fit: contain;
  margin-top: auto;
}

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

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

/* Responsive adjustments for news cards */
@media (max-width: 768px) {
  .news-section {
    padding: 30px 0 40px;
  }

  .news-nav-btn {
    width: 40px;
    height: 40px;
  }

  .news-nav-prev {
    left: 10px;
  }

  .news-nav-next {
    right: 10px;
  }

  .news-nav-btn svg {
    width: 20px;
    height: 20px;
  }

  .news-cards-slide {
    gap: 16px;
    padding-right: 16px;
  }

  .news-card {
    width: 280px;
    padding: 16px;
  }

  .news-image {
    height: 150px;
  }

  .news-title {
    font-size: 0.9rem;
  }

  .news-excerpt {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .news-card {
    width: 260px;
    padding: 14px;
  }

  .news-image {
    height: 130px;
  }
}

.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;
}

@keyframes float {

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

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

@media (max-width: 768px) {
  .job-bubble {
    padding: 10px 24px;
    font-size: 0.8rem;
  }
  .b4{
    bottom: -5%;
    right:48%
  }
  .b5{
    left: 48%;
    top: 20%;
  }
  .b7{
    left:8%
  }
  .b8{
    left:53%
  }
  .b9{
    right: 4%;
    top:4%
  }
}

/* =========================================
       FAQ SECTION
       ========================================= */
.faq-section {
  padding: 20px 0 100px;
  position: relative;
  background-color: var(--white);
  z-index: 5;
}

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

.faq-visual {
  margin-top: -80px;
  z-index: 10;
  display: flex;
  justify-content: center;
  position: relative;
}

.faq-visual img {
  width: 100%;
  max-width: 450px;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.faq-visual img:hover {
  transform: rotate(0deg) scale(1.02);
}

.faq-content {
  padding-top: 40px;
}

.faq-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--dark);
  text-align: left;
}

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

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px 24px;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: var(--pink);
  box-shadow: 0 5px 15px rgba(255, 107, 129, 0.1);
}

.faq-item[open] {
  border-radius: 12px;
  background: #fff;
  border-color: var(--pink);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

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

.faq-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translate(-1px, -1px);
}

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

.faq-text {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  padding-right: 10px;
}

@media (max-width: 900px) {
  .expansion-section h2 {
    font-size: 2rem;
  }

  .expansion-section h2 span {
    font-size: 1.2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .faq-visual {
    margin-top: -60px;
    order: -1;

  }

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

  .faq-content {
    padding-top: 0;
  }

  .faq-content h2 {
    text-align: center;
  }

  .faq-summary {
    justify-content: center;
    gap: 10px;
  }
}

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

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

  .expansion-section {
    padding-bottom: 120px;
  }
}

/* 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;
  max-height: 500px;
  object-fit: contain;
  transition: all 0.3s ease;
  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: 70px;
  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;
    text-align: center;
  }

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

  .contact-visual {
    width: 100%;
    margin-bottom: 20px;
    /* Reduce padding on mobile to save space */
    /* padding: 10px; */
  }

  .contact-visual img {
    /* Significantly reduce the image size on mobile/tablets 
       so it doesn't dominate the screen above the form */
    max-width: 350px;
    max-height: 300px;
  }

  .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: 600px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-container {
    gap: 30px;
  }

  .contact-visual img {

    max-width: 280px;
    max-height: 250px;
  }

  .role-selectors {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 500px) {
  .form-row {
    flex-direction: column;
  }

  .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 {
  margin-bottom: 24px;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  display: block;
}

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

.footer-socials a {
  color: white;
  /* Pink on white */
  background: transparent;
  border: 2px solid white;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: black;
  font-size: 1.1rem;
  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;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.footer-extra-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-extra-logos img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

#testimonial-text,
#testimonial-author,
#testimonial-avatar {
  transition: opacity 0.5s ease-in-out;
}

.fade-out {
  opacity: 0 !important;
}

.bba-badge {
  text-align: right;
  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 {
    align-items: flex-start;
  }

  .bba-badge {
    text-align: left;
  }
}

/* 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: 44px 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: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-text-pioneer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-text-pioneer h1 {
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #1a1a1a;
  line-height: 1.2;
}

.hero-text-pioneer>span {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
  font-family: serif;
  margin-bottom: 8px;
  display: block;
}

.hero-text-pioneer p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
  max-width: 220px;
}

.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%;
  height: 400px;
  /* Enforce height since video is absolute */
  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;
}

@media (max-width: 768px) {
  .video-placeholder {
    height: 250px;
  }
}

.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: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  text-decoration: underline;
  z-index: 2;
  font-weight: 600;
  font-size: 0.9rem;
}


/* Interactive Section */
.business-interactive-section {
  position: relative;
  padding: 10px 0;
  min-height: 550px;
  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 img {
  width: 100%;
  height: 100%;
  opacity: 0.1;
  object-fit: cover;
}

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

.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;
  object-fit: cover;
  margin: 0 -10px;
}

.center-avatar {
  width: 70px;
  height: 70px;
  z-index: 2;
  margin-top: -10px;
  object-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;
  min-height: 200px;
  /* Ensure height consistency */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Hide sliding elements */
}

.speech-icon {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: auto;
  z-index: 10;
  background: none;
  border: none;
  box-shadow: none;
}

.speech-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-slider {
  width: 100%;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-item {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(50px);
  /* Start slightly below */
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-item.active {
  transform: translateY(-50%);
  /* Center vertically (parent is flex center but absolute needs help if height varies) */
  /* Actually simpler: let's use top 0 and relative if it wasn't absolute. 
     Since they overlap, absolute is best. Let's center via transform */
  top: 0;
  transform: translateY(0);
  position: relative;
  /* Make it take space so parent scales? No, parent has min-height. */
  /* Better approach for stack effect: absolute positioning for all, parent fixed height.
     But height can vary. Let's keep one relative to define height? 
     No, let's just make them absolute and rely on min-height or JS setting height.
     "coming up from stack" implies movement. */
  display: block;
  opacity: 1;
}

/* Redoing animation logic for 'coming up from stack' */
.testimonial-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(100%) scale(0.9);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  top: 0;
}

.testimonial-item.active {
  position: relative;
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

.testimonial-item.exit {
  position: absolute;
  opacity: 0;
  transform: translateY(-50%) scale(0.9);
  z-index: 1;
}

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

.testimonial-item 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;
  }

  .business-hero-video {
    width: 100%;
  }

  .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: 12px;
}

.featured-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

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

.read-more-link {
  margin-top: auto;
  color: var(--pink);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pink-arrow {
  font-size: 0.8rem;
}

/* Wide Card (Right Top) */
.update-card-wide {
  background-color: white;
  display: flex;
  padding: 32px;
  gap: 32px;
  align-items: center;
}

.wide-logo-area {
  flex-shrink: 0;
  width: 140px;
}

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

.orange-text {
  color: #ff6b6b;
  /* Orange/Coral */
}

.wide-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1a1a1a;
}

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

.read-more-link-dark {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Small Cards (Right Bottom) */
.update-card-small {
  background-color: white;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

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

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

/* RESPONSIVE INDUSTRY 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%;
  }

  .featured-image {
    width: 40%;
    height: auto;
    padding: 0;
  }

  .featured-image img {
    border-radius: 0;
  }

  .update-card-featured {
    flex-direction: row;
    height: auto;
  }
}

@media (max-width: 768px) {
  .update-card-featured {
    flex-direction: column;
  }

  .featured-image {
    width: 100%;
    height: 250px;
    padding: 24px;
  }

  .featured-image img {
    border-radius: 12px;
  }

  .update-card-wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .wide-logo-area {
    width: 100%;
    margin-bottom: 10px;
  }

  .curve svg {
    transform: scaleY(0.6);
    /* 60% of original depth */
    transform-origin: bottom center;
  }

  /* Fix for curve hanging from top (Stories bottom) */
  .curve-bottom svg {
    transform-origin: top center;
  }
}

@media (max-width: 600px) {
  .section-title-dark {
    font-size: 2rem;
  }

  .updates-row {
    grid-template-columns: 1fr;
  }
}

/* ==================================
   VIDEO MODAL CAROUSEL STYLES
   ================================== */

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  display: flex;
  opacity: 1;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 95%;
  padding: 30px;
  background: linear-gradient(145deg, #1a1d2e 0%, #0f1221 100%);
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(199, 56, 123, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.video-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.video-modal-close:hover {
  background: var(--pink);
  transform: rotate(90deg);
}

.video-modal-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-right: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.video-carousel-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.video-carousel-arrow:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.1);
}

.video-carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.video-player-container {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.video-player-container video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.video-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.video-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.video-carousel-dot.active {
  background: var(--pink);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(199, 56, 123, 0.6);
}

/* Responsive styles for video modal */
@media (max-width: 768px) {
  .video-modal-content {
    padding: 20px;
    width: 95%;
    max-width: none;
  }

  .video-modal-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .video-carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .video-carousel-wrapper {
    gap: 10px;
  }

  .video-modal-close {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .video-modal-content {
    padding: 15px;
    border-radius: 16px;
  }

  .video-carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .video-modal-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .video-carousel-dots {
    margin-top: 15px;
  }

  .video-carousel-dot {
    width: 10px;
    height: 10px;
  }
}

/* ==================================================
   BLOG DETAIL PAGE STYLES
   ================================================== */

/* Blog Hero / Breadcrumb Section */
.blog-hero {
  background: linear-gradient(135deg, #f8f4f1 0%, #fff6fb 100%);
  padding: 30px 0 20px;
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #666;
}

.blog-breadcrumb a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-breadcrumb a:hover {
  color: var(--dark);
  text-decoration: underline;
}

.blog-breadcrumb .current {
  color: #999;
}

/* Blog Article Section */
.blog-article {
  padding: 40px 0 80px;
  background: #f8f4f1;
}

.blog-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}

/* Main Blog Content */
.blog-main {
  max-width: 800px;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 30px;
}

.blog-category {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.blog-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 24px;
  text-transform: none;
  letter-spacing: -0.5px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.8rem;
  color: #888;
}

.blog-details {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: #666;
}

.blog-details i {
  margin-right: 6px;
  color: var(--pink);
}

/* Featured Image */
.blog-featured-image {
  margin-bottom: 35px;
  border-radius: 16px;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog Body Content */
.blog-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.blog-body p {
  margin-bottom: 24px;
}

.blog-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
}

.blog-intro {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.7;
  border-left: 4px solid var(--pink);
  padding-left: 20px;
  margin-bottom: 30px !important;
}

/* Blockquote */
.blog-quote {
  background: linear-gradient(135deg, var(--pink) 0%, #e04a8d 100%);
  color: white;
  padding: 30px;
  border-radius: 16px;
  margin: 35px 0;
  position: relative;
}

.blog-quote::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.blog-quote p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 15px !important;
  position: relative;
  z-index: 1;
}

.blog-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Blog List */
.blog-list {
  margin: 20px 0 30px 20px;
  padding-left: 20px;
}

.blog-list li {
  margin-bottom: 12px;
  position: relative;
}

.blog-list li::marker {
  color: var(--pink);
}

/* Blog CTA Box */
.blog-cta-box {
  background: linear-gradient(135deg, #0f1221 0%, #1a1f35 100%);
  color: white;
  padding: 35px;
  border-radius: 20px;
  margin: 40px 0;
  text-align: center;
}

.blog-cta-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.blog-cta-box p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px !important;
  font-size: 1rem;
}

.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 56, 123, 0.4);
}

/* Tags Section */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.tag-label {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

.tag {
  background: #f0f0f0;
  color: #555;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s;
}

.tag:hover {
  background: var(--pink);
  color: white;
}

/* Share Section */
.blog-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.share-label {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.twitter {
  background: #1a1a1a;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.email {
  background: var(--pink);
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 20px;
  border-left: 4px solid var(--pink);
}

.author-bio-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-bio-content h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--pink);
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.author-bio-content h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.author-bio-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.author-social a {
  color: var(--pink);
  font-size: 1.1rem;
  transition: color 0.2s;
}

.author-social a:hover {
  color: var(--dark);
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink);
}

/* Related Posts */
.related-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-post {
  display: flex;
  gap: 14px;
  text-decoration: none;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.2s;
}

.related-post:hover {
  background: #f8f4f1;
}

.related-post img {
  width: 70px;
  height: 55px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-post-content h4 {
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
}

.related-date {
  font-size: 0.75rem;
  color: #888;
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, var(--pink) 0%, #e04a8d 100%);
  color: white;
}

.newsletter-widget h3 {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 14px 18px;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form button {
  padding: 14px 18px;
  border: none;
  border-radius: 10px;
  background: var(--dark);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #1a1f35;
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, #0f1221 0%, #1a1f35 100%);
  color: white;
  text-align: center;
}

.cta-widget h3 {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-widget p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

.sidebar-cta-btn {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sidebar-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 56, 123, 0.4);
}

/* More Articles Section */
.more-articles {
  padding: 80px 0;
  background: #f8f4f1;
}

.more-articles h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
  height: 180px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: 24px;
}

.article-category {
  display: inline-block;
  background: rgba(199, 56, 123, 0.1);
  color: var(--pink);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 10px;
}

.article-content p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.article-date {
  font-size: 0.75rem;
  color: #999;
}

/* Responsive Styles for Blog Detail */
@media (max-width: 1024px) {
  .blog-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .newsletter-widget {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .blog-main {
    padding: 28px;
  }

  .blog-title {
    font-size: 1.7rem;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .blog-body {
    font-size: 0.95rem;
  }

  .blog-body h2 {
    font-size: 1.3rem;
  }

  .blog-quote {
    padding: 25px;
  }

  .blog-quote p {
    font-size: 1.05rem;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .newsletter-widget {
    grid-column: span 1;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .more-articles h2 {
    font-size: 1.6rem;
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {
  .blog-article {
    padding: 20px 0 50px;
  }

  .blog-main {
    padding: 20px;
    border-radius: 18px;
  }

  .blog-title {
    font-size: 1.4rem;
  }

  .blog-intro {
    font-size: 1rem;
    padding-left: 15px;
  }

  .blog-cta-box {
    padding: 25px;
  }

  .blog-cta-box h3 {
    font-size: 1.2rem;
  }

  .blog-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .author-bio {
    padding: 20px;
  }

  .author-bio-avatar {
    width: 80px;
    height: 80px;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .more-articles {
    padding: 50px 0;
  }
}

/* Full-width blog layout (no sidebar) */
.blog-article-full .blog-content-wrapper {
  display: block;
}

.blog-main-full {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article-full .blog-meta {
  justify-content: flex-start;
}

.blog-article-full .blog-details {
  margin-top: 0;
}

/* Blog Header Banner */
.blog-header-banner {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-header-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .blog-header-banner {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .blog-header-banner {
    height: 120px;
  }
}



/* Login Page Specific Styles */
        .login-section {
            padding: 100px 0;
            min-height: calc(100vh - 400px);
            display: flex;
            align-items: center;
            background-color: #f8f4f1;
        }

        .login-container {
            max-width: 400px;
            margin: 0 auto;
            padding: 40px;
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .login-header h1 {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .login-header p {
            color: #666;
            font-size: 0.95rem;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
            font-size: 0.9rem;
        }

        .form-group input {
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            background: #f8f8f8;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--pink);
            background: white;
            box-shadow: 0 0 0 3px rgba(199, 56, 123, 0.1);
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 10px 0;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #666;
            cursor: pointer;
        }

        .remember-me input {
            width: 16px;
            height: 16px;
            accent-color: var(--pink);
        }

        .forgot-link {
            color: var(--pink);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .forgot-link:hover {
            text-decoration: underline;
        }

        .btn-login {
            background: var(--dark);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 999px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            /* margin-top: 10px; */
        }

        .btn-login:hover {
            background: #b52c69;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(199, 56, 123, 0.3);
        }

        .signup-link {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 0.9rem;
        }

        .signup-link a {
            color: var(--pink);
            font-weight: 600;
            text-decoration: none;
        }

        .signup-link a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .login-section {
                padding: 60px 20px;
            }

            .login-container {
                padding: 30px;
            }

            .login-header h1 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .login-container {
                padding: 24px;
            }

            .form-options {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
        }