/* ============================================
   NAVBAR MOBILE — CORPORATE GIFTING PAGE
============================================ */

.navbar-mobile {
  display: none;
}

/* Tablet & Mobile: Show mobile navbar, hide desktop */
@media (max-width: 1024px) {
  .navbar-desktop {
    display: none !important;
  }

  .navbar-mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

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

  .navbar-mobile__logo img {
    width: 80px;
    height: auto;
  }

  .navbar-mobile__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: #4DAAA7;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
  }
}

/* Mobile specific adjustments */
@media (max-width: 480px) {
  .navbar-mobile {
    height: 54px;
  }

  .navbar-mobile__wrapper {
    padding: 0 18px 0 15px;
  }

  .navbar-mobile__logo img {
    width: 67px;
    height: 27px;
  }

  .navbar-mobile__cta {
    width: 119px;
    height: 36px;
    padding: 0;
    border-radius: 1.5px;
    font-size: 16px;
  }
}

/* ============================================
   HERO HOME — DESKTOP VERSION
============================================ */

.hero-home {
  position: relative;
  width: 100%;
  min-height: 85vh;
  line-height: 1.1;

  background-image: url("/assets/images/home/4000 -1500.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;

  display: flex;
  align-items: center;
}

/* Hide mobile elements on desktop */
.hero-home .hero-image-mobile {
  display: none;
}

.hero-home .hero-text-mobile {
  display: none;
}

/* ============================================
   HERO CONTENT WRAPPER
============================================ */

.hero-home .hero-content-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: clamp(1rem, 1vw, 1rem);
  padding-top: clamp(5rem, 7vh, 6.5rem);
  display: flex;
  justify-content: flex-end;
}

/* ============================================
   HERO CONTENT
============================================ */

.hero-home .hero-content {
  max-width: 90%;
}

/* ============================================
   HERO TYPOGRAPHY
============================================ */

.hero-home .hero-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 0.5rem;
    color: #353535;
    text-align: right;
    max-width: 100%;
    margin-right: 15px;
}

.hero-home .hero-title span {
  color: #4DAAA7;
}

.hero-home .hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: #353535;
    opacity: 0.85;
    max-width: 80%;
    text-align: right;
    margin-top: 0.3rem;
    margin-left: 18%;
}

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
  .hero-home {
    min-height: 80vh;
    background-position: center;
  }

  .hero-home .hero-content-wrapper {
    justify-content: flex-end;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-home .hero-content {
    text-align: right;
    max-width: 50%;
  }

  .hero-home .hero-title {
    text-align: right;
    font-size: 38px;
    max-width: 100%;
  }

  .hero-home .hero-subtitle {
    text-align: right;
    font-size: 15px;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
  }
}

/* ---------- MOBILE (Figma: 412px) ---------- */
@media (max-width: 768px) {
  .hero-home {
    min-height: auto;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    padding-top: 66px; /* Space for fixed navbar (Figma: 66px) */
    background-image: none;
    background: #ffffff;
    position: relative;
  }

  /* Mobile image container - full width with text overlay */
  .hero-home .hero-image-mobile {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .hero-home .hero-image-mobile img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
  }

  /* Mobile text section OVERLAID on image - bottom right */
  .hero-home .hero-text-mobile {
    display: block;
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 10;
    background: transparent;
    padding: 0 23px 0 0;
    text-align: right;
    max-width: 320px;
  }

  /* Title: Poppins 500, 20px, 1.5 line-height, RIGHT aligned */
  .hero-home .hero-text-mobile .hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-align: right;
    margin-bottom: 8px;
    color: #353535;
  }

  /* "Promotional" styled as teal with underline per Figma */
  .hero-home .hero-text-mobile .hero-title span {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #4DAAA7;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* Subtitle: Poppins 400, 12px, RIGHT aligned per Figma */
  .hero-home .hero-text-mobile .hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-align: right;
    color: #353535;
    margin: 0;
    max-width: 292px;
    margin-left: auto;
  }

  /* Hide desktop content wrapper on mobile */
  .hero-home .hero-content-wrapper {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  .hero-home .hero-text-mobile .hero-title {
    font-size: 18px;
    line-height: 1.4;
  }

  .hero-home .hero-text-mobile .hero-subtitle {
    font-size: 11px;
  }
}

/* ============================================
   NAVBAR — HOME PAGE ALIGNMENT
============================================ */

.navbar-home .container {
  max-width: var(--page-max-width);
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.navbar-home .nav-wrapper-home {
  padding-top: 0.15rem;
  padding-bottom: 0.1rem;
}
/* =========================
   OUR CATEGORIES SECTION
   PIXEL-PERFECT FROM FIGMA
========================= */

.categories {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categories .section-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: 0.58px;
  margin-bottom: 39px;
  margin-left: auto;
  margin-right: auto;
  color: #4daaa7;
}

.categories .section-title span {
  color: #353535;
}

/* =========================
   GRID LAYOUT
   Based on Figma: 1280px total width
   Gap: 19.13px (using 19px)
========================= */

.categories-layout {
  display: grid;
  grid-template-columns: 268.73px 268.73px 556.59px;
  grid-template-rows: 238.13px 323.24px;
  gap: 19px;
  width: fit-content;
  margin: 0 auto;
}

/* =========================
   LAYOUT POSITIONING
========================= */

.categories-left {
  display: contents;
}

.left-bottom {
  display: contents;
}

.categories-right {
  display: contents;
}

/* Drinkware - Top left, spans 2 columns */
.card-left-horizontal {
  grid-column: 1 / 3;
  grid-row: 1;
}

/* Pens - Bottom left */
.left-bottom .category-card:first-child {
  grid-column: 1;
  grid-row: 2;
}

/* Eco-friendly - Bottom middle */
.left-bottom .category-card:last-child {
  grid-column: 2;
  grid-row: 2;
}

/* Gifting - Top right, spans both rows */
.categories-right .category-card:first-child {
  grid-column: 3;
  grid-row: 1 / 3;
}

/* Ready to Ship - Bottom right */
.categories-right .category-card:last-child {
  grid-column: 3;
  grid-row: 2;
  grid-row: 1 / 3;
  margin-top: 342.37px;
}

/* =========================
   CARD BASE STYLES
========================= */

.category-card {
  background: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.category-card img {
  object-fit: contain;
  display: block;
}

/* =========================
   DRINKWARE CARD (Large Horizontal)
========================= */

.card-left-horizontal {
  padding: 24px 16px;
  flex-direction: row;
  align-items: flex-start;
  background: #f0f0f0;
}

.card-left-horizontal .card-content {
  z-index: 2;
  position: relative;
}

.card-left-horizontal .card-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 17.21px;
  font-weight: 500;
  line-height: 23px;
  margin-bottom: 12px;
  color: #353535;
  max-width: 245px;
}

.card-left-horizontal img {
  position: absolute;
  right: 0px;
  top: -154.93px;
  width: 421.56px;
  height: 393.23px;
  z-index: 1;
  object-fit: contain;
}

/* =========================
   SMALL VERTICAL CARDS (Pens & Eco)
========================= */

.card-vertical {
  padding: 24px 16px;
  flex-direction: column;
  align-items: flex-start;
  background: #f0f0f0;
}

.card-vertical .card-content {
  position: relative;
  z-index: 2;
}

.card-vertical .card-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 17.21px;
  font-weight: 500;
  line-height: 23px;
  margin-bottom: 12px;
  color: #353535;
  max-width: 245px;
}

/* Pens card image */
.left-bottom .category-card:first-child img {
  position: absolute;
  left: -6.7px;
  bottom: 0px;
  width: 258.04px;
  height: 213.4px;
  z-index: 1;
  object-fit: contain;
}

/* Eco-friendly card image */
.left-bottom .category-card:last-child img {
  position: absolute;
  right: -3px;
  top: 60px;
  width: 232.7px;
  height: 286.21px;
  z-index: 1;
  object-fit: contain;
}

/* =========================
   RIGHT COLUMN CARDS
========================= */

.categories-right .card-horizontal {
  padding: 24px 16px;
  flex-direction: column;
  align-items: flex-start;
}

.categories-right .category-card:first-child {
  background: #f0f0f0;
  height: 323.24px;
}

.categories-right .category-card:last-child {
  background: #f0f0f0;
  height: 238.13px;
}

.categories-right .card-content {
  position: relative;
  z-index: 2;
}

.categories-right .card-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 17.21px;
  font-weight: 500;
  line-height: 23px;
  margin-bottom: 12px;
  color: #353535;
  max-width: 245px;
}

/* Gifting card image (top right) */
.categories-right .category-card:first-child img {
  position: absolute;
  right: 0px;
  top: -36.34px;
  width: 381.58px;
  height: 359.58px;
  z-index: 1;
  object-fit: contain;
}

/* Ready-to-Ship card image (bottom right) */
.categories-right .category-card:last-child img {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 323.24px;
  height: 223.78px;
  z-index: 1;
  object-fit: contain;
}

/* =========================
   BUTTON STYLES
========================= */

.card-content button,
.card-content a {
  font-family: "Poppins", sans-serif;
  font-size: 13.39px;
  font-weight: 500;
  padding: 5.5px 32px;
  width: 92.76px;
  height: 24.86px;
  border: 1.43px solid #353535;
  border-radius: 3px;
  background: transparent;
  color: #353535;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.card-content button:hover,
.card-content a:hover {
  background: #353535;
  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1320px) {
  .categories {
    padding: 60px 20px;
  }

  .categories-layout {
    grid-template-columns: 1fr 1fr 2.07fr;
    max-width: 100%;
  }

  .card-left-horizontal img {
    width: 75%;
    height: auto;
    top: -100px;
    right: 0;
  }

  .left-bottom .category-card:first-child img {
    width: 90%;
    height: auto;
    left: 5%;
    bottom: 0;
  }

  .left-bottom .category-card:last-child img {
    width: 80%;
    height: auto;
    right: 5%;
    top: 50px;
  }

  .categories-right .category-card:first-child img {
    width: 70%;
    height: auto;
    top: -20px;
    right: 0;
  }

  .categories-right .category-card:last-child img {
    width: 60%;
    height: auto;
    bottom: 10px;
    right: 0;
  }
}

/* ============================================
   CATEGORIES — VISIBILITY CONTROL
   Desktop section hidden on mobile/tablet, mobile section shown on mobile/tablet
============================================ */

/* Hide mobile categories on desktop (above 1024px) */
.categories-mobile {
  display: none;
}

/* Hide desktop categories on tablet and mobile */
@media (max-width: 1024px) {
  .categories-desktop {
    display: none;
  }

  .categories-mobile {
    display: block;
    padding: 40px 24px;
    background: #ffffff;
  }
}

/* ============================================
   MOBILE CATEGORIES — Figma pixel-perfect (412px)
   Section x=23, title y=718, cards start y=774.69
   Card size: 365.34 × 156.31px, gap ~12px
============================================ */

/* Title: "Our Categories" - Poppins 700, 32px */
.categories-mobile__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 24px;
  color: #4DAAA7;
}

.categories-mobile__title span {
  color: #353535;
}

/* Grid container */
.categories-mobile__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 365px;
  margin: 0 auto;
}

/* ========================================
   BASE CARD STYLES
   Figma: 365.34 × 156.31px, border-radius 5px
======================================== */
.mob-card {
  width: 100%;
  height: 156px;
  padding: 20px 16px;
  border-radius: 5px;
  background: #EFEFEF;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

/* Card content container */
.mob-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 52%;
}

/* Card title: Poppins 14px, 500, line-height 1.5 */
.mob-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #353535;
  margin: 0 0 12px 0;
}

/* View button: Figma 66 × 21.71px */
.mob-card__btn {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 500;
  width: 66px;
  height: 22px;
  padding: 0;
  border: 1.2px solid #353535;
  border-radius: 2.5px;
  background: transparent;
  color: #353535;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Base image styles */
.mob-card__img {
  position: absolute;
  object-fit: contain;
  z-index: 1;
}

/* ========================================
   CARD 1: DRINKWARE
   Text LEFT, Image RIGHT
   Figma image: x=112, 276×169px (relative to card at x=23)
   Image position from card left edge: 112-23 = 89px from left
======================================== */
.mob-card--drinkware .mob-card__content {
  text-align: left;
}

.mob-card--drinkware .mob-card__img {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 150px;
  width: auto;
}

/* ========================================
   CARD 2: PENS
   Image LEFT, Text RIGHT
   Figma image: x=11, 184×146px (card at x=23, so image at -12px from card)
======================================== */
.mob-card--pens {
  flex-direction: row-reverse;
}

.mob-card--pens .mob-card__content {
  text-align: right;
  margin-left: auto;
}

.mob-card--pens .mob-card__title {
  text-align: right;
}

.mob-card--pens .mob-card__img {
  left: -15px;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  height: 135px;
  width: auto;
}

/* ========================================
   CARD 3: ECO-FRIENDLY
   Text LEFT, Image RIGHT
   Figma image: x=212.44, 176.25×158.7px (card at x=23)
   Image from card left: 212.44-23 = 189.44px
======================================== */
.mob-card--eco .mob-card__content {
  text-align: left;
}

.mob-card--eco .mob-card__img {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 145px;
  width: auto;
}

/* ========================================
   CARD 4: GIFTING
   Image LEFT, Text RIGHT
   Figma image: x=23, 189×178px (same as card x, so at 0)
======================================== */
.mob-card--gifting {
  flex-direction: row-reverse;
}

.mob-card--gifting .mob-card__content {
  text-align: right;
  margin-left: auto;
}

.mob-card--gifting .mob-card__title {
  text-align: right;
}

.mob-card--gifting .mob-card__img {
  left: -20px;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  height: 155px;
  width: auto;
}

/* ========================================
   CARD 5: READY TO SHIP
   Text LEFT, Image RIGHT
   Figma image: x=187, 201×139px (card at x=23)
   Image from card left: 187-23 = 164px
======================================== */
.mob-card--ship .mob-card__content {
  text-align: left;
}

.mob-card--ship .mob-card__img {
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  height: 125px;
  width: auto;
}

/* ============================================
   MOBILE CATEGORIES — TABLET RESPONSIVE (769px - 1024px)
   2-column grid layout for tablet screens
============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .categories-mobile {
    padding: 50px 40px;
  }

  .categories-mobile__title {
    font-size: 40px;
    margin-bottom: 32px;
  }

  /* 2-column grid for tablet */
  .categories-mobile__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    max-width: 720px;
  }

  /* Larger cards for tablet */
  .mob-card {
    height: 180px;
    padding: 24px 20px;
    border-radius: 8px;
    align-items: center;
  }

  .mob-card__content {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .mob-card__title {
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.4;
  }

  .mob-card__btn {
    font-size: 11px;
    width: 76px;
    height: 26px;
  }

  .mob-card__img {
    top: 50%;
    transform: translateY(-50%);
  }

  /* CARD 1: DRINKWARE - full width top row */
  .mob-card--drinkware {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 200px;
  }

  .mob-card--drinkware .mob-card__content {
    max-width: 45%;
  }

  .mob-card--drinkware .mob-card__title {
    font-size: 18px;
  }

  .mob-card--drinkware .mob-card__img {
    right: 30px;
    height: 170px;
  }

  /* CARD 2: PENS - left column, row 2 */
  .mob-card--pens {
    grid-column: 1;
    grid-row: 2;
  }

  .mob-card--pens .mob-card__content {
    text-align: right;
    margin-left: auto;
  }

  .mob-card--pens .mob-card__img {
    left: 10px;
    height: 140px;
  }

  /* CARD 3: ECO-FRIENDLY - right column, row 2 */
  .mob-card--eco {
    grid-column: 2;
    grid-row: 2;
  }

  .mob-card--eco .mob-card__img {
    right: 10px;
    height: 140px;
  }

  /* CARD 4: GIFTING - left column, row 3 */
  .mob-card--gifting {
    grid-column: 1;
    grid-row: 3;
  }

  .mob-card--gifting .mob-card__content {
    text-align: right;
    margin-left: auto;
  }

  .mob-card--gifting .mob-card__img {
    left: 5px;
    height: 150px;
  }

  /* CARD 5: READY TO SHIP - right column, row 3 */
  .mob-card--ship {
    grid-column: 2;
    grid-row: 3;
  }

  .mob-card--ship .mob-card__img {
    right: 10px;
    height: 130px;
  }
}

/* =========================
   ABOUT COMPANY SECTION
========================= */

.about-section {
  padding: 0px 2px 40px 2px;
  max-width: 100%;
  margin: 0 auto;
  background: #f0f0f0;
}

.about-wrapper {
  position: relative;
  height: 640px;
  max-width: 1279px;
  margin: 0 auto;
}

/* =========================
   IMAGES CONTAINER (LEFT)
========================= */

.about-images {
  position: absolute;
  left: 97px;
  top: 40px;
  width: 591px;
  height: 542px;
}

/* Background Teal Rectangle */
.about-bg-rect {
  position: absolute;
  left: -44px;
  top: 283px;
  width: 488px;
  height: 264px;
  background: rgb(77, 170, 167);
  border-radius: 2px;
}

/* Main Image */
.about-main-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 494px;
  height: 503px;
  border-radius: 2px;
  object-fit: cover;
  z-index: 2;
}

/* Overlay Image */
.about-overlay-img {
  position: absolute;
  left: 232px;
  top: 283px;
  width: 325px;
  height: 300px;
  border-radius: 2px;
  object-fit: cover;
  z-index: 3;
}

/* MESERII Text Overlay */
.about-text-overlay {
  position: absolute;
  left: 68px;
  top: 508px;
  width: 154px;
  height: 34px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 33.6px;
  color: rgb(239, 239, 239);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   CONTENT (RIGHT)
========================= */

.about-content {
  position: absolute;
  left: 686px;
  top: 80px;
  width: 565px;
}

.about-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 69.6px;
  letter-spacing: 0.58px;
  color: rgb(77, 170, 167);
  margin: 0 0 14px 0;
}

.about-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 44px;
  color: #000000;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1320px) {
  .about-wrapper {
    height: auto;
    min-height: 640px;
  }

  .about-images {
    left: 5%;
    transform: scale(0.9);
    transform-origin: left top;
  }

  .about-content {
    left: auto;
    right: 5%;
    width: 45%;
  }

  .about-title {
    font-size: 48px;
    line-height: 58px;
  }

  .about-description {
    font-size: 20px;
    line-height: 38px;
  }
}

/* ============================================
   ABOUT — TABLET TRANSITION
============================================ */

@media (max-width: 1024px) {
  .about-section {
    padding: 0;
  }

  .about-wrapper {
    position: relative;
    height: auto;
    min-height: unset;
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-images {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto;
    transform: scale(0.75);
    transform-origin: center top;
  }

  .about-content {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 720px;
    margin: -90px auto 0;
    text-align: center;
  }

  .about-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
  }

  .about-description {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
  }
}


/* ============================================
   ABOUT — MOBILE MODE (Figma: 412px)
   Section in Android Compact - 3 frame (412 × 638px)
   Features centered title, description, and collage image
============================================ */

@media (max-width: 768px) {
  .about-section {
    padding: 0;
    background: #EFEFEF;
  }

  .about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 29px 23px 40px;
    height: auto;
    max-width: 412px;
    margin: 0 auto;
  }

  /* Title first on mobile - centered */
  .about-content {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 0 10px 0;
    text-align: center;
    order: -1;
  }

  /* Title: Inter Bold 32px, centered, teal */
  .about-title {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #4DAAA7;
    margin-bottom: 10px;
    text-align: center;
  }

  /* Description: Poppins 14px, centered */
  .about-description {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #000000;
    text-align: center;
    margin: 0;
  }

  /* Image collage container - 365 × 354.07px from Figma */
  .about-images {
    position: relative;
    width: 100%;
    max-width: 365px;
    height: 354px;
    left: 0;
    top: 0;
    transform: none;
    margin: 0 auto;
  }

  /* Hide individual images and show collage instead */
  .about-bg-rect {
    display: none;
  }

  .about-main-img {
    display: none;
  }

  .about-overlay-img {
    display: none;
  }

  /* MESERII text overlay - hidden on mobile (part of collage image) */
  .about-text-overlay {
    display: none;
  }

  /* Use the collage image for mobile - add via ::before */
  .about-images::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/images/about-collage-mobile.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
  }
}


/* ============================================
   SECTION COMMON STYLES
   ============================================ */
section {
  padding: 10px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 15px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 40px;
  margin-top: 40px;
}

.section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.decorative-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  margin: 1.5rem auto;
  border-radius: 10px;
}

/* ============================================
   HERO SECTION (CATEGORY PAGES)
   ============================================ */
.hero {
  padding: 110px 0 40px;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: auto;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInLeft 0.8s ease-out;

}

.hero-title {
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.375rem);
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 400;
}

.hero-cta-group {
  display: none;
}

.hero-form-wrapper {
  animation: fadeInRight 0.8s ease-out;
  width: 100%;
  max-width: 515px;
}

/* ============================================
   TRUST BOXES - HERO SECTION
   ============================================ */

.trust-boxes {
  display: grid;
  grid-template-columns: 305px 305px;
  grid-template-rows: 85px 296px;
  gap: 20px;
  margin-top: 34px;
  max-width: 630px;
}

/* Mobile trust boxes - hidden by default on desktop */
.trust-boxes-mobile {
  display: none;
}

.trust-box {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Box 1: Trusted Clients */
.trust-box--clients {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 23px 19px;
}

.trust-box__avatars {
  display: flex;
  flex-shrink: 0;
}

.trust-avatar {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -20px;
  border: 2px solid #ffffff;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-box__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trust-box__number {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #4DAAA7;
  line-height: 1.3;
  margin-top:10px;
}

.trust-box__label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #272727;
  line-height: 1;
  margin-bottom: 15px;
}

/* Box 2: Cities Delivered */
.trust-box--cities {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 19px 24px 19px;
}

.trust-box__text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #272727;
  line-height: 1.5;
  margin: 0;
}

.trust-box__stat {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trust-box__number--large {
  font-size: 64px;
  line-height: 1.5;
}

/* Rating box number needs font-weight 500 per Figma */
.trust-box--rating .trust-box__number--large {
  font-weight: 500;
}

.trust-box--cities .trust-box__label {
  font-size: 18px;
  font-weight: 600;
  color: #272727;
  line-height: 1;
}

/* Box 3: Google Rating */
.trust-box--rating {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  padding: 31px 18px 24px 18px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.trust-box__vector {
  position: absolute;
  width: 238px;
  height: 181px;
  left: -10px;
  top: 135px;
  z-index: 0;
}

.trust-box--rating .trust-box__text {
  margin-bottom: auto;
  position: relative;
  z-index: 1;
}

.trust-box__rating-row {
  display: flex;
  align-items: baseline;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.trust-box__rating {
  display: flex;
  align-items: baseline;
}

.trust-box__slash {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #272727;
  margin-left: 4px;
}

.trust-box__google-wrap {
  position: absolute;
  right: 18px;
  bottom: 31px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  z-index: 1;
}

.trust-box__stars {
  display: flex;
  gap: 2px;
}

.trust-box__google {
  width: 81px;
  height: auto;
  margin-bottom: 13px;
}

/* ============================================================================
   CATEGORY HERO — FIGMA LOCK (Shared across all category pages)
   Single source of truth for: drinkware, pens, ecofriendly, corporate-gifting, rush
   ============================================================================ */

/* -----------------------------------------------------------------------------
   1. HERO BASE — Override poison styles from .hero
------------------------------------------------------------------------------ */
.hero.hero-with-trust {
  /* Kill base hero constraints */
  aspect-ratio: unset;
  min-height: unset;
  height: auto;

  /* Figma spacing - more compact */
  padding: 100px 0 50px;

  /* Background like Figma (not stretched) */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Remove dark overlay */
.hero.hero-with-trust::before {
  display: none;
}

/* Container width */
.hero.hero-with-trust .container {
  max-width: 1200px;
  padding-left: 32px;
  padding-right: 32px;
}

/* -----------------------------------------------------------------------------
   2. HERO LAYOUT — Flex 2-column
------------------------------------------------------------------------------ */
.hero.hero-with-trust .hero-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Left content block */
.hero.hero-with-trust .hero-content {
  flex: 1;
  max-width: 620px;
  padding-top: 0;
  text-align: left;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* Right form block */
.hero.hero-with-trust .hero-form-wrapper {
  width: 460px;
  max-width: 460px;
  flex-shrink: 0;
  margin-top: 0;
}

/* -----------------------------------------------------------------------------
   3. TYPOGRAPHY — Poppins, compact Figma sizes
------------------------------------------------------------------------------ */
.hero.hero-with-trust .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.2px;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero.hero-with-trust .hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
  max-width: 400px;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Reset any p margin issues */
.hero.hero-with-trust p {
  margin-top: 0;
}

/* -----------------------------------------------------------------------------
   4. TRUST BOXES — Responsive grid (fits inside left column)
------------------------------------------------------------------------------ */
.hero.hero-with-trust .trust-boxes {
  display: grid !important;
  width: 100%;
  max-width: 100%;
  grid-template-columns: 1.1fr 1.6fr;
  grid-template-rows: 70px 200px;
  gap: 14px;
  margin-top: 16px;
  align-items: stretch;
}

/* Explicit grid placement to ensure proper layout */
.hero.hero-with-trust .trust-box--clients {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.hero.hero-with-trust .trust-box--cities {
  grid-column: 1 !important;
  grid-row: 2 !important;
}

.hero.hero-with-trust .trust-box--rating {
  grid-column: 2 !important;
  grid-row: 1 / 3 !important;
}

/* Shared box style — premium card look */
.hero.hero-with-trust .trust-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

/* Box 1: Trusted Clients (top-left) */
.hero.hero-with-trust .trust-box--clients {
  width: auto;
  height: auto;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero.hero-with-trust .trust-box__avatars {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.hero.hero-with-trust .trust-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -8px;
  border: 2px solid #fff;
}

.hero.hero-with-trust .trust-avatar:first-child {
  margin-left: 0;
}

/* Trust box 1 content - vertically centered */
.hero.hero-with-trust .trust-box__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  gap: 0;
}

.hero.hero-with-trust .trust-box--clients .trust-box__number {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #4DAAA7;
  margin: 0;
  padding: 0;
}

.hero.hero-with-trust .trust-box--clients .trust-box__label {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  color: #272727;
  margin: 2px 0 0 0;
  padding: 0;
}

/* Box 2: Cities Delivered (bottom-left) */
.hero.hero-with-trust .trust-box--cities {
  width: auto;
  height: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero.hero-with-trust .trust-box--cities .trust-box__text {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #272727;
  margin: 0;
  letter-spacing: 0;
}

.hero.hero-with-trust .trust-box__stat {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero.hero-with-trust .trust-box--cities .trust-box__number--large {
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: #4DAAA7;
}

.hero.hero-with-trust .trust-box--cities .trust-box__label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #272727;
  margin-top: 4px;
}

/* Box 3: Google Rating (right column, spans 2 rows) */
.hero.hero-with-trust .trust-box--rating {
  width: auto;
  height: auto;
  padding: 14px 14px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.hero.hero-with-trust .trust-box__vector {
  position: absolute;
  width: 120px;
  height: 90px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
  z-index: 0;
  opacity: 0.06;
}

.hero.hero-with-trust .trust-box--rating .trust-box__text {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #272727;
  margin: 0;
  max-width: 200px;
  position: relative;
  z-index: 1;
  margin-bottom: auto;
}

.hero.hero-with-trust .trust-box__rating-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: auto;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.hero.hero-with-trust .trust-box--rating .trust-box__number--large {
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  color: #4DAAA7;
}

.hero.hero-with-trust .trust-box__slash {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #222;
  opacity: 0.9;
  margin-left: 2px;
}

.hero.hero-with-trust .trust-box__google-wrap {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  z-index: 1;
}

.hero.hero-with-trust .trust-box__stars {
  display: flex;
  gap: 3px;
}

.hero.hero-with-trust .trust-box__stars svg {
  width: 14px;
  height: 14px;
}

.hero.hero-with-trust .trust-box__google {
  width: 65px;
  height: auto;
  margin-bottom: 0;
}

/* Desktop: show trust boxes, hide mobile version */
.hero.hero-with-trust .trust-boxes--desktop {
  display: grid;
}

/* -----------------------------------------------------------------------------
   5. FORM CARD — Compact Figma styling
------------------------------------------------------------------------------ */
.hero.hero-with-trust .form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

/* Neutralize negative margin hack from components.css */
.hero.hero-with-trust .form-header {
  margin: 0;
  padding: 0;
  border-radius: 0;
  text-align: left;
  margin-bottom: 14px;
}

.hero.hero-with-trust .form-header h4 {
  display: none;
}

.hero.hero-with-trust .form-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4DAAA7;
  margin: 0;
}

.hero.hero-with-trust .lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero.hero-with-trust .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero.hero-with-trust .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.hero.hero-with-trust .form-group label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}

.hero.hero-with-trust .form-group input,
.hero.hero-with-trust .form-group select,
.hero.hero-with-trust .form-group textarea {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #111;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.hero.hero-with-trust .form-group textarea {
  height: 80px;
  padding: 12px 14px;
  resize: none;
}

.hero.hero-with-trust .form-group input::placeholder,
.hero.hero-with-trust .form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 400;
}

/* Focus state - teal glow */
.hero.hero-with-trust .form-group input:focus,
.hero.hero-with-trust .form-group select:focus,
.hero.hero-with-trust .form-group textarea:focus {
  outline: none;
  border-color: #4DAAA7;
  box-shadow: 0 0 0 2px rgba(77, 170, 167, 0.15);
}

/* Remove red invalid border on load */
.hero.hero-with-trust .form-group input:invalid,
.hero.hero-with-trust .form-group select:invalid,
.hero.hero-with-trust .form-group textarea:invalid {
  box-shadow: none;
  border-color: #e0e0e0;
}

.hero.hero-with-trust .form-group input:focus:invalid,
.hero.hero-with-trust .form-group select:focus:invalid,
.hero.hero-with-trust .form-group textarea:focus:invalid {
  border-color: #4DAAA7;
  box-shadow: 0 0 0 2px rgba(77, 170, 167, 0.15);
}

/* Submit button */
.hero.hero-with-trust .btn-submit {
  width: 100%;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: #4DAAA7;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(77, 170, 167, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  margin-top: 6px;
  margin-bottom: 0;
}

.hero.hero-with-trust .btn-submit:hover {
  background: #3d9996;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(77, 170, 167, 0.4);
}

.hero.hero-with-trust .btn-submit:active {
  transform: translateY(0);
}

/* -----------------------------------------------------------------------------
   6. RESPONSIVE — Desktop > 1024px
------------------------------------------------------------------------------ */
@media (min-width: 1025px) {
  .hero.hero-with-trust .mobile-trust {
    display: none;
  }
}

/* -----------------------------------------------------------------------------
   7. RESPONSIVE — Tablet (481px - 1024px)
------------------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero.hero-with-trust {
    padding: 70px 0 35px;
    background-position: center;
  }

  .hero.hero-with-trust .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero.hero-with-trust .hero-wrapper {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }

  .hero.hero-with-trust .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    align-items: flex-start;
  }

  .hero.hero-with-trust .hero-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.15;
    text-align: left;
    margin-bottom: 8px;
  }

  .hero.hero-with-trust .hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.35;
    text-align: left;
    margin-bottom: 12px;
  }

  /* Hide desktop trust boxes on tablet */
  .hero.hero-with-trust .trust-boxes,
  .hero.hero-with-trust .trust-boxes--desktop {
    display: none !important;
  }

  /* Show mobile trust on tablet + center it */
  .hero.hero-with-trust .mobile-trust {
    display: block !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 14px auto 0 auto !important;
  }

  /* Wider centered form on tablet */
  .hero.hero-with-trust .hero-form-wrapper {
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  .hero.hero-with-trust .form-card {
    width: 100%;
    padding: 18px 18px;
    border-radius: 14px;
  }

  .hero.hero-with-trust .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* -----------------------------------------------------------------------------
   8. RESPONSIVE — Mobile (480px and below)
------------------------------------------------------------------------------ */
@media (max-width: 480px) {
  .hero.hero-with-trust {
    min-height: auto;
    padding: 80px 0 30px;
    overflow-x: hidden;
  }

  .hero.hero-with-trust .container {
    padding: 0 16px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero.hero-with-trust .hero-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hero.hero-with-trust .hero-content {
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .hero.hero-with-trust .hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 8px;
  }

  .hero.hero-with-trust .hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
    margin-bottom: 12px;
  }

  /* Hide desktop trust boxes */
  .hero.hero-with-trust .trust-boxes,
  .hero.hero-with-trust .trust-boxes--desktop {
    display: none !important;
  }

  /* Show mobile trust */
  .hero.hero-with-trust .mobile-trust {
    display: block;
    margin-top: 12px;
  }

  /* Form mobile */
  .hero.hero-with-trust .hero-form-wrapper {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero.hero-with-trust .form-card {
    padding: 14px 12px;
    border-radius: 8px;
  }

  .hero.hero-with-trust .form-header {
    margin-bottom: 10px;
  }

  .hero.hero-with-trust .form-header h3 {
    font-size: 16px;
  }

  .hero.hero-with-trust .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero.hero-with-trust .form-group label {
    font-size: 11px;
  }

  .hero.hero-with-trust .form-group input,
  .hero.hero-with-trust .form-group select,
  .hero.hero-with-trust .form-group textarea {
    height: 38px;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 5px;
  }

  .hero.hero-with-trust .form-group textarea {
    height: 60px;
    padding: 8px 10px;
  }

  .hero.hero-with-trust .btn-submit {
    height: 40px;
    font-size: 14px;
    border-radius: 6px;
  }
}

/* ============================================================================
   END CORPORATE HERO
   ============================================================================ */

/* ============================================
   SECTION TITLES — RESPONSIVE
   ============================================ */

/* Tablet Section Titles (481px - 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {
  .categories .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.42px;
    margin-bottom: 30px;
  }

  .clients-say .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 35px;
  }

  .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
  }

  .section-header .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
  }
}

/* Mobile Section Titles (480px and below) */
@media (max-width: 480px) {
  .categories .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.28px;
    margin-bottom: 24px;
  }

  .clients-say .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
  }

  .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
  }

  .section-header .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
  }
}

/* ============================================
   BRANDS CAROUSEL SECTION
   ============================================ */

.brands-section {
  width: 100%;
  background: #fff;
  padding: 20px 0 10px 0;
  overflow: hidden;
}

.brands-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
  touch-action: pan-y;
}

.brands-carousel {
  display: flex;
  animation: scroll-brands 90s linear infinite;
  width: max-content;
  gap: 0;
  align-items: center;
}

.brands-carousel:hover {
  animation-play-state: paused;
}

@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-slide {
  flex: 0 0 17vw;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-slide img {
  max-height: 100px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand-slide:hover img {
  opacity: 1;
  transform: scale(1.12);
}

/* =====================================================
   PRODUCTS SECTION
===================================================== */

.products {
  background-color: var(--bg-light);
  padding: 10px 0;
}

.products .container {
  max-width: 1500px;
}

.section-header .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
}

.section-header .section-title span {
  color: var(--primary-color);
  font-weight: 800;
}

.products-carousel-wrapper {
  position: relative;
}

.products-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0 1.5rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

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

.product-card {
  flex: 0 0 calc(25% - 1.5rem);
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.product-media {
  position: relative;
  width: 100%;
}

.product-image {
  position: relative;
  width: 100%;
  height: 350px;
  background: #f7f7f7;
  overflow: hidden;
}

.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.primary-img {
  opacity: 1;
  z-index: 1;
}

.secondary-img {
  opacity: 0;
  z-index: 2;
  transform: scale(1.04);
}

.product-card:hover .primary-img {
  opacity: 0;
}

.product-card:hover .secondary-img {
  opacity: 1;
  transform: scale(1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 16px 18px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-capabilities {
  display: flex;
  gap: 6px;
  margin-bottom: auto;
}

.cap-chip {
  background-color: #4daaa7;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
}

.product-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 8px;
}

.product-quote-btn {
  appearance: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 9px 18px;
  background-color: #4daaa7;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(77, 170, 167, 0.35);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease,
    background-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover .product-quote-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-quote-btn:hover {
  background-color: #3b8f8c;
  box-shadow: 0 8px 18px rgba(77, 170, 167, 0.45);
}

.product-quote-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(77, 170, 167, 0.3);
}

.product-quote-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
}

.products-carousel-wrapper:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: var(--primary-color);
}

.carousel-arrow:hover img {
  filter: brightness(0) invert(1);
}

.carousel-arrow img {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease;
}

.arrow-prev {
  left: -25px;
}

.arrow-next {
  right: -25px;
}

.prev-btn {
  left: -25px;
}
.next-btn {
  right: -25px;
}

/* Hide mobile navigation on desktop */
.carousel-nav-mobile {
  display: none;
}

/* Mobile navigation visible only on mobile (via media query below) */
.carousel-arrow-mobile {
  display: none;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 1rem 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5d5d5;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  position: relative;
}

.dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot:hover {
  background: #b0b0b0;
  transform: scale(1.2);
}

.dot.active {
  background: var(--primary-color);
  width: 12px;
  height: 12px;
  box-shadow: 0 2px 12px rgba(77, 170, 167, 0.4);
}

.dot.active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pill-dots .dot {
  width: 10px;
  height: 10px;
}

.pill-dots .dot.active {
  width: 14px;
  height: 14px;
  box-shadow: 0 3px 15px rgba(77, 170, 167, 0.5);
}

/* ================================
   REVIEWS SECTION
================================ */
.clients-say {
  background: #f5f5f5;
  padding: 0px 60px 15px 60px;
  overflow: hidden;
}

.clients-say .section-title {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 45px;
}

.clients-say .section-title span {
  color: #4daaa7;
}

.reviews-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 20px;
}

.review-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #111;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: 0.25s ease;
}

.review-btn:hover {
  background: #4daaa7;
  color: #fff;
}

.prev-review {
  left: -5px;
}
.next-review {
  right: -5px;
}

.reviews-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-item {
  flex: 0 0 580px;
  display: flex;
  flex-direction: column;
}

.testimonial-box {
  background: #fff;
  padding: 1px 10px;
  border-left: 5px solid #4daaa7;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 8px;
}

.quote-icon {
  font-size: 24px;
  color: #4daaa7;
  margin-bottom: 12px;
}

.testimonial-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

.testimonial-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.testimonial-brand span {
  font-size: 1rem;
  font-weight: 700;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  height: 250px;
}

.gallery-full {
  grid-row: 1 / 3;
  height: 100%;
  overflow: hidden;
}

.gallery-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-half {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-count {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.65);
  padding: 5px 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

/* =====================================================
   WHAT OUR CLIENTS SAY — MOBILE SECTION (Figma: 412×775px)
   Frame: 412×775px, white background
   Title: Inter Bold 32px, centered
   Cards: Vertical stack with horizontal scrolling galleries
===================================================== */

/* Hide mobile section on desktop and tablet */
.clients-say-mobile {
  display: none !important;
}

/* Show mobile section and hide desktop only on mobile (max-width: 480px) */
@media (max-width: 480px) {
  .clients-say {
    display: none !important;
  }

  .clients-say-mobile {
    display: block !important;
    background: #ffffff;
    padding: 40px 18px 30px 18px;
  }
}

/* Title: Inter Bold 32px, centered, black text with "Clients" in teal */
.clients-say-mobile__title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  color: #353535;
  margin: 0 0 30px 0;
}

/* Only "Clients" word in teal */
.clients-say-mobile__title span {
  color: #4DAAA7;
}

/* Testimonial Card */
.clients-say-mobile__card {
  margin-bottom: 25px;
}

/* Header with avatar and label */
.clients-say-mobile__header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

/* Avatar: 23.33px circle */
.clients-say-mobile__avatar {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  object-fit: cover;
}

/* Label: Poppins 500, 16px, #353535 */
.clients-say-mobile__label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #353535;
}

/* Testimonial text: Poppins 400, 14px, rgba(0,0,0,0.7) */
.clients-say-mobile__text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 12px 0;
  text-align: left;
}

/* Gallery: Horizontal scroll, 4 images × 100px */
.clients-say-mobile__gallery {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 5px;
}

.clients-say-mobile__gallery::-webkit-scrollbar {
  display: none;
}

.clients-say-mobile__gallery img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
}

/* Pagination Dots */
.clients-say-mobile__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 25px 0;
}

.clients-say-mobile__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d9;
}

.clients-say-mobile__dot--active {
  background: #4DAAA7;
}

/* View More Button: Teal background, 111×37px */
.clients-say-mobile__btn {
  display: block;
  width: 111px;
  height: 37px;
  margin: 0 auto;
  background: #4DAAA7;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 37px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.clients-say-mobile__btn:hover {
  background: #3d9996;
}

/* =====================================================
   WHY CHOOSE US SECTION
===================================================== */

.why-choose-us-section {
  padding: 40px 20px;
  background: #ffffff;
}

.why-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.why-left {
  width: 40%;
  padding: 40px 20px 40px 64px;
  position: relative;
}

.why-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 6px;
  height: 240px;
  background: #4daaa7;
  border-radius: 3px;
}

.why-big-text {
  font-size: clamp(64px, 7vw, 100px);
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
}

.why-big-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}

.text-teal {
  background: linear-gradient(90deg, #4daaa7, #6fc7c3);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.why-right {
  width: 60%;
  display: flex;
  justify-content: center;
}

.puzzle-container {
  position: relative;
  width: 690px;
  height: 520px;
}

.puzzle-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.08));
}

.puzzle-content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  z-index: 2;
}

.puzzle-item {
  padding: 28px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.puzzle-item.is-active {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  z-index: 2;
}

.puzzle-item.is-active h3,
.puzzle-item.is-active p {
  filter: brightness(1.05);
}

.puzzle-item img {
  width: 100px;
  margin: 0 auto 6px;
}

.puzzle-item h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.puzzle-item p {
  font-size: 14px;
  line-height: 1.5;
  max-width: 230px;
  margin: 0 auto;
  opacity: 0.9;
}

.tl,
.br {
  color: #222;
}
.tr,
.bl {
  color: #ffffff;
}

.puzzle-item.tr {
  padding-left: 44px;
}
.puzzle-item.bl {
  padding-right: 44px;
}

.tr img,
.bl img {
  filter: brightness(0) invert(1);
}


/* ============================================
   WHY CHOOSE US — MOBILE MODE (Figma: 412px)
   Section in Android Compact - 3 frame (white bg)
   Features 2x2 puzzle grid layout
============================================ */
@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 40px 16px;
    background: #FFFFFF;
  }

  .why-wrapper {
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }

  .why-left {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .why-left::before {
    display: none;
  }

  .why-big-text {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
  }

  .why-big-text span {
    display: inline;
  }

  .why-right {
    width: 100%;
  }

  .puzzle-container {
    width: 100%;
    height: auto;
    max-width: 360px;
    margin: 0 auto;
  }

  .puzzle-svg {
    display: none;
  }

  /* 2x2 grid layout matching Figma puzzle design */
  .puzzle-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
  }

  .puzzle-item {
    padding: 20px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
  }

  /* Top-left (Customization) - light gray */
  .puzzle-item.tl {
    background: #F0F0F0;
    color: #222;
    border-radius: 0;
    order: 1;
  }

  /* Top-right (Eco-Friendly) - teal */
  .puzzle-item.tr {
    background: #4DAAA7;
    color: #ffffff;
    border-radius: 0;
    order: 2;
    padding-left: 12px;
  }

  /* Bottom-left (Replacement) - teal */
  .puzzle-item.bl {
    background: #4DAAA7;
    color: #ffffff;
    border-radius: 0;
    order: 3;
    padding-right: 12px;
  }

  /* Bottom-right (Delivery) - light gray */
  .puzzle-item.br {
    background: #F0F0F0;
    color: #222;
    border-radius: 0;
    order: 4;
  }

  .puzzle-item img {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
  }

  .puzzle-item h3 {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 6px;
    text-align: center;
  }

  .puzzle-item p {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.3;
    max-width: 150px;
    margin: 0 auto;
    opacity: 0.9;
  }

  /* Text colors for teal backgrounds */
  .puzzle-item.tr h3,
  .puzzle-item.bl h3 {
    color: #ffffff;
  }

  .puzzle-item.tr p,
  .puzzle-item.bl p {
    color: #ffffff;
  }

  /* Text colors for gray backgrounds */
  .puzzle-item.tl h3,
  .puzzle-item.br h3 {
    color: #353535;
  }

  .puzzle-item.tl p,
  .puzzle-item.br p {
    color: rgba(0, 0, 0, 0.7);
  }

  /* Keep icon inversion for teal backgrounds */
  .puzzle-item.tr img,
  .puzzle-item.bl img {
    filter: brightness(0) invert(1);
  }

  .puzzle-item.tl img,
  .puzzle-item.br img {
    filter: none;
  }
}

/* ============================================
   WHY CHOOSE US — VISIBILITY CONTROL
   Desktop visible above 1024px, mobile visible below
============================================ */

/* Hide mobile section on desktop */
.why-choose-us-mobile {
  display: none;
}

/* Hide desktop section on tablet and mobile, show mobile section */
@media (max-width: 1024px) {
  .why-choose-us-desktop {
    display: none;
  }

  .why-choose-us-mobile {
    display: block;
    padding: 30px 26px;
    background: #ffffff;
    overflow: visible;
  }
}

/* ============================================
   WHY CHOOSE US — MOBILE SECTION (Figma: 412×493px)
   Frame: 412×493px, white background
   Title: Inter Bold 32px, centered, #353535 with "Choose" in teal
   Container: 359.03 × 360.05px with hexagonal pattern
   Cards positioned absolutely on the pattern
============================================ */

/* Section Title: responsive */
.why-mobile__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(24px, 8vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #353535;
  margin: 0 0 clamp(20px, 6vw, 31px) 0;
  margin-left: auto;
  margin-right: auto;
}

/* "Choose" word in teal color */
.why-mobile__title span {
  color: #4DAAA7;
}

/* Container for hexagonal pattern and cards - responsive */
.why-mobile__container {
  position: relative;
  width: 100%;
  max-width: 359px;
  aspect-ratio: 359 / 360;
  margin: 0 auto;
  overflow: visible;
}

/* Hexagonal pattern background SVG */
.why-mobile__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.why-mobile__pattern-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Show mobile SVG by default, hide tablet SVG */
.why-mobile__pattern-svg--mobile {
  display: block;
}

.why-mobile__pattern-svg--tablet {
  display: none;
}

/* Base card styles - positioned absolutely on the pattern */
.why-mobile__card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  z-index: 1;
  box-sizing: border-box;
}

/* Top Left Card: Customization (on gray hexagon) - ~50% width */
.why-mobile__card--top-left {
  left: 0;
  top: 0;
  width: 50%;
  height: 50%;
  padding: 8% 4% 0 4%;
}

/* Top Right Card: Eco-Friendly (on teal hexagon) - ~50% width */
.why-mobile__card--top-right {
  right: 0;
  top: 0;
  width: 50%;
  height: 50%;
  padding: 7% 3% 0 9%;
}

/* Bottom Left Card: Replacement (on teal hexagon) - ~50% width */
.why-mobile__card--bottom-left {
  left: 0;
  bottom: 0;
  width: 50%;
  height: 50%;
  padding: 7% 4% 0 3%;
}

/* Bottom Right Card: Delivery (on gray hexagon) - ~50% width */
.why-mobile__card--bottom-right {
  right: 0;
  bottom: 0;
  width: 50%;
  height: 50%;
  padding: 9% 3% 0 4%;
}

/* Icon: responsive size */
.why-mobile__icon {
  width: clamp(36px, 12vw, 50px);
  height: clamp(36px, 12vw, 50px);
  margin-bottom: clamp(6px, 2vw, 10px);
  object-fit: contain;
}

/* Dark icons (on gray hexagons) - keep original colors */
.why-mobile__icon--dark {
  filter: none;
}

/* Light icons (on teal hexagons) - make white */
.why-mobile__icon--light {
  filter: brightness(0) invert(1);
}

/* Heading: responsive font size */
.why-mobile__heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(10px, 3.5vw, 14px);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 clamp(3px, 1vw, 5px) 0;
}

/* Dark heading (for gray hexagons) */
.why-mobile__heading--dark {
  color: #353535;
}

/* Light heading (for teal hexagons) */
.why-mobile__heading--light {
  color: #ffffff;
}

/* Text: responsive font size */
.why-mobile__text {
  font-family: "Inter", sans-serif;
  font-size: clamp(8px, 2.8vw, 11px);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

/* Dark text (for gray hexagons) - rgba(0, 0, 0, 0.7) */
.why-mobile__text--dark {
  color: rgba(0, 0, 0, 0.7);
}

/* Light text (for teal hexagons) */
.why-mobile__text--light {
  color: #ffffff;
}

/* ============================================
   WHY CHOOSE US — TABLET RESPONSIVE (481px - 1024px)
   Uses Puzzle-tablet.svg (600x600)
============================================ */
@media (min-width: 481px) and (max-width: 1024px) {
  .why-choose-us-mobile {
    padding: 40px 20px;
  }

  .why-mobile__title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  /* Show SVG pattern on tablet */
  .why-mobile__pattern {
    display: block;
  }

  /* Hide mobile SVG, show tablet SVG */
  .why-mobile__pattern-svg--mobile {
    display: none;
  }

  .why-mobile__pattern-svg--tablet {
    display: block;
    width: 100%;
    height: 100%;
  }

  .why-mobile__container {
    position: relative;
    width: 600px;
    max-width: 100%;
    height: 600px;
    margin: 0 auto;
  }

  /* Cards use absolute positioning on the 600x600 pattern */
  .why-mobile__card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    z-index: 1;
    box-sizing: border-box;
  }

  /* Top Left Card: Customization (gray area) - notch on right */
  .why-mobile__card--top-left {
    left: 0;
    top: 0;
    width: 304px;
    height: 295px;
    padding: 40px 60px 0 30px;
  }

  /* Top Right Card: Eco-Friendly (teal area) - notch on left & bottom */
  .why-mobile__card--top-right {
    right: 0;
    top: 0;
    width: 296px;
    height: 296px;
    padding: 35px 30px 0 60px;
  }

  /* Bottom Left Card: Replacement (teal area) - notch on top & right */
  .why-mobile__card--bottom-left {
    left: 0;
    bottom: 0;
    width: 296px;
    height: 296px;
    padding: 70px 30px 0 30px;
  }

  /* Bottom Right Card: Delivery (gray area) - notch on left & top */
  .why-mobile__card--bottom-right {
    right: 0;
    bottom: 0;
    width: 304px;
    height: 304px;
    padding: 70px 30px 0 70px;
  }

  .why-mobile__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .why-mobile__heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .why-mobile__text {
    font-size: 15px;
    max-width: 200px;
    line-height: 1.5;
  }
}

/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
  background: #f6f7f8;
  padding: 50px 20px 50px;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 48px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.faq-header {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.faq-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #111;
}

.faq-title span {
  color: var(--primary-color);
}

.faq-subtitle {
  margin-top: 10px;
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
}

.faq-header-visual img {
  width: 100%;
  max-width: 200px;
  margin-left: auto;
}

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

.faq-item {
  background: #f1f1f1;
  border-radius: 12px;
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.25s ease;
}

.faq-item:not(.active) {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
  background: var(--primary-color);
  box-shadow: 0 20px 45px rgba(77, 170, 167, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transform: translateY(-2px);
}

.faq-item:not(.active):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  background: #f4f4f4;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: #111;
  transition: color 0.3s ease;
  letter-spacing: 0.1px;
}

.faq-item.active .faq-question {
  color: #ffffff;
  padding-bottom: 12px;
}

.faq-question span:first-child {
  transition: transform 0.25s ease;
}

.faq-item:not(.active):hover .faq-question span:first-child {
  transform: translateX(2px);
}

.faq-question:active {
  transform: scale(0.985);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s ease;
}

.faq-item:not(.active):hover .faq-icon {
  background: rgba(0, 0, 0, 0.08);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #ffffff;
  opacity: 0.95;
  max-width: 680px;
  letter-spacing: 0.12px;
}

.faq-item:not(.active)::after {
  content: "";
  display: block;
  height: 1px;
  margin: 0 20px;
  background: rgba(0, 0, 0, 0.04);
}

.faq-item + .faq-item {
  margin-top: 0;
}

/* ============================================
   RESPONSIVE - SECTIONS
   ============================================ */

@media (max-width: 1100px) {
  .why-wrapper {
    flex-direction: column;
    gap: 56px;
  }

  .why-left,
  .why-right {
    width: 100%;
    text-align: center;
  }

  .why-left {
    padding-left: 0;
  }

  .why-left::before {
    display: none;
  }

  .why-big-text {
    font-size: 72px;
  }
}

@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 50px;
    aspect-ratio: 3 / 2;
  }

  .hero-content {
    text-align: center;

  }

  .form-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .brand-slide {
    flex: 0 0 22vw;
    height: 100px;
  }

  .brand-slide img {
    max-height: 65px;
  }

  .product-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 900px) {
  /* Product carousel - 3 cards at tablet-small */
  .product-card {
    flex: 0 0 calc(33.333% - 1rem);
  }

  .why-wrapper {
    flex-direction: column;
    gap: 48px;
  }

  .why-left {
    width: 100%;
    padding-left: 20px;
    text-align: center;
  }

  .why-left::before {
    display: none;
  }

  .why-big-text {
    font-size: 56px;
    line-height: 1;
  }

  .why-right {
    width: 100%;
  }

  .puzzle-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 75px 0 30px;
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-title {
    font-size: 1.625rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .brand-slide {
    flex: 0 0 30vw;
    height: 90px;
  }

  .brand-slide img {
    max-height: 55px;
  }

  /* ============================================
     PRODUCT CAROUSEL - MOBILE IMPROVEMENTS
  ============================================ */
  .products-carousel-wrapper {
    padding: 0 44px;
    position: relative;
  }

  .products-carousel {
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Mobile Card - Info Below Image */
  .product-card {
    flex: 0 0 calc(100% - 32px);
    max-width: 320px;
    margin: 0 auto;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .product-card:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .product-media {
    display: flex;
    flex-direction: column;
  }

  .product-image {
    height: 280px;
    border-radius: 16px 16px 0 0;
  }

  /* Keep primary image visible on mobile (disable hover swap) */
  .product-card:hover .primary-img,
  .product-card:active .primary-img,
  .product-card:focus .primary-img {
    opacity: 1 !important;
  }

  .primary-img {
    opacity: 1 !important;
  }

  /* Hide overlay on mobile - show info below */
  .product-overlay {
    position: relative;
    inset: auto;
    background: none;
    opacity: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .product-capabilities {
    margin-bottom: 8px;
  }

  .product-title {
    color: #333333;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0;
    text-align: left;
  }

  .product-quote-btn {
    opacity: 1;
    transform: none;
    margin-top: 12px;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .secondary-img {
    display: none;
  }

  /* Hide desktop arrows on mobile */
  .carousel-arrow {
    display: none;
  }

  /* Hide dots on mobile */
  .carousel-dots {
    display: none !important;
  }

  /* Product section title responsive */
  .section-header .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  /* General section title for tablet */
  .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
  }

  /* Mobile Navigation - Side Arrows */
  .carousel-nav-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
  }

  .carousel-arrow-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: auto;
    z-index: 10;
  }

  .arrow-prev-mobile {
    left: 0;
  }

  .arrow-next-mobile {
    right: 0;
  }

  .carousel-arrow-mobile img {
    width: 14px;
    height: 14px;
  }

  .carousel-arrow-mobile:active {
    transform: translateY(-50%) scale(0.95);
    background: var(--primary-color);
  }

  .carousel-arrow-mobile:active img {
    filter: brightness(0) invert(1);
  }

  .faq-container {
    padding: 32px 20px 28px;
  }

  .faq-header {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    margin-bottom: 24px;
  }

  .faq-header-visual img {
    margin: 0 auto;
    max-width: 160px;
  }

  .faq-subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
  }

  .faq-title {
    font-size: 1.75rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .faq-title br {
    display: none;
  }

  .hero {
    padding: 70px 0 25px;
    aspect-ratio: 4 / 3;
  }

  .hero-title {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
  }

  /* General section title for mobile */
  .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
  }

  .section-header .section-title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
  }

  .brand-slide {
    flex: 0 0 33vw;
    height: 70px;
  }

  .brand-slide img {
    max-height: 45px;
    max-width: 80px;
  }

  /* Product card - smaller screens */
  .product-card {
    flex: 0 0 calc(100% - 24px);
    max-width: 300px;
  }

  .product-image {
    height: 240px;
  }

  .product-overlay {
    padding: 14px;
  }

  .product-title {
    font-size: 0.95rem;
  }

  .product-quote-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* ============================================
   BRANDS SECTION — MOBILE (Figma: 412px × 92px)
============================================ */
@media (max-width: 768px) {
  .brands-section {
    padding: 24px 0 16px;
    background: #F0F0F0;
  }

  .brand-slide {
    flex: 0 0 28vw;
    height: 60px;
  }

  .brand-slide img {
    max-height: 40px;
    max-width: 70px;
    opacity: 0.85;
  }
}

@media (max-height: 750px) {
  .hero {
    min-height: auto;
    padding: 80px 0 30px;
    aspect-ratio: auto;
  }
}

/* =========================
   CONTACT SECTION — FIGMA MATCH
   Frame: 1286 × 811
========================= */

.contact-section {
  padding: 25px 20px 40px;
  background: #f2f2f2;
}

.contact-container {
  max-width: 1286px;
  margin: 0 auto;
}

/* TITLE */
.contact-title {
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  color: #353535;
  margin-bottom: 30px;
}

.contact-title span {
  color: #4daaa7;
}

/* MAIN WRAPPER */
.contact-wrapper {
  display: grid;
  grid-template-columns: 529px 634px;
  gap: 55px;
  justify-content: center;
  align-items: center;
}

/* LEFT CARD */
.contact-card {
  background: #ffffff;
  border: 3px solid #4daaa7;
  border-radius: 9.5px;
  padding: 32px 30px;
}

/* CARD TITLE */
.contact-card-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #353535;
}

.contact-card-title span {
  color: #4daaa7;
}

/* DESCRIPTION */
.contact-desc {
  font-size: 15px;
  line-height: 22.5px;
  color: #555;
  margin-bottom: 32px;
}

/* INFO ROWS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* ICON CIRCLE — matches Figma */
.icon-circle {
  width: 66px;
  height: 66px;
  min-width: 66px;
  border-radius: 50%;
  background: #4daaa7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

/* TEXT */
.info-row h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #353535;
}

.info-row p {
  font-size: 15px;
  line-height: 22.5px;
  color: #555;
}

/* SOCIAL */
.social {
  margin-top: 32px;
}

.social h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4daaa7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

/* MAP */
.contact-map {
  height: 650px;
  border-radius: 9.5px;
  overflow: hidden;
  border: 3px solid #ffffff;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map {
    height: 420px;
  }
}

/* ============================================
   CONTACT — MOBILE MODE (Figma: 412×727px)
   Android Compact - 3 frame
   Section bg: #EFEFEF, Card: white with teal border
============================================ */
@media (max-width: 768px) {
  .contact-section {
    padding: 35px 0 0;
    background: #EFEFEF;
  }

  .contact-container {
    padding: 0;
  }

  /* Title: Inter Bold 32px, centered */
  .contact-title {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #353535;
    margin-bottom: 20px;
    padding: 0 16px;
  }

  .contact-title span {
    color: #4DAAA7;
  }

  .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Contact Card: White bg, teal border, ~357×400px from Figma */
  .contact-card {
    background: #ffffff;
    border: 2.5px solid #4DAAA7;
    border-radius: 6px;
    padding: 25px 27px;
    margin: 0 27px;
  }

  /* Card Title: Poppins Bold 22px, teal */
  .contact-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #4DAAA7;
    margin-bottom: 6px;
  }

  .contact-card-title span {
    color: #4DAAA7;
  }

  /* Description: Poppins 400, 11px */
  .contact-desc {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: #353535;
    margin-bottom: 18px;
  }

  .contact-info {
    gap: 12px;
  }

  .info-row {
    gap: 10px;
    align-items: flex-start;
  }

  /* Icon circles: 44.56×44.56px from Figma */
  .icon-circle {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #4DAAA7;
  }

  .icon-circle svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
  }

  /* Labels: Poppins 600, 13px */
  .info-row h4 {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: #353535;
    margin-bottom: 2px;
  }

  /* Values: Poppins 400, 11px */
  .info-row p {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    color: #353535;
    margin: 0;
  }

  /* Social section */
  .social {
    margin-top: 20px;
  }

  /* "Follow us on Social Media": Poppins 600, 13px */
  .social h4 {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: #353535;
    margin-bottom: 8px;
  }

  /* Social icons: 25.46px circles */
  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    width: 25px;
    height: 25px;
    background: #4DAAA7;
  }

  .social-icons svg {
    width: 15px;
    height: 15px;
    color: #ffffff;
  }

  /* Map: Full width, extends beyond container */
  .contact-map {
    height: 257px;
    border-radius: 2px;
    border: 1px solid #ffffff;
    margin-top: 24px;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }

  .contact-map iframe {
    height: 257px;
  }
}

/* ===============================
   FOOTER (Figma Design)
   Background: #2D2D2D
   Font: Inter
   Container: 1440px max-width
================================ */

.footer {
  background-color: #2d2d2d;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 90px 40px;
}

/* ===============================
   FOOTER MAIN GRID
================================ */

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
}

/* ===============================
   BRAND COLUMN
================================ */

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  display: inline-block;
}

.footer__logo-svg {
  width: 160px;
  height: auto;
  color: #4daaa7;
}

.footer__tagline {
  margin-top: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  max-width: 280px;
}

/* ===============================
   FOOTER SOCIAL ICONS
================================ */

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #4daaa7;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.footer__social-link:hover {
  background-color: #3d9693;
  transform: translateY(-2px);
}

/* ===============================
   FOOTER COLUMNS
================================ */

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__heading {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* ===============================
   FOOTER LINKS
================================ */

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer__links a:hover {
  color: #4daaa7;
}

/* ===============================
   FOOTER CONTACT (Label/Value Format)
================================ */

.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__contact-list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer__contact-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  font-weight: 400;
}

.footer__contact-value {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
}

/* ===============================
   FOOTER BOTTOM BAR
================================ */

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: #4daaa7;
}

/* ===============================
   FOOTER RESPONSIVE
================================ */

/* ============================================
   FOOTER — MOBILE & TABLET MODE (Figma: 412px)
   Dark background #272727
   2-column layout matching Figma design
============================================ */

/* Hide Follow us column on desktop - it's only for mobile/tablet */
.footer__column--follow {
  display: none;
}

@media (max-width: 1024px) {
  .footer {
    background-color: #272727;
  }

  .footer__container {
    padding: 28px 24px 20px;
  }

  .footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    text-align: left;
    padding-bottom: 24px;
  }

  /* Logo centered at top, spanning both columns */
  .footer__brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
  }

  .footer__logo-svg {
    width: 86px;
    height: auto;
  }

  .footer__tagline {
    display: none;
  }

  /* Hide social icons in brand column on mobile */
  .footer__brand .footer__social {
    display: none;
  }

  /* Column styling - 2x2 grid layout */
  .footer__column {
    align-items: flex-start;
  }

  /* Show Follow us column on mobile */
  .footer__column--follow {
    display: flex;
  }

  /* Show social icons in Follow us column */
  .footer__social--mobile {
    display: flex !important;
    gap: 10px;
    margin-top: 8px;
  }

  .footer__social--mobile .footer__social-link {
    width: 28px;
    height: 28px;
    background-color: #4DAAA7;
  }

  .footer__social--mobile .footer__social-link svg {
    width: 14px;
    height: 14px;
  }

  .footer__heading {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #ffffff;
  }

  .footer__links {
    text-align: left;
  }

  .footer__links li {
    margin-bottom: 8px;
  }

  .footer__links a {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Contact section styling */
  .footer__contact-list li {
    margin-bottom: 10px;
  }

  .footer__contact-label {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2px;
  }

  .footer__contact-value {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Bottom bar */
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer__bottom p {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .footer__legal {
    justify-content: center;
    gap: 16px;
    order: -1;
  }

  .footer__legal a {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
  }
}

/* ============================================
   FOOTER — TABLET CENTERED (769px - 1024px)
============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__main {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .footer__column {
    align-items: center;
  }

  .footer__links {
    text-align: center;
  }

  .footer__contact-list {
    text-align: center;
  }

  .footer__contact-list li {
    align-items: center;
  }

  .footer__social--mobile {
    justify-content: center;
  }
}
