/* =========================================================
   Valmo Landing Page Clone - styles.css
   ========================================================= */

:root {
  --color-primary: #092d5e;
  --color-primary-dark: #0c1421;
  --color-primary-light: #092c5ea0;
  --color-secondary: #61eeff;
  --color-light: #ffffff;
  --color-dark: #111111;
  --color-gray-lighter: #cecede;
  --color-gray-light: #565656;
  --color-success: #038d63;
  --color-danger: #e11900;
  --color-warning: #ee7212;
  --color-bg-input: #eaeaea;
  --color-text-input: #666666;
  --color-font-primary: #353543;
  --color-modal-blur: #00000080;
  --color-footer-text: #738195;

  --font-lexend: "Lexend", "Lexend Fallback", sans-serif;
}

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

html, body {
  max-width: 100vw;
  min-height: 100vh;
  font-family: var(--font-lexend);
  color: var(--color-font-primary);
  background: #fff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

/* =========================================================
   Layout container
   ========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  font-family: var(--font-lexend);
  font-weight: 400;
  font-size: 1rem;
  background-color: var(--color-primary);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  color: var(--color-light);
  list-style: none;
  gap: 0;
}

.nav-menu li a {
  margin-right: 2rem;
  text-decoration: none;
  color: #fff;
  transition: color 0.2s ease;
}

.nav-menu li:last-child a {
  margin-right: 0;
}

.nav-menu li a:hover,
.nav-link.is-selected {
  color: var(--color-secondary);
}

.menu-icon {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media only screen and (max-width: 800px) {
  .header {
    border-radius: 0 0 8px 8px;
  }
  .header.active-mobile {
    position: absolute;
    width: 100%;
  }
  .menu-icon {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
    z-index: 5;
  }
  .navbar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    padding-block: 0.6rem;
    align-items: stretch;
  }
  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-menu.is-open {
    display: flex;
    max-height: 400px;
    padding-bottom: 2rem;
  }
  .nav-menu li a {
    margin-right: 0;
  }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-lexend);
  border-radius: 4px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.btn-primary:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background: #fff;
  color: var(--color-primary);
}

.btn-sm {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
}

.btn-md {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

/* =========================================================
   Landing / Hero
   ========================================================= */
.landing {
  background: #fff;
}

.landing-gradient {
  background: linear-gradient(90deg, #2bc0e4 0%, #eaecc6 100%);
  min-height: 60vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.landing-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.landing-left {
  width: 52%;
  height: 100%;
  display: flex;
  flex: 1 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  min-height: 60vh;
  padding-block: 3rem;
}

.landing-left h4 {
  color: #272829;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.landing-left .highlight {
  color: var(--color-primary);
}

.landing-subtext {
  color: #272829;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-light);
}

.market-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 0);
}

.market-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 800px) {
  .landing-gradient {
    min-height: auto;
  }
  .landing-left {
    width: 100%;
    min-height: auto;
    padding-block: 3rem 2rem;
  }
  .landing-left h4 {
    font-size: 1.75rem;
  }
  .landing-subtext {
    max-width: 100%;
  }
  .hero-btns .btn {
    flex: 1;
    text-align: center;
  }
  .market-background {
    position: relative;
    width: 100%;
    height: 240px;
    clip-path: none;
    -webkit-clip-path: none;
  }
}

@media only screen and (max-width: 480px) {
  .landing-left {
    padding-block: 2rem 1.5rem;
    gap: 1.25rem;
  }
  .landing-left h4 {
    font-size: 1.35rem;
  }
  .landing-subtext {
    font-size: 0.95rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-btns .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
  .market-background {
    height: 180px;
  }
}

/* =========================================================
   Stats section
   ========================================================= */
.stats-container {
  position: relative;
  background-color: var(--color-primary);
  z-index: 1;
}

.stats-description {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stats-description .details-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--color-light);
  padding-top: 3rem;
}

.stats-description .details-desc {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 300;
  width: 80%;
  color: var(--color-light);
  padding-bottom: 11rem;
}

.stats-card-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(9, 45, 94, 0.18);
  position: absolute;
  bottom: -4.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1100px;
  z-index: 5;
  overflow: hidden;
}

.stats-card-header {
  padding: 2rem 2rem 0;
  text-align: center;
}

.stats-card-header h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-card-header p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-gray-light);
  margin: 0;
}

.stats-card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(9, 45, 94, 0.12), transparent);
  margin: 1.25rem 2rem;
}

.stats-card-body {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 1.5rem 2rem;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
  padding: 0.5rem;
}

.stats-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats-icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.stats-details h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0c1421;
  margin: 0;
  line-height: 1.1;
}

.stats-details p {
  color: var(--color-gray-light);
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0.15rem 0 0;
}

.stats-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  flex-shrink: 0;
}

@media only screen and (max-width: 1000px) {
  .stats-card-body {
    flex-wrap: wrap;
    gap: 1rem 0;
    padding-bottom: 1.5rem;
  }
  .stats-item {
    flex: 1 0 45%;
  }
  .stats-divider {
    display: none;
  }
}

@media only screen and (max-width: 800px) {
  .stats-container {
    position: static;
    padding-inline: 0;
  }
  .stats-description .details-desc {
    width: 100%;
  }
  .stats-description .details-heading {
    font-size: 1.25rem;
    padding-top: 2rem;
  }
  .stats-description .details-desc {
    padding-bottom: 2rem;
    font-size: 1rem;
  }
  .stats-card-container {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 20px rgba(9, 45, 94, 0.1);
  }
  .stats-card-header {
    padding: 1.5rem 1.5rem 0;
  }
  .stats-card-header h4 {
    font-size: 1rem;
  }
  .stats-card-header p {
    font-size: 0.8rem;
  }
  .stats-card-divider {
    margin: 1rem 1.5rem;
  }
  .stats-card-body {
    padding: 0 1rem 1.25rem;
    gap: 1rem;
  }
  .stats-item {
    flex: 1 0 44%;
    justify-content: flex-start;
    padding: 0.25rem;
  }
  .stats-icon-wrap {
    width: 42px;
    height: 42px;
  }
  .stats-icon-wrap img {
    width: 22px;
    height: 22px;
  }
  .stats-details h4 {
    font-size: 1.3rem;
  }
  .stats-details p {
    font-size: 0.78rem;
  }
}

@media only screen and (max-width: 480px) {
  .stats-card-header {
    padding: 1.25rem 1rem 0;
  }
  .stats-card-divider {
    margin: 0.75rem 1rem;
  }
  .stats-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem 1rem;
  }
  .stats-item {
    flex: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
  }
  .stats-icon-wrap {
    width: 36px;
    height: 36px;
  }
  .stats-icon-wrap img {
    width: 18px;
    height: 18px;
  }
  .stats-details h4 {
    font-size: 1.1rem;
  }
  .stats-details p {
    font-size: 0.7rem;
  }
  .stats-description .details-heading {
    font-size: 1.1rem;
    padding-inline: 1rem;
  }
  .stats-description .details-desc {
    font-size: 0.9rem;
    padding-inline: 1rem;
  }
}

/* =========================================================
   Aim section — Centered value card on dark bg
   ========================================================= */
.aim-container {
  background: var(--color-primary);
  padding-block: 10rem 5rem;
  position: relative;
}

.aim-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.aim-card {
  background: #fff;
  border-radius: 20px;
  padding: 3.5rem 3rem;
  max-width: 800px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.aim-tag {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.aim-card h4 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--color-primary);
  line-height: 1.25;
}

.aim-card p {
  margin: 0 0 1rem;
  color: #272829;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
}

.aim-card p:last-of-type {
  margin-bottom: 0;
}

.aim-card .btn-wrap {
  margin-top: 1.5rem;
}

@media only screen and (max-width: 800px) {
  .aim-container {
    padding-block: 7rem 3rem;
  }
  .aim-card {
    padding: 2rem 1.5rem;
  }
  .aim-card h4 {
    font-size: 1.4rem;
  }
  .aim-card p {
    font-size: 0.95rem;
  }
}

@media only screen and (max-width: 480px) {
  .aim-container {
    padding-block: 5rem 2rem;
  }
  .aim-card {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }
  .aim-card h4 {
    font-size: 1.15rem;
  }
  .aim-card p {
    font-size: 0.85rem;
  }
  .aim-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
}

/* =========================================================
   Delivery partner sections
   ========================================================= */
.partners-section {
  background: #fff;
}

.delivery-partners {
  padding-top: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1.5rem;
  position: relative;
}

.delivery-partners.reverse {
  flex-direction: row-reverse;
}

.delivery-partners:last-of-type {
  padding-bottom: 5rem;
}

.delivery-image-wrap {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
  flex: 1 0 45%;
  border-radius: 32px;
  background: #f3f4f6;
}

.delivery-image-wrap img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 32px;
}

.delivery-desc-wrap {
  width: 100%;
  background-color: #fff;
  flex: 1 0 45%;
  position: relative;
  display: flex;
  justify-content: center;
}

.delivery-desc-card {
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--color-light);
  width: 100%;
  box-sizing: border-box;
}

.delivery-desc-card h4 {
  margin: 0;
  color: #272829;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.franchise-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.franchise-step .step-num {
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.franchise-step h4 {
  margin: 0;
}

.delivery-desc-card ul {
  color: #292929;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  margin-block: 1rem;
  padding-left: 2.5rem;
  list-style: disc;
}

.delivery-desc-card ul li {
  margin-bottom: 0.5rem;
}

.button-div {
  margin-top: 2rem;
}

/* =========================================================
   Franchise Benefits Grid
   ========================================================= */
.benefits-section {
  padding-block: 5rem;
  background: #f8feff;
}

.benefits-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.benefits-header h2 {
  color: var(--color-primary);
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.benefits-header p {
  color: #272829;
  font-size: 1.125rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.benefit-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.benefit-card p {
  flex: 1;
  color: #292929;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.benefit-card:hover {
  box-shadow: 0 8px 32px rgba(9, 45, 94, 0.1);
  transform: translateY(-4px);
}

.benefit-card img {
  margin: 0 auto 1.5rem;
  width: 56px;
  height: 56px;
}

.benefit-card h4 {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

@media only screen and (max-width: 800px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .benefits-header h2 {
    font-size: 1.5rem;
  }
  .benefits-header p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .benefits-section {
    padding-block: 3rem;
  }
  .benefits-header {
    padding: 0 1rem 2rem;
  }
  .benefits-header h2 {
    font-size: 1.25rem;
  }
  .benefits-header p {
    font-size: 0.88rem;
  }
  .benefits-grid {
    padding: 0 1rem;
    gap: 1rem;
  }
  .benefit-card {
    padding: 1.5rem 1.25rem;
  }
  .benefit-card h4 {
    font-size: 1.05rem;
  }
  .benefit-card p {
    font-size: 0.85rem;
  }
  .benefit-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
}

/* =========================================================
   Franchise Enquiry Form
   ========================================================= */
.form-section {
  padding-block: 5rem;
  background: var(--color-primary);
}

.form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.form-left {
  flex: 1 0 45%;
  color: var(--color-light);
}

.form-left h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.form-left p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 500px;
}

.form-left .highlight {
  color: var(--color-secondary);
}

.form-left .form-usp {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.form-left .form-usp img {
  flex-shrink: 0;
  margin-top: 2px;
}

.form-left .form-usp p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}

.form-card {
  flex: 1 0 48%;
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.form-card h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.form-card .form-subtitle {
  color: var(--color-gray-light);
  font-size: 0.9rem;
  font-weight: 300;
  margin: 0 0 1.5rem;
}

.franchise-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.franchise-form .form-row {
  display: flex;
  gap: 1rem;
}

.franchise-form .form-row > * {
  flex: 1 0 48%;
}

.franchise-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #272829;
  font-size: 0.85rem;
  font-weight: 500;
}

.franchise-form label sup {
  color: var(--color-danger);
}

.franchise-form input,
.franchise-form select,
.franchise-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 4px;
  background: var(--color-bg-input);
  font-family: var(--font-lexend);
  font-size: 0.825rem;
  font-weight: 400;
  color: #272829;
  outline: none;
  resize: none;
  box-sizing: border-box;
  transition: 0.2s ease;
}

.franchise-form input:focus,
.franchise-form select:focus,
.franchise-form textarea:focus {
  box-shadow: 0 0 0 2px var(--color-secondary);
}

.franchise-form input::placeholder,
.franchise-form textarea::placeholder {
  color: #272829;
  opacity: 0.5;
  font-family: var(--font-lexend);
}

.franchise-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}

.franchise-form .btn-submit {
  background: var(--color-primary);
  color: var(--color-light);
  font-family: var(--font-lexend);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-top: 0.5rem;
}

.franchise-form .btn-submit:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.form-card .form-consent {
  color: #8e96a3;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0.75rem 0 0;
}

#dadmin-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

@media only screen and (max-width: 800px) {
  .form-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .form-left {
    flex: none;
    width: 100%;
  }
  .form-left h2 {
    font-size: 1.5rem;
  }
  .form-card {
    flex: none;
    width: 100%;
    padding: 1.5rem;
  }
  .franchise-form .form-row {
    flex-direction: column;
    gap: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .form-section {
    padding-block: 3rem;
  }
  .form-wrapper {
    padding: 0 1rem;
  }
  .form-left h2 {
    font-size: 1.25rem;
  }
  .form-left p {
    font-size: 0.9rem;
  }
  .form-left .form-usp p {
    font-size: 0.85rem;
  }
  .form-card {
    padding: 1.25rem;
  }
  .form-card h3 {
    font-size: 1.15rem;
  }
  .form-card .form-subtitle {
    font-size: 0.8rem;
  }
  .franchise-form input,
  .franchise-form select,
  .franchise-form textarea {
    font-size: 0.8rem;
    padding: 0.7rem 0.85rem;
  }
  .franchise-form .btn-submit {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}

@media only screen and (max-width: 800px) {
  .delivery-partners {
    padding-top: 3rem;
    flex-direction: column;
    gap: 0;
  }
  .delivery-partners.reverse {
    flex-direction: column;
  }
  .delivery-partners ul {
    font-size: 1.125rem;
  }
  .delivery-image-wrap {
    margin: 0;
    border-radius: 32px 32px 0 0;
    width: 100%;
  }
  .delivery-image-wrap img {
    height: 240px;
    border-radius: 32px 32px 0 0;
  }
  .delivery-desc-card {
    border-radius: 0 0 24px 24px;
    padding-inline: 1.5rem;
    padding-block: 1.5rem;
  }
  .button-div {
    margin-top: 2rem;
    padding-inline: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .delivery-partners {
    padding-top: 2rem;
    padding-inline: 0.5rem;
  }
  .delivery-image-wrap img {
    height: 180px;
  }
  .delivery-desc-card {
    padding-inline: 1rem;
    padding-block: 1.25rem;
  }
  .delivery-desc-card h4 {
    font-size: 1.1rem;
  }
  .delivery-desc-card ul {
    font-size: 0.85rem;
    padding-left: 1.5rem;
  }
  .franchise-step {
    gap: 0.75rem;
  }
  .franchise-step .step-num {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .partners-section {
    padding-inline: 0;
  }
  .button-div {
    margin-top: 1.25rem;
  }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background-color: var(--color-primary);
  color: #fff;
}

.footer-container {
  display: flex;
  padding-block: 4rem;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo {
  flex-shrink: 0;
}

.org-details {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
}

.org-details-sub {
  display: flex;
  flex-direction: column;
  flex: 1 1 60%;
}

.footer h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.825rem;
  color: var(--color-light);
  font-style: normal;
  line-height: normal;
}

.more-info {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  color: var(--color-footer-text);
}

.more-info-sub {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 1 0 45%;
}

.valmo-contact-info {
  padding-left: 0;
  color: var(--color-footer-text);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.valmo-contact-info a {
  text-decoration: none;
  color: var(--color-footer-text);
  cursor: pointer;
}

.valmo-contact-info a:hover {
  color: var(--color-secondary);
}

.legal-container {
  width: 30%;
}

.legal-container h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.825rem;
}

.legal-container h6 {
  padding: 0;
  color: var(--color-light);
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0.75rem;
  cursor: pointer;
  text-decoration: none;
}

.legal-container h6 a {
  text-decoration: none;
  color: #fff;
}

.legal-container h6 a:hover {
  color: var(--color-secondary);
}

.disclaimer {
  font-weight: 300;
  padding: 0.5rem 1.5rem;
}

.disclaimer-text {
  color: var(--color-footer-text);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
}

.copyright-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 1.5rem;
}

.copyright {
  color: var(--color-light);
  font-size: 1rem;
  font-weight: 300;
  line-height: normal;
}

@media only screen and (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    padding-block: 2rem;
  }
  .org-details {
    flex-direction: column;
    width: 90%;
  }
  .more-info {
    flex-direction: column;
    gap: 1rem;
  }
  .footer h4 {
    font-size: 1rem;
  }
  .legal-container {
    width: 90%;
  }
  .legal-container h4 {
    font-size: 1.125rem;
  }
  .legal-container h6 {
    font-weight: 300;
  }
  .footer-logo {
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .footer-container {
    padding-inline: 1rem;
  }
  .footer h4 {
    font-size: 0.9rem;
  }
  .valmo-contact-info {
    font-size: 0.72rem;
  }
  .legal-container h4 {
    font-size: 0.9rem;
  }
  .legal-container h6 {
    font-size: 0.85rem;
  }
  .disclaimer {
    padding: 0.5rem 1rem;
  }
  .disclaimer-text {
    font-size: 0.72rem;
  }
  .copyright-container {
    padding: 0.75rem 1rem;
  }
  .copyright {
    font-size: 0.8rem;
  }
}
