/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main {
  margin: 0 auto;
  min-width: 344px;
  max-width: 768px; /* to keep some responsive media query working */
}

/* Scroll offset for fixed navbar */
section[id] {
  scroll-margin-top: 70px;
}

:root {
  --primary-color: #001688;
  --secondary-color: #ba9f78;
  --blue-1F3A8A: #1f3a8a;
  --blue-CFD5E7: #cfd5e7;
  --red-FF3131: #ff3131;
  --light-blue-DFE6F0: #dfe6f0;
  --text-color: #333;
  --bg-color: #fff;
  --light-bg: #f8f9fa;
  --border-color: #dee2e6;
  --font-poppins: "Poppins", sans-serif;
  --font-prompt: "Prompt", sans-serif;
  --font-futura: "Futura", sans-serif;
  --font-inter: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-arial: Arial, Helvetica, sans-serif;
  --font-primary: var(--font-prompt);
}

/* Language-specific font families */
html.lang-en {
  --font-primary: var(--font-poppins);
}

html.lang-th {
  --font-primary: var(--font-prompt);
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

span b,
p b {
  font-weight: 800;
}

/* Header & Navigation */
.navbar {
  background-color: white;
  width: 100%;
  height: 70px;
  z-index: 1000;
  position: sticky;
  top: 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 32px;
}

.navbar-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-logo a {
  line-height: 0;
}

.navbar-logo-image {
  width: auto;
  height: 60px;
}

@media (max-width: 576px) {
  .navbar-container {
    padding: 0 16px;
  }

  .navbar-logo-image {
    height: 45px;
  }
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.lang-btn:hover {
  opacity: 1;
  background-color: rgba(31, 58, 138, 0.1);
}

.lang-btn.active {
  opacity: 1;
  color: var(--primary-color);
  background-color: rgba(31, 58, 138, 0.1);
}

.lang-divider {
  color: var(--text-color);
  opacity: 0.3;
  font-size: 14px;
}

/* Hero Section */
.hero-wrapper {
  color: white;
  background-color: var(--bg-color);
  text-align: center;
}

.hero-wrapper .hero-content {
  position: relative;
  height: calc(100dvh - 70px); /* minus header */
  padding: 0px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.hero-text-content {
  position: relative;
  z-index: 1;
}

.hero-background-image {
  width: 100%;
  height: 50dvh;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  padding-bottom: 8px;
}

.hero-content .hero-header {
  color: black;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 800;
  position: relative;
  margin-bottom: 16px;
  padding-top: 32px;
  white-space: nowrap;
}

.hero-content .hero-header .hero-header-luxury {
  display: inline-block;
  background-color: #dbeafe;
  color: var(--primary-color);
  padding: 2px 4px;
  transform: rotate(-4deg) translateY(2px);
  margin: 0 4px;
  position: relative;
  z-index: 1;
}

.hero-content .hero-description {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-content .hero-description-text-highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.hero-content .hero-description-text-highlight::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 8px;
  background-image: url("../assets/images/header-highlight-small.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  opacity: 0.9;
}

.app-store-link img,
.google-play-link img {
  height: 45px;
  width: auto;
  border-radius: 10px;
}

.app-store-link.small img,
.google-play-link.small img {
  height: 35px;
  border-radius: 8px;
}

/* Responsive Design - Tablet */
@media (max-height: 849px) or (max-width: 768px) {
  .hero-content .hero-header {
    font-size: 32px;
    padding-top: 16px;
  }

  .hero-content .hero-description {
    font-size: 20px;
  }

  .hero-background-image {
    padding-bottom: 0px;
  }
}

/* Responsive Design - Mobile portrait */
@media (max-width: 576px) {
  .hero-wrapper .hero-content {
    padding-left: clamp(12px, 2.8vw, 16px);
    padding-right: clamp(12px, 2.8vw, 16px);
  }

  .hero-content .hero-header {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
  }

  .hero-content .hero-header .hero-header-luxury {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
  }

  .hero-content .hero-description {
    font-size: clamp(16px, 8.54px + 1.99vw, 20px);
  }

  .hero-background-image {
    min-width: 310px;
  }

  .app-store-link img,
  .google-play-link img {
    height: clamp(35px, 22.5px + 3.90625vw, 45px);
    border-radius: 8px;
  }

  .app-store-link.small img,
  .google-play-link.small img {
    height: clamp(25px, 12.5px + 3.90625vw, 35px);
    border-radius: 6px;
  }
}

/* Responsive Design - Small square screen */
@media (max-height: 709px) and (max-width: 576px) {
  .hero-background-image {
    max-height: clamp(220px, -343.02px + 97.74vh, 350px);
  }
}

/* Responsive Design - Short desktop/tablet, mobile landscape */
@media (max-height: 749px) and (min-width: 577px), (max-height: 576px) {
  .hero-wrapper .hero-content {
    display: grid;
    grid-template-columns: 65% 1fr;
  }

  .hero-content .hero-header {
    padding-top: 0px;
    white-space: normal;
    margin-bottom: 12px;
  }

  .hero-background-image {
    padding-bottom: 0;
    max-width: unset;
    min-width: unset;
    height: 90%;
    max-height: calc(100dvh - 70px - 60px);
  }
}

/* Responsive Design - Mobile landscape */
@media (max-height: 576px) {
  .hero-content .hero-header {
    font-size: clamp(24px, 9.07px + 3.98vh, 32px);
  }

  .hero-content .hero-header .hero-header-luxury {
    font-size: clamp(24px, 9.07px + 3.98vh, 32px);
  }

  .hero-content .hero-description {
    font-size: clamp(14px, 6.54px + 1.99vh, 18px);
  }

  .hero-background-image {
    max-height: calc(100dvh - 70px - 40px);
  }
}

@media (max-width: 374px) {
  .hero-content .hero-header {
    white-space: normal;
  }
}

/* Who Section */
.who-wrapper {
  padding: 32px 16px 16px 16px;
  text-align: center;
}

.who-header {
  width: 100%;
  margin-bottom: 32px;
}

.who-header > h2 {
  width: fit-content;
  background-color: var(--blue-1F3A8A);
  color: white;
  padding: 8px 16px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.who-header-description {
  color: var(--blue-1F3A8A);
  font-size: 36px;
  line-height: 1.3;
  font-family: var(--font-primary);
  font-weight: 700;
}

.who-content-description {
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
}

.who-content-card-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
  box-sizing: border-box;
  overflow: hidden;
}

.who-content-card {
  background-color: #f9fafb;
  padding: 40px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  border: 2px solid #f4f5f7;
}

.who-content-card-number {
  color: var(--blue-1F3A8A);
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  white-space: nowrap;
}

.who-content-card-description {
  color: var(--blue-1F3A8A);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

/* Responsive Design - Who Section */
@media (max-width: 576px) {
  .who-wrapper {
    padding-right: clamp(12px, 2.8vw, 16px);
    padding-left: clamp(12px, 2.8vw, 16px);
  }

  .who-header {
    margin-bottom: 16px;
  }

  .who-header > h2 {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
    margin-bottom: 16px;
  }

  .who-header-description {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
  }

  .who-content-description {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
  }

  .who-content-card-wrapper {
    gap: 16px;
    margin-top: 16px;
  }

  .who-content-card {
    padding: 20px;
  }

  .who-content-card-number {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
  }

  .who-content-card-description {
    font-size: clamp(12px, 8.27px + 1vw, 14px);
  }
}

/* CTA 1 Form */
.cta-1-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-1-image {
  width: 120px;
  margin: 0 auto -18px;
  line-height: 0;
}

.cta-1-form-container {
  background-color: #f9fafb;
  padding: 16px 24px 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--blue-CFD5E7);
}

.cta-1-cta-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
}

.cta-1-title {
  color: var(--blue-1F3A8A);
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 0 8px;
}

.cta-1-title .cta-1-title-highlight {
  color: #fd5051;
}

.cta-1-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.who-form-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--text-color);
  background-color: white;
  outline: none;
  transition: border-color 0.3s ease;
}

.who-form-input:focus {
  border-color: var(--blue-CFD5E7);
}

.who-form-input::placeholder {
  color: #9ca3af;
}

.who-form-button {
  padding: 12px 24px;
  background-color: var(--red-FF3131);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.who-form-button:hover {
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;
}

.who-form-button:active {
  transform: translateY(0);
}

.who-form-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.who-form-message {
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  display: none;
}

.who-form-message.success {
  display: block;
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.who-form-message.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Responsive Design - CTA 1 Form */
@media (max-width: 576px) {
  .cta-1-form-container {
    padding: 12px 16px 24px 16px;
  }

  .cta-1-image {
    width: 100px;
    margin: 0 auto -14px;
  }

  .cta-1-title {
    font-size: clamp(16px, 8.54px + 1.99vw, 20px);
  }

  .cta-1-form {
    gap: 8px;
    border-radius: 10px;
  }

  .who-form-input {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
    padding: 8px 12px;
  }

  .who-form-button {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
    padding: 8px 12px;
  }
}

/* Spanish Latté Section */
.spanish-latte {
  padding: 16px 16px 32px 16px;
  position: relative;
}

.spanish-latte-container {
  background-image: url("../assets/images/isl/ISL background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0 auto;
  padding: 32px;
  border-radius: 48px;
  position: relative;
  overflow: hidden;
}

.spanish-latte-content {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.spanish-latte-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.spanish-latte-title {
  color: white;
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  text-shadow: 0 0 15px #6a4c4f, 0 0 40px #6a4c4f, 0 0 60px #6a4c4f,
    0 0 80px #6a4c4f;
}

.spanish-latte-subtitle {
  color: white;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
}

.spanish-latte-counter {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
}

.counter-number {
  color: white;
  font-family: var(--font-primary);
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  text-align: left;
  text-shadow: 0 0 20px #efdeb3;
}

.counter-text {
  color: white;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  text-shadow: 0 0 20px #efdeb3;
}

.spanish-latte-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.spanish-latte-badge {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  flex: 1;
  backdrop-filter: blur(10px);
  gap: 4px;
}

.spanish-latte-badge img {
  width: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.spanish-latte-badge span {
  color: white;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  vertical-align: middle;
}

.spanish-latte-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: end;
}

.spanish-latte-drink {
  max-height: 420px;
  height: auto;
  width: 100%;
  object-fit: contain;
  z-index: 2;
}

.spanish-latte-mascot {
  position: absolute;
  bottom: -5%;
  right: 0;
  width: 50%;
  height: auto;
  object-fit: contain;
  z-index: 3;
}

/* Responsive Design - Spanish Latté Section */
@media (max-width: 768px) {
  .spanish-latte-container {
    padding: 24px;
    border-radius: 32px;
  }

  .spanish-latte-content {
    gap: 8px;
  }

  .spanish-latte-title {
    font-size: 32px;
  }

  .spanish-latte-subtitle {
    font-size: 23px;
  }

  .spanish-latte-left {
    gap: 24px;
  }

  .counter-number {
    font-size: 46px;
  }

  .counter-text {
    font-size: 16px;
  }

  .spanish-latte-badge img {
    width: 32px;
  }

  .spanish-latte-badge span {
    font-size: 13px;
  }

  .spanish-latte-drink {
    max-height: 360px;
  }
}

@media (max-width: 576px) {
  .spanish-latte {
    padding-right: clamp(12px, 2.8vw, 16px);
    padding-left: clamp(12px, 2.8vw, 16px);
  }

  .spanish-latte-container {
    padding: 16px;
    border-radius: 16px;
  }

  .spanish-latte-content {
    gap: 4px;
  }

  .spanish-latte-left {
    gap: clamp(16px, 2.4vw, 24px);
  }

  .spanish-latte-title {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
    margin-bottom: 8px;
  }

  .spanish-latte-subtitle {
    font-size: clamp(14px, -0.93px + 3.98vw, 22px);
  }

  .counter-number {
    font-size: clamp(28px, 5.61px + 5.97vw, 40px);
  }

  .counter-text {
    font-size: clamp(10px, -1.19px + 2.99vw, 16px);
  }

  .spanish-latte-badges {
    gap: 4px;
  }

  .spanish-latte-badge {
    gap: 4px;
    padding: 6px 3px;
    border-radius: 12px;
    gap: 0px;
  }

  .spanish-latte-badge img {
    width: 26px;
  }

  .spanish-latte-badge span {
    font-size: clamp(9px, 3.36px + 1.5vw, 12px);
  }

  .spanish-latte-drink {
    max-height: 300px;
  }
}

/* CTA 2 Section */
.cta-2 {
  padding: 32px 16px 16px 16px;
}

.cta-2-container {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  background-image: url("../assets/images/cta/CTA 2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}

.cta-2-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 32px 32px 0;
  position: relative;
  z-index: 2;
  height: 100%;
  justify-content: center;
}

.cta-2-text {
  text-align: left;
}

.cta-2-title {
  color: var(--blue-1F3A8A);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-2-subtitle {
  color: var(--blue-1F3A8A);
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.cta-2-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Responsive Design - CTA 2 Section */
@media (max-width: 768px) {
  .cta-2-container {
    grid-template-columns: 39% 61%;
  }
}

@media (max-width: 576px) {
  .cta-2 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .cta-2-right {
    padding-right: clamp(14px, 10.27px + 1vw, 16px);
    font-size: clamp(14px, 10.27px + 1vw, 16px);
  }

  .cta-2-title {
    font-size: clamp(21px, 7.94px + 3.48vw, 28px);
    margin-bottom: 8px;
  }

  .cta-2-subtitle {
    font-size: clamp(14px, 10.27px + 1vw, 16px);
  }

  .cta-2-form {
    max-width: 100%;
    gap: 8px;
  }
}

/* Videos Section */
.videos {
  background-color: white;
  padding: 32px 16px 16px 16px;
}

.videos-header {
  text-align: center;
  margin-bottom: 32px;
}

.videos-header h2 {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.videos-carousel-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.videos-swiper {
  width: 100%;
  padding: 20px 0 40px;
}

.video-card {
  background-color: #000;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  aspect-ratio: 9 / 16;
  position: relative;
}

.video-card .video-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Swiper Customization */
.videos-swiper {
  overflow: visible;
}

.videos-swiper .swiper-wrapper {
  display: flex;
}

.videos-swiper .swiper-slide {
  width: 280px;
  height: auto;
  flex-shrink: 0;
}

/* Responsive Design - Videos Section */
@media (max-width: 576px) {
  .videos {
    padding-left: 0px;
    padding-right: 0px;
  }

  .videos-header {
    margin-bottom: 16px;
  }

  .videos-header h2 {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
    padding-right: clamp(12px, 2.8vw, 16px);
    padding-left: clamp(12px, 2.8vw, 16px);
  }

  .videos-swiper .swiper-slide {
    width: 160px;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: white;
  padding: 32px 16px 32px 16px;
  margin: 0 auto;
}

.why-choose-us-header {
  text-align: center;
  margin-bottom: 32px;
}

.why-choose-us-header h2 {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

.why-choose-us-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-choose-us-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.why-choose-us-badge {
  background-color: #dbeafe;
  color: var(--primary-color);
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
  font-family: var(--font-primary);
  font-weight: 700;
}

.why-choose-us-item-title {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.why-choose-us-item-description {
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 16px 0;
}

.why-choose-us-cta {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.why-choose-us-cta:hover {
  color: var(--blue-1F3A8A);
}

.why-choose-us-app-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.app-store-link,
.google-play-link {
  display: inline-flex;
}

.why-choose-us-item-image {
  position: relative;
  overflow: hidden;
  box-sizing: content-box;
}

.why-choose-us-item-image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.usp1 {
  aspect-ratio: 1 / 1;
}

.usp1 img {
  object-position: top;
}

/* Specific fix for USP 2 image cropping */
.usp2 {
  aspect-ratio: 1 / 1;
  margin-top: -16px;
  margin-bottom: -16px;
}

/* Responsive Design - Why Choose Us Section */
@media (max-width: 768px) {
  .why-choose-us-content {
    gap: 32px;
  }

  .why-choose-us-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
  }

  .why-choose-us-item-content {
    text-align: center;
  }

  .why-choose-us-item-content > *:last-child {
    margin-bottom: 0px;
  }

  .why-choose-us-item.reverse {
    flex-direction: column-reverse;
  }

  .why-choose-us-item-image {
    max-width: min(576px, 55dvw);
  }

  .why-choose-us-item-image img {
    border-radius: 16px;
  }

  .why-choose-us-app-links {
    justify-content: center;
  }

  .why-choose-us-item-description {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .why-choose-us,
  .why-choose-us-item-image {
    padding-right: clamp(12px, 2.8vw, 16px);
    padding-left: clamp(12px, 2.8vw, 16px);
    min-width: min(100%, 350px);
  }

  .why-choose-us-header {
    margin-bottom: 16px;
  }

  .why-choose-us-header h2 {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
  }

  .why-choose-us-item-title {
    font-size: clamp(18px, 6.81px + 2.99vw, 24px);
    margin-bottom: 8px;
  }

  .why-choose-us-item-description {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
  }

  .why-choose-us-badge {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
  }
}

/* App Section */
.app {
  background-image: url("../assets/images/features/ZUS APP background.webp");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.app-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(85px, calc(-65px + 26vw), 135px);
}

.app-header {
  text-align: center;
  color: white;
  height: 28vw;
  min-height: 105px;
  max-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.app-header-main {
  font-family: var(--font-primary);
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
  color: white;
}

.app-header-title {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  white-space: nowrap;
}

.app-header-subtitle {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: white;
  opacity: 0.95;
  margin: 0;
}

.app-content {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 24px;
}

.app-features-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.app-features-image {
  width: 100%;
  height: 100%;
  max-width: min(15vw, 130px);
  object-fit: contain;
  display: block;
}

.app-image {
  width: 70%;
  height: auto;
  display: block;
}

/* Responsive Design - App Section */
@media (max-width: 768px) {
  .app-header-main {
    font-size: 38px;
  }

  .app-header-title {
    font-size: 28px;
  }

  .app-header-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .app {
    padding: clamp(12px, 2.8vw, 16px);
  }

  .app-content {
    gap: 8px;
  }

  .app-container {
    gap: clamp(65px, -0.28px + 17.41vw, 100px);
  }

  .app-header-main {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
  }

  .app-header-title {
    font-size: clamp(18px, 6.81px + 2.99vw, 24px);
    line-height: 1;
  }

  .app-header-subtitle {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
  }

  .app-features-image {
    min-width: 60px;
  }
}

/* Menu Selections Section */
.menu-selections {
  background-color: white;
  padding: 32px 16px 16px 16px;
}

.menu-selections-container {
  width: 100%;
}

.menu-selections-title {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.menu-selections-subtitle {
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}

.menu-selection-card {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  flex: 0 0 auto;
}

.menu-selection-image {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-selection-image img {
  height: auto;
  width: 30dvw;
  max-width: 150px;
  min-width: 100px;
  object-fit: contain;
}

.menu-selection-name {
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.menu-selections-tagline {
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 20px;
  text-align: center;
  margin-top: 8px;
}

/* Responsive Design - Menu Selections Section */
@media (max-width: 576px) {
  .menu-selections {
    padding-left: 0px;
    padding-right: 0px;
  }

  .menu-selections-title {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
    padding-right: clamp(12px, 2.8vw, 16px);
    padding-left: clamp(12px, 2.8vw, 16px);
  }

  .menu-selections-subtitle {
    font-size: clamp(14px, 10.27px + 1vw, 16px);
    margin-bottom: 16px;
  }

  .menu-selection-card {
    padding: 0 12px;
  }

  .menu-selection-name {
    font-size: 14px;
  }

  .menu-selections-tagline {
    font-size: clamp(14px, 10.27px + 1vw, 16px);
    padding-right: clamp(12px, 2.8vw, 16px);
    padding-left: clamp(12px, 2.8vw, 16px);
    margin-top: 0;
  }
}

/* Reviews Section */
.reviews {
  background-color: white;
  padding: 32px 16px 16px 16px;
}

.reviews > *:last-child {
  margin-bottom: 0px;
}

.reviews-header {
  text-align: center;
}

.reviews-header-title {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}

.reviews-content {
  text-align: center;
  margin-bottom: 16px;
}

.reviews-content-title {
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0px 16px;
  margin: 0 auto;
}

.review-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Responsive Design - Reviews Section */
@media (max-width: 576px) {
  .reviews {
    padding-right: clamp(12px, 2.8vw, 16px);
    padding-left: clamp(12px, 2.8vw, 16px);
  }
  .reviews-header {
    margin-bottom: 16px;
  }

  .reviews-header-title {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
  }

  .reviews-content-title {
    font-size: clamp(14px, 10.27px + 1vw, 16px);
    margin-bottom: 16px;
  }

  .reviews-grid {
    gap: 8px;
    padding: 0;
  }
}

/* Outlets Section */
.outlets {
  background-color: white;
  padding: 32px 16px 16px 16px;
}

.outlets-header {
  text-align: center;
}

.outlets-header-title {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}

.outlets-header-description {
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
}

.outlet-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.outlets-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 800px;
  margin: 32px auto 0;
  padding: 0;
}

.outlets-list-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.outlet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f4f5f9;
  border-radius: 12px;
  padding: 10px 16px;
}

.outlet-pin {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.outlet-name {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.outlets-footer {
  width: 100%;
  max-width: 800px;
  margin-top: 14px;
  background-color: #f4f5f9;
  border-radius: 12px;
  padding: 10px 16px;
}

.outlets-footer-text {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

/* Responsive Design - Outlets Section */
@media (max-width: 576px) {
  .outlets {
    padding-right: clamp(12px, 2.8vw, 16px);
    padding-left: clamp(12px, 2.8vw, 16px);
  }

  .outlets-header-title {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
  }

  .outlets-header-description {
    font-size: clamp(14px, 10.27px + 1vw, 16px);
    margin-bottom: 16px;
  }

  .outlets-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 20px auto 0px;
    gap: 10px;
  }

  .outlets-list-column {
    gap: 10px;
  }

  .outlet-item {
    padding: 10px 12px;
    gap: 8px;
  }

  .outlet-pin {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
  }

  .outlet-name {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
  }

  .outlets-footer {
    margin-top: 10px;
    padding: 10px 12px;
  }

  .outlets-footer-text {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
  }
}

/* CTA 3 Section */
.cta-3 {
  padding: 32px 16px 16px 16px;
}

.cta-3-container {
  display: grid;
  grid-template-columns: 40% 1fr;
  align-items: stretch;
  gap: 16px;
  margin: 0 auto;
}

.cta-3-header {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.cta-3-left {
  width: 100%;
  min-height: 300px;
}

.cta-3-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-3-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  justify-content: center;
  max-width: 600px;
}

.cta-3-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-3-headline {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 8px;
}

.cta-3-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Responsive Design - CTA 3 Section */
@media (max-width: 576px) {
  .cta-3 {
    padding-right: clamp(12px, 2.8vw, 16px);
    padding-left: clamp(12px, 2.8vw, 16px);
  }

  .cta-3-container {
    grid-template-columns: 45% 1fr;
    gap: 12px;
  }

  .cta-3-header {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
    margin-bottom: 16px;
  }

  .cta-3-left {
    min-height: 250px;
  }

  .cta-3-right {
    gap: 24px;
  }

  .cta-3-text {
    gap: 4px;
  }

  .cta-3-headline {
    font-size: clamp(14px, 10.27px + 1vw, 16px);
  }

  .cta-3-form {
    gap: 8px;
  }
}

/* CTA 4 Section */
.cta-4 {
  padding: 32px 16px 16px 16px;
}

.cta-4-container {
  display: grid;
  grid-template-columns: 40% 1fr;
  align-items: stretch;
  gap: 16px;
  margin: 0 auto;
}

.cta-4-left {
  width: 100%;
}

.cta-4-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-4-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
  max-width: 600px;
}

.cta-4-badge {
  width: fit-content;
}

.cta-4-badge h2 {
  background-color: var(--blue-1F3A8A);
  color: white;
  display: inline-block;
  padding: 8px 16px;
  margin: 0;
  font-size: 16px;
  line-height: 1;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: var(--font-primary);
}

.cta-4-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-4-headline {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}

.cta-3-subheadline,
.cta-4-subheadline {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.cta-3-subheadline_highlight,
.cta-4-subheadline_highlight {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}

.cta-4-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Responsive Design - CTA 4 Section */
@media (max-width: 576px) {
  .cta-4 {
    padding-right: clamp(12px, 2.8vw, 16px);
    padding-left: clamp(12px, 2.8vw, 16px);
  }

  .cta-4-container {
    grid-template-columns: 45% 1fr;
    gap: 12px;
  }

  .cta-4-right {
    gap: 12px;
  }

  .cta-4-text {
    gap: 4px;
  }

  .cta-4-badge h2 {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
  }

  .cta-4-headline {
    font-size: clamp(14px, 10.27px + 1vw, 16px);
  }

  .cta-3-subheadline,
  .cta-4-subheadline {
    font-size: clamp(14px, 10.27px + 1vw, 16px);
  }

  .cta-3-subheadline_highlight,
  .cta-4-subheadline_highlight {
    font-size: clamp(21px, 7.94px + 3.48vw, 28px);
  }

  .cta-4-form {
    gap: 8px;
  }
}

/* Last Chance Section */
.last-chance {
  background-color: #253a86;
  padding: 32px 16px 32px 16px;
  text-align: center;
  position: relative;
}

.last-chance-banner {
  margin-bottom: 30px;
}

.last-chance-banner-title {
  display: inline-block;
  background-color: var(--red-FF3131);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.last-chance-content {
  max-width: 800px;
  margin: 0 auto;
}

.last-chance-headline {
  color: white;
  font-family: var(--font-primary);
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 32px;
}

.last-chance-subheadline {
  color: white;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 32px;
}

.last-chance-subheadline-highlight {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.last-chance-form-container {
  background-color: white;
  border-radius: 16px;
  padding: 20px 16px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.last-chance-form {
  display: flex;
  gap: 12px;
}

.last-chance-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 16px;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--text-color);
  background-color: #f9fafb;
  outline: none;
  transition: background-color 0.3s ease;
}

.last-chance-input:focus {
  background-color: #f9fafb;
}

.last-chance-input::placeholder {
  color: #9ca3af;
}

.last-chance-button {
  padding: 14px 32px;
  background-color: #253a86;
  color: white;
  border: none;
  border-radius: 16px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.last-chance-button:hover {
  background-color: var(--blue-1F3A8A);
}

.last-chance-button:active {
  transform: translateY(0);
}

.last-chance-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.last-chance-button-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.last-chance-button-loading i {
  font-size: 16px;
}

/* Responsive Design - Last Chance Section */
@media (max-width: 576px) {
  .last-chance-banner-title {
    font-size: clamp(12px, 8.27px + 1vw, 14px);
    padding: 6px 20px;
  }

  .last-chance-headline {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
  }

  .last-chance-subheadline {
    font-size: clamp(13px, 9.27px + 1vw, 15px);
  }

  .last-chance-form-container {
    padding: 20px 16px;
  }

  .last-chance-form {
    flex-direction: row;
    gap: 12px;
  }

  .last-chance-input {
    font-size: clamp(12px, 8.27px + 1vw, 14px);
    padding: 12px 18px;
  }

  .last-chance-button {
    font-size: clamp(12px, 8.27px + 1vw, 14px);
    padding: 12px 12px;
    width: fit-content;
  }
}

/* FAQ Section */
.faq {
  padding: 32px 16px 32px 16px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
}

.faq-header-title {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 32px;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 16px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-chevron {
  font-size: 16px;
  margin-left: 16px;
  display: inline-block;
}

.faq-chevron i {
  transition: none;
}

.faq-answer {
  background-color: #e8e8e8;
  padding: 24px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design - FAQ Section */
@media (max-width: 576px) {
  .faq {
    padding-right: clamp(12px, 2.8vw, 16px);
    padding-left: clamp(12px, 2.8vw, 16px);
  }

  .faq-header-title {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
    margin-bottom: 16px;
  }

  .faq-question {
    font-size: clamp(14px, 10.27px + 1vw, 16px);
    padding: 12px;
  }

  .faq-answer {
    padding: 12px;
  }

  .faq-answer p {
    font-size: clamp(12px, 8.27px + 1vw, 14px);
  }
}

/* Footer */
.footer {
  background-color: var(--light-blue-DFE6F0);
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.footer-follow-us-text {
  color: #333;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 0;
}

.footer-icon-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.footer-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-social-link:hover {
  transform: scale(1.05);
}

.footer-icon-container i {
  font-size: 36px;
  color: #7393ba;
  transition: color 0.3s ease;
  line-height: 1;
}

.footer-social-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #7393ba;
  transition: color 0.3s ease;
}

.footer-social-link:hover i,
.footer-social-link:hover .footer-social-text {
  color: #5a7ba0;
}

/* Responsive Design - FAQ Section */
@media (max-width: 576px) {
  .footer {
    height: 90px;
  }

  .footer-icon-container {
    gap: 16px;
  }

  .footer-icon-container i {
    font-size: clamp(24px, 9.07px + 3.98vw, 32px);
  }

  .footer-social-text {
    font-size: clamp(12px, 8.27px + 1vw, 14px);
  }
}
