/* ============================================ */
/* ABOUT HERO - SPLIT SCREEN WITH IMAGE */
/* ============================================ */

.about-hero-split {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  overflow: hidden;
  padding-top: 0;
  margin-top: 0;
}

/* Left Column */
.about-hero-split-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  overflow-y: auto;
  height: 100%;
}

.about-hero-split-content {
  max-width: 520px;
  width: 100%;
  animation: aboutSplitFadeInLeft 0.8s ease forwards;
  padding: 1rem 0;
}

@keyframes aboutSplitFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-hero-split-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.about-hero-split-dot {
  width: 7px;
  height: 7px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.about-hero-split-badge {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.about-hero-split-title {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.about-hero-split-title span {
  color: var(--deluxe-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-hero-split-title span::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(194, 65, 12, 0.15);
  z-index: -1;
}

.about-hero-split-divider {
  width: 50px;
  height: 2px;
  background: var(--deluxe-red);
  margin-bottom: 1rem;
}

.about-hero-split-description {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-text);
  margin-bottom: 1.2rem;
}

/* Timeline */
.about-hero-split-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.about-hero-split-timeline-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.about-hero-split-timeline-marker {
  width: 8px;
  height: 8px;
  background: var(--deluxe-red);
  border-radius: 50%;
  margin-top: 0.25rem;
  position: relative;
  flex-shrink: 0;
}

.about-hero-split-timeline-marker::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 3px;
  width: 1px;
  height: calc(100% + 0.7rem);
  background: rgba(194, 65, 12, 0.25);
}

.about-hero-split-timeline-item:last-child
  .about-hero-split-timeline-marker::after {
  display: none;
}

.about-hero-split-timeline-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.about-hero-split-year {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--deluxe-red);
}

.about-hero-split-text {
  font-size: 0.75rem;
  color: var(--gray-text);
  line-height: 1.35;
}

/* Stats */
.about-hero-split-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-hero-split-stat {
  text-align: left;
}

.about-hero-split-stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deluxe-red);
  margin-bottom: 0.15rem;
  letter-spacing: -0.02em;
}

.about-hero-split-stat-label {
  font-size: 0.6rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Links */
.about-hero-split-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.about-hero-split-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--deluxe-red);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
}

.about-hero-split-link svg {
  transition: transform 0.3s ease;
  width: 14px;
  height: 14px;
}

.about-hero-split-link:hover {
  gap: 0.7rem;
  border-bottom-color: var(--deluxe-red);
}

.about-hero-split-link:hover svg {
  transform: translateX(4px);
}

/* Right Column - Desktop Only */
.about-hero-split-right {
  flex: 1;
  position: relative;
  overflow: hidden;
  animation: aboutSplitFadeInRight 0.8s ease forwards;
  height: 100%;
}

@keyframes aboutSplitFadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-hero-split-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.about-hero-split:hover .about-hero-split-image img {
  transform: scale(1.03);
}

.about-hero-split-image-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1rem;
  border-radius: 40px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-split-image-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.about-hero-split-image-content i {
  font-size: 14px;
  color: var(--deluxe-red);
}

.about-hero-split-image-content span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Quote on Image - Desktop Only */
.about-hero-split-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 0.6rem 1rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(194, 65, 12, 0.2);
}

.about-hero-split-quote svg {
  color: var(--deluxe-red);
  width: 18px;
  height: 18px;
}

.about-hero-split-quote p {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--soft-black);
  margin: 0;
}

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

/* Desktop Large (1400px and above) */
@media (min-width: 1400px) {
  .about-hero-split-left {
    padding: 0 4rem;
  }

  .about-hero-split-content {
    max-width: 560px;
  }

  .about-hero-split-title {
    font-size: 3rem;
  }

  .about-hero-split-stat-number {
    font-size: 1.6rem;
  }
}

/* Desktop Standard (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .about-hero-split-left {
    padding: 0 2.5rem;
  }

  .about-hero-split-title {
    font-size: 2.3rem;
  }

  .about-hero-split-description {
    font-size: 0.85rem;
  }
}

/* Desktop Small (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .about-hero-split-left {
    padding: 0 2rem;
  }

  .about-hero-split-title {
    font-size: 2rem;
  }

  .about-hero-split-description {
    font-size: 0.8rem;
  }

  .about-hero-split-stat-number {
    font-size: 1.2rem;
  }

  .about-hero-split-stat-label {
    font-size: 0.55rem;
  }
}

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

@media (min-width: 769px) and (max-width: 1024px) {
  .about-hero-split {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  .about-hero-split-left {
    padding: 4rem 2rem 2rem;
    justify-content: center;
    text-align: center;
    height: auto;
    min-height: auto;
  }

  .about-hero-split-content {
    max-width: 100%;
  }

  .about-hero-split-badge {
    justify-content: center;
  }

  .about-hero-split-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-split-timeline-item {
    justify-content: center;
    text-align: left;
  }

  .about-hero-split-stats {
    justify-content: center;
  }

  .about-hero-split-stat {
    text-align: center;
  }

  .about-hero-split-links {
    justify-content: center;
  }

  .about-hero-split-right {
    height: 380px;
    min-height: 380px;
  }

  .about-hero-split-quote {
    top: 1rem;
    right: 1rem;
  }

  .about-hero-split-image-overlay {
    bottom: 1rem;
    left: 1rem;
  }
}

/* ============================================ */
/* MOBILE RESPONSIVE - IMAGE AS BACKGROUND */
/* ============================================ */

@media (max-width: 768px) {
  .about-hero-split {
    overflow-x: hidden;
    max-width: 100vw;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    position: relative;
  }

  /* Set background image on the section itself */
  .about-hero-split::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/about/about.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
  }

  /* Dark overlay for text readability */
  .about-hero-split::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
  }

  /* Hide the right column on mobile */
  .about-hero-split-right {
    display: none;
  }

  /* Left column takes full width with transparent background */
  .about-hero-split-left {
    position: relative;
    z-index: 2;
    flex: none;
    width: 100%;
    padding: 70px 1rem 2rem;
    justify-content: center;
    text-align: center;
    background: transparent;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .about-hero-split-content {
    max-width: 100%;
    padding: 0;
    color: white;
  }

  .about-hero-split-badge {
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
  }

  .about-hero-split-dot {
    background: var(--deluxe-red);
  }

  .about-hero-split-title {
    color: white;
  }

  .about-hero-split-title span {
    color: var(--deluxe-red);
  }

  .about-hero-split-title span::before {
    background: rgba(194, 65, 12, 0.4);
  }

  .about-hero-split-divider {
    margin-left: auto;
    margin-right: auto;
    background: var(--deluxe-red);
  }

  .about-hero-split-description {
    color: rgba(255, 255, 255, 0.85);
  }

  .about-hero-split-timeline-marker {
    background: var(--deluxe-red);
  }

  .about-hero-split-timeline-marker::after {
    background: rgba(194, 65, 12, 0.5);
  }

  .about-hero-split-year {
    color: var(--deluxe-red);
  }

  .about-hero-split-text {
    color: rgba(255, 255, 255, 0.85);
  }

  .about-hero-split-stats {
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .about-hero-split-stat-number {
    color: var(--deluxe-red);
  }

  .about-hero-split-stat-label {
    color: rgba(255, 255, 255, 0.7);
  }

  .about-hero-split-link {
    color: var(--deluxe-red);
  }

  .about-hero-split-link svg {
    stroke: var(--deluxe-red);
  }

  /* Timeline items alignment */
  .about-hero-split-timeline-item {
    text-align: left;
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .about-hero-split-timeline-marker {
    width: 7px;
    height: 7px;
    margin-top: 0.2rem;
  }

  .about-hero-split-year {
    font-size: 0.65rem;
  }

  .about-hero-split-text {
    font-size: 0.7rem;
  }

  .about-hero-split-stats {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .about-hero-split-stat {
    text-align: center;
    min-width: 75px;
  }

  .about-hero-split-stat-number {
    font-size: 1.1rem;
  }

  .about-hero-split-stat-label {
    font-size: 0.5rem;
  }

  .about-hero-split-links {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .about-hero-split-link {
    font-size: 0.7rem;
    padding: 0.35rem 0;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .about-hero-split-left {
    padding: 60px 1rem 1.5rem;
  }

  .about-hero-split-title {
    font-size: 1.4rem;
  }

  .about-hero-split-description {
    font-size: 0.75rem;
  }

  .about-hero-split-year {
    font-size: 0.6rem;
  }

  .about-hero-split-text {
    font-size: 0.65rem;
  }

  .about-hero-split-stat-number {
    font-size: 1rem;
  }

  .about-hero-split-timeline-item {
    gap: 0.7rem;
  }

  .about-hero-split-timeline-marker {
    width: 6px;
    height: 6px;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .about-hero-split-left {
    padding: 55px 0.8rem 1.2rem;
  }

  .about-hero-split-title {
    font-size: 1.3rem;
  }

  .about-hero-split-description {
    font-size: 0.7rem;
  }

  .about-hero-split-stat-number {
    font-size: 0.9rem;
  }

  .about-hero-split-timeline-item {
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
  }

  .about-hero-split-timeline-marker {
    display: none;
  }

  .about-hero-split-year {
    font-size: 0.6rem;
    background: rgba(194, 65, 12, 0.2);
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 0.2rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .about-hero-split-content,
  .about-hero-split-right,
  .about-hero-split-image img {
    animation: none;
    transition: none;
  }

  .about-hero-split:hover .about-hero-split-image img {
    transform: none;
  }
}

/* RTL Support */
html[dir="rtl"] .about-hero-split-title span::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .about-hero-split-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .about-hero-split-link svg {
  transform: rotate(180deg);
}

html[dir="rtl"] .about-hero-split-link:hover svg {
  transform: rotate(180deg) translateX(4px);
}

@media (max-width: 768px) {
  html[dir="rtl"] .about-hero-split-title {
    text-align: center;
  }

  html[dir="rtl"] .about-hero-split-timeline-item {
    flex-direction: row-reverse;
    text-align: right;
    justify-content: flex-end;
  }
}

@media (max-width: 380px) {
  html[dir="rtl"] .about-hero-split-timeline-item {
    align-items: flex-end;
    text-align: right;
  }
}

/* Mission & Vision Section */
.about-mission-vision {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Elements - Desktop Only */
.about-mv-bg-gradient {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(194, 65, 12, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-mv-bg-shape {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(44, 110, 158, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

/* Container */
.about-mv-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

/* Content Grid */
.about-mv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Common Column Styles */
.about-mv-col {
  position: relative;
}

.about-mv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.about-mv-dot {
  width: 8px;
  height: 8px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.about-mv-badge {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.about-mv-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.about-mv-title span {
  color: var(--deluxe-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-mv-title span::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(194, 65, 12, 0.15);
  z-index: -1;
}

.about-mv-divider {
  width: 50px;
  height: 2px;
  background: var(--deluxe-red);
  margin-bottom: 1.5rem;
}

.about-mv-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}

/* Mission Column Quote */
.about-mv-quote {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-mv-quote svg {
  color: var(--deluxe-red);
  opacity: 0.6;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.about-mv-quote p {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gray-text);
  line-height: 1.4;
}

/* Vision Column Stats */
.about-mv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.about-mv-stat {
  text-align: center;
}

.about-mv-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deluxe-red);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.about-mv-stat-label {
  font-size: 0.65rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

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

/* Desktop Large (1400px and above) */
@media (min-width: 1400px) {
  .about-mv-container {
    max-width: 1400px;
    padding: 7rem 4rem;
  }

  .about-mv-title {
    font-size: 3rem;
  }

  .about-mv-text {
    font-size: 1.05rem;
  }

  .about-mv-stat-value {
    font-size: 1.8rem;
  }
}

/* Desktop Standard (1025px - 1399px) */
@media (min-width: 1025px) and (max-width: 1399px) {
  .about-mv-container {
    max-width: 1100px;
    padding: 5rem 2rem;
  }

  .about-mv-title {
    font-size: 2.2rem;
  }

  .about-mv-text {
    font-size: 0.95rem;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-mission-vision {
    min-height: auto;
    padding: 4rem 0;
  }

  .about-mv-container {
    padding: 3rem 2rem;
  }

  .about-mv-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-mv-title {
    font-size: 2rem;
  }

  .about-mv-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* ============================================ */
/* MOBILE DESIGN - FULL VIEWPORT HEIGHT */
/* ============================================ */

/* Mobile (768px and below) - Same as Hero Size */
@media (max-width: 768px) {
  .about-mission-vision {
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 10;
    scroll-snap-align: start;
    overflow-y: auto;
    overflow-x: hidden;
  }

  /* Hide scrollbar but keep functionality */
  .about-mission-vision::-webkit-scrollbar {
    display: none;
  }
  .about-mission-vision {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Strong separation from hero */
  .about-mission-vision::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--deluxe-red), var(--deluxe-blue));
    z-index: 20;
  }

  /* Hide desktop background elements */
  .about-mv-bg-gradient,
  .about-mv-bg-shape {
    display: none;
  }

  .about-mv-container {
    padding: 2rem 1rem;
    position: relative;
    z-index: 5;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-mv-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  /* No cards - clean text only */
  .about-mv-col {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }

  .about-mv-badge {
    margin-bottom: 0.6rem;
    font-size: 0.6rem;
  }

  .about-mv-dot {
    width: 6px;
    height: 6px;
  }

  .about-mv-title {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .about-mv-title span::before {
    bottom: 3px;
    height: 5px;
  }

  .about-mv-divider {
    width: 40px;
    margin-bottom: 0.8rem;
  }

  .about-mv-text {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    color: var(--gray-text);
  }

  /* Quote - Clean text */
  .about-mv-quote {
    padding: 0.6rem 0;
    gap: 0.7rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .about-mv-quote svg {
    width: 20px;
    height: 20px;
    opacity: 0.6;
  }

  .about-mv-quote p {
    font-size: 0.75rem;
  }

  /* Stats - Clean layout */
  .about-mv-stats {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 0.8rem;
    padding-top: 0;
    border-top: none;
  }

  .about-mv-stat {
    flex: 1;
    text-align: center;
    background: transparent;
    padding: 0;
  }

  .about-mv-stat-value {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }

  .about-mv-stat-label {
    font-size: 0.55rem;
    text-transform: none;
    letter-spacing: 0;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .about-mission-vision {
    height: 100vh;
    min-height: 100vh;
  }

  .about-mv-container {
    padding: 1.5rem 1rem;
  }

  .about-mv-content {
    gap: 1.2rem;
  }

  .about-mv-badge {
    font-size: 0.55rem;
  }

  .about-mv-title {
    font-size: 1.3rem;
  }

  .about-mv-text {
    font-size: 0.8rem;
  }

  .about-mv-quote p {
    font-size: 0.7rem;
  }

  .about-mv-stat-value {
    font-size: 1rem;
  }

  .about-mv-stat-label {
    font-size: 0.5rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .about-mv-container {
    padding: 1.2rem 0.8rem;
  }

  .about-mv-content {
    gap: 1rem;
  }

  .about-mv-title {
    font-size: 1.2rem;
  }

  .about-mv-text {
    font-size: 0.75rem;
  }

  .about-mv-quote p {
    font-size: 0.65rem;
  }

  .about-mv-stat-value {
    font-size: 0.9rem;
  }

  .about-mv-stat-label {
    font-size: 0.45rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .about-mission-vision {
    transition: none;
  }
}

/* RTL Support */
html[dir="rtl"] .about-mv-title span::before {
  left: auto;
  right: 0;
}

@media (max-width: 768px) {
  html[dir="rtl"] .about-mv-badge {
    justify-content: flex-start;
  }

  html[dir="rtl"] .about-mv-title {
    text-align: right;
  }

  html[dir="rtl"] .about-mv-divider {
    margin-left: auto;
    margin-right: 0;
  }

  html[dir="rtl"] .about-mv-text {
    text-align: right;
  }

  html[dir="rtl"] .about-mv-quote {
    flex-direction: row-reverse;
  }

  html[dir="rtl"] .about-mv-stats {
    flex-direction: row-reverse;
  }
}

/* Brand Values Section */
.about-values {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Container */
.about-values-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 3rem;
}

/* Section Header */
.about-values-header {
  text-align: center;
  margin-bottom: 2rem;
}

.about-values-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.about-values-dot {
  width: 8px;
  height: 8px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.about-values-badge {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.about-values-title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.about-values-title span {
  color: var(--deluxe-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-values-title span::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(194, 65, 12, 0.15);
  z-index: -1;
}

.about-values-divider {
  width: 50px;
  height: 2px;
  background: var(--deluxe-red);
  margin: 0 auto 0.8rem;
}

.about-values-subtitle {
  font-size: 0.9rem;
  color: var(--gray-text);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Values Grid - 3x2 */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

/* Value Card */
.about-value-card {
  background: white;
  padding: 1.2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.1);
  border-color: rgba(194, 65, 12, 0.15);
}

.about-value-icon {
  width: 55px;
  height: 55px;
  background: rgba(194, 65, 12, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  color: var(--deluxe-red);
  transition: all 0.3s ease;
}

.about-value-card:hover .about-value-icon {
  background: var(--deluxe-red);
  color: white;
  transform: scale(1.05);
}

.about-value-icon i {
  font-size: 24px;
}

.about-value-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--soft-black);
}

.about-value-description {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--gray-text);
}

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

/* Desktop Large (1400px and above) */
@media (min-width: 1400px) {
  .about-values-container {
    max-width: 1400px;
    padding: 2.5rem 4rem;
  }

  .about-values-title {
    font-size: 2.5rem;
  }

  .about-values-grid {
    gap: 1.5rem;
  }

  .about-value-card {
    padding: 1.5rem;
  }

  .about-value-icon {
    width: 65px;
    height: 65px;
  }

  .about-value-icon i {
    font-size: 28px;
  }

  .about-value-title {
    font-size: 1.1rem;
  }

  .about-value-description {
    font-size: 0.8rem;
  }
}

/* Desktop Standard (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .about-values-container {
    max-width: 1100px;
    padding: 2rem 2rem;
  }

  .about-values-title {
    font-size: 2rem;
  }

  .about-values-grid {
    gap: 1.2rem;
  }

  .about-value-card {
    padding: 1.2rem;
  }

  .about-value-icon {
    width: 55px;
    height: 55px;
  }

  .about-value-icon i {
    font-size: 24px;
  }

  .about-value-title {
    font-size: 0.95rem;
  }

  .about-value-description {
    font-size: 0.7rem;
  }
}

/* Desktop Small (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .about-values-container {
    max-width: 1000px;
    padding: 1.8rem 2rem;
  }

  .about-values-title {
    font-size: 1.8rem;
  }

  .about-values-subtitle {
    font-size: 0.85rem;
  }

  .about-values-grid {
    gap: 1rem;
  }

  .about-value-card {
    padding: 1rem;
  }

  .about-value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.6rem;
  }

  .about-value-icon i {
    font-size: 22px;
  }

  .about-value-title {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .about-value-description {
    font-size: 0.68rem;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-values {
    height: auto;
    min-height: 100vh;
  }

  .about-values-container {
    padding: 2.5rem 2rem;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .about-values-title {
    font-size: 2rem;
  }

  .about-value-card {
    padding: 1.2rem;
  }
}

/* ============================================ */
/* MOBILE DESIGN */
/* ============================================ */

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .about-values {
    height: auto;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 10;
    scroll-snap-align: start;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .about-values-container {
    padding: 2rem 1rem;
  }

  .about-values-header {
    margin-bottom: 1.5rem;
  }

  .about-values-badge {
    font-size: 0.6rem;
    margin-bottom: 0.6rem;
  }

  .about-values-dot {
    width: 6px;
    height: 6px;
  }

  .about-values-title {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .about-values-title span::before {
    bottom: 4px;
    height: 4px;
  }

  .about-values-divider {
    width: 45px;
    margin-bottom: 0.6rem;
  }

  .about-values-subtitle {
    font-size: 0.8rem;
  }

  /* Grid - 2x3 on mobile */
  .about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  /* Cards - Clean and compact */
  .about-value-card {
    background: white;
    padding: 1rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  .about-value-card:hover {
    transform: translateY(-2px);
  }

  .about-value-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.6rem;
  }

  .about-value-icon i {
    font-size: 20px;
  }

  .about-value-title {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }

  .about-value-description {
    font-size: 0.65rem;
    line-height: 1.35;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .about-values-container {
    padding: 1.5rem 1rem;
  }

  .about-values-header {
    margin-bottom: 1.2rem;
  }

  .about-values-title {
    font-size: 1.3rem;
  }

  .about-values-subtitle {
    font-size: 0.75rem;
  }

  .about-values-grid {
    gap: 0.8rem;
  }

  .about-value-card {
    padding: 0.9rem;
    border-radius: 16px;
  }

  .about-value-icon {
    width: 40px;
    height: 40px;
  }

  .about-value-icon i {
    font-size: 18px;
  }

  .about-value-title {
    font-size: 0.8rem;
  }

  .about-value-description {
    font-size: 0.6rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .about-values-container {
    padding: 1.2rem 0.8rem;
  }

  .about-values-title {
    font-size: 1.2rem;
  }

  .about-values-grid {
    gap: 0.6rem;
  }

  .about-value-card {
    padding: 0.8rem;
    border-radius: 14px;
  }

  .about-value-icon {
    width: 38px;
    height: 38px;
  }

  .about-value-icon i {
    font-size: 16px;
  }

  .about-value-title {
    font-size: 0.75rem;
  }

  .about-value-description {
    font-size: 0.55rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .about-value-card,
  .about-value-icon {
    transition: none;
  }

  .about-value-card:hover {
    transform: none;
  }
}

/* RTL Support */
html[dir="rtl"] .about-values-title span::before {
  left: auto;
  right: 0;
}

@media (max-width: 768px) {
  html[dir="rtl"] .about-values-title {
    text-align: center;
  }

  html[dir="rtl"] .about-values-subtitle {
    text-align: center;
  }
}

/* Our Story Section */
.about-story {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Container */
.about-story-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
}

/* Section Header */
.about-story-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.about-story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.about-story-dot {
  width: 8px;
  height: 8px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.about-story-badge {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.about-story-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.about-story-title span {
  color: var(--deluxe-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-story-title span::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(194, 65, 12, 0.15);
  z-index: -1;
}

.about-story-divider {
  width: 50px;
  height: 2px;
  background: var(--deluxe-red);
  margin: 0 auto 0.6rem;
}

.about-story-subtitle {
  font-size: 0.85rem;
  color: var(--gray-text);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Grid Layout: Timeline + Image */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Timeline Column */
.about-story-timeline-col {
  overflow-y: auto;
  max-height: 380px;
  padding-right: 0.5rem;
}

/* Custom scrollbar */
.about-story-timeline-col::-webkit-scrollbar {
  width: 4px;
}

.about-story-timeline-col::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.about-story-timeline-col::-webkit-scrollbar-thumb {
  background: var(--deluxe-red);
  border-radius: 4px;
}

/* Timeline */
.about-story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Milestone */
.about-story-milestone {
  display: flex;
  gap: 1rem;
  position: relative;
}

.about-story-milestone-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 24px;
}

.about-story-milestone-dot {
  width: 10px;
  height: 10px;
  background: var(--deluxe-red);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.about-story-milestone:hover .about-story-milestone-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.2);
}

.about-story-milestone-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(
    to bottom,
    var(--deluxe-red),
    rgba(194, 65, 12, 0.2)
  );
  margin: 4px 0;
  min-height: 35px;
}

.about-story-milestone:last-child .about-story-milestone-line {
  display: none;
}

.about-story-milestone-content {
  flex: 1;
  padding-bottom: 0.8rem;
}

.about-story-milestone-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--deluxe-red);
  margin-bottom: 0.2rem;
  letter-spacing: 0.05em;
}

.about-story-milestone-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--soft-black);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.about-story-milestone-text {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--gray-text);
}

/* Image Column */
.about-story-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-story-image {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-story-image:hover {
  transform: translateY(-5px);
}

.about-story-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-story-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.5rem;
  color: white;
}

.about-story-image-year {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--deluxe-red);
  margin-bottom: 0.3rem;
}

.about-story-image-text {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

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

/* Desktop Large (1400px and above) */
@media (min-width: 1400px) {
  .about-story-container {
    max-width: 1400px;
    padding: 2rem 4rem;
  }

  .about-story-title {
    font-size: 2.3rem;
  }

  .about-story-grid {
    gap: 4rem;
  }

  .about-story-timeline-col {
    max-height: 420px;
  }

  .about-story-image img {
    height: 360px;
  }
}

/* Desktop Standard (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .about-story-container {
    max-width: 1100px;
    padding: 1.5rem 2rem;
  }

  .about-story-title {
    font-size: 1.9rem;
  }

  .about-story-grid {
    gap: 2.5rem;
  }

  .about-story-image img {
    height: 300px;
  }
}

/* Desktop Small (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .about-story-container {
    max-width: 1000px;
    padding: 1.5rem 2rem;
  }

  .about-story-title {
    font-size: 1.7rem;
  }

  .about-story-subtitle {
    font-size: 0.8rem;
  }

  .about-story-grid {
    gap: 2rem;
  }

  .about-story-timeline-col {
    max-height: 350px;
  }

  .about-story-image img {
    height: 280px;
  }

  .about-story-milestone-title {
    font-size: 0.85rem;
  }

  .about-story-milestone-text {
    font-size: 0.7rem;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-story {
    height: auto;
    min-height: 100vh;
  }

  .about-story-container {
    padding: 2rem 2rem;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story-timeline-col {
    max-height: none;
    overflow-y: visible;
  }

  .about-story-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-story-title {
    font-size: 1.8rem;
  }
}

/* ============================================ */
/* MOBILE DESIGN - FULLY VISIBLE WITHOUT SCROLL */
/* ============================================ */

/* Mobile (768px and below) - Compact One-Screen Layout */
@media (max-width: 768px) {
  .about-story {
    height: 100vh;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 10;
    scroll-snap-align: start;
    overflow-y: auto;
    overflow-x: hidden;
  }

  /* Hide scrollbar but keep functionality */
  .about-story::-webkit-scrollbar {
    display: none;
  }
  .about-story {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .about-story-container {
    padding: 1rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-story-header {
    margin-bottom: 0.8rem;
  }

  .about-story-badge {
    font-size: 0.55rem;
    margin-bottom: 0.4rem;
  }

  .about-story-dot {
    width: 5px;
    height: 5px;
  }

  .about-story-title {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .about-story-title span::before {
    bottom: 3px;
    height: 3px;
  }

  .about-story-divider {
    width: 35px;
    margin-bottom: 0.4rem;
  }

  .about-story-subtitle {
    font-size: 0.7rem;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  /* Timeline - Compact */
  .about-story-timeline-col {
    overflow-y: visible;
    max-height: none;
    padding-right: 0;
  }

  .about-story-timeline {
    gap: 0.4rem;
  }

  .about-story-milestone {
    gap: 0.6rem;
  }

  .about-story-milestone-marker {
    width: 18px;
  }

  .about-story-milestone-dot {
    width: 6px;
    height: 6px;
  }

  .about-story-milestone-line {
    min-height: 25px;
  }

  .about-story-milestone-content {
    padding-bottom: 0.4rem;
  }

  .about-story-milestone-year {
    font-size: 0.6rem;
    margin-bottom: 0.1rem;
  }

  .about-story-milestone-title {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .about-story-milestone-text {
    font-size: 0.6rem;
    line-height: 1.3;
  }

  /* Image - Compact */
  .about-story-image {
    max-width: 100%;
    border-radius: 18px;
  }

  .about-story-image img {
    height: 140px;
  }

  .about-story-image-overlay {
    padding: 0.8rem;
  }

  .about-story-image-year {
    font-size: 0.6rem;
    margin-bottom: 0.2rem;
  }

  .about-story-image-text {
    font-size: 0.65rem;
  }
}

/* Small Mobile (480px and below) - Ultra Compact */
@media (max-width: 480px) {
  .about-story-container {
    padding: 0.8rem 0.8rem;
  }

  .about-story-header {
    margin-bottom: 0.6rem;
  }

  .about-story-badge {
    font-size: 0.5rem;
  }

  .about-story-title {
    font-size: 1.1rem;
  }

  .about-story-subtitle {
    font-size: 0.65rem;
  }

  .about-story-grid {
    gap: 0.6rem;
  }

  .about-story-timeline {
    gap: 0.3rem;
  }

  .about-story-milestone {
    gap: 0.5rem;
  }

  .about-story-milestone-marker {
    width: 16px;
  }

  .about-story-milestone-dot {
    width: 5px;
    height: 5px;
  }

  .about-story-milestone-line {
    min-height: 20px;
  }

  .about-story-milestone-year {
    font-size: 0.55rem;
  }

  .about-story-milestone-title {
    font-size: 0.7rem;
  }

  .about-story-milestone-text {
    font-size: 0.55rem;
  }

  .about-story-image img {
    height: 120px;
  }

  .about-story-image-overlay {
    padding: 0.6rem;
  }

  .about-story-image-year {
    font-size: 0.55rem;
  }

  .about-story-image-text {
    font-size: 0.6rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .about-story-container {
    padding: 0.6rem 0.6rem;
  }

  .about-story-title {
    font-size: 1rem;
  }

  .about-story-subtitle {
    font-size: 0.6rem;
  }

  .about-story-milestone-year {
    font-size: 0.5rem;
  }

  .about-story-milestone-title {
    font-size: 0.65rem;
  }

  .about-story-milestone-text {
    font-size: 0.5rem;
  }

  .about-story-image img {
    height: 100px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .about-story-milestone-dot {
    transition: none;
  }

  .about-story-image {
    transition: none;
  }

  .about-story-milestone:hover .about-story-milestone-dot {
    transform: none;
  }

  .about-story-image:hover {
    transform: none;
  }
}

/* RTL Support */
html[dir="rtl"] .about-story-title span::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .about-story-milestone {
  flex-direction: row-reverse;
}

html[dir="rtl"] .about-story-milestone-marker {
  order: 2;
}

html[dir="rtl"] .about-story-milestone-content {
  order: 1;
  text-align: right;
}

@media (max-width: 768px) {
  html[dir="rtl"] .about-story-title {
    text-align: center;
  }

  html[dir="rtl"] .about-story-subtitle {
    text-align: center;
  }

  html[dir="rtl"] .about-story-milestone {
    flex-direction: row-reverse;
  }

  html[dir="rtl"] .about-story-milestone-marker {
    order: 2;
  }

  html[dir="rtl"] .about-story-milestone-content {
    order: 1;
  }
}

/* Global Presence Section */
.about-global {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Container */
.about-global-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Section Header - No Cutting */
.about-global-header {
  text-align: center;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
  padding-top: 0;
}

.about-global-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.about-global-dot {
  width: 7px;
  height: 7px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.about-global-badge {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.about-global-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.about-global-title span {
  color: var(--deluxe-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-global-title span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(194, 65, 12, 0.15);
  z-index: -1;
}

.about-global-divider {
  width: 45px;
  height: 2px;
  background: var(--deluxe-red);
  margin: 0 auto 0.5rem;
}

.about-global-subtitle {
  font-size: 0.75rem;
  color: var(--gray-text);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Main Content - Grid Layout */
.about-global-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  width: 100%;
  margin-top: 0;
}

/* Map Section - No Border */
.about-global-map-section {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: none;
  border: none;
}

.about-global-map-container {
  width: 100%;
  height: 100%;
  background: #f8f6f2;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
}

/* Leaflet Map Customization - No Overlay */
.about-global-map-container .leaflet-container {
  background: #f8f6f2;
  font-family: var(--font-primary);
  height: 100%;
  width: 100%;
}

/* Remove any red overlay from map */
.about-global-map-container .leaflet-overlay-pane {
  display: none;
}

/* Custom Marker Styling - Black Markers */
.custom-marker {
  background: transparent;
  border: none;
}

.custom-marker div {
  background-color: #ff0000 !important;
  border: 2px solid white !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
}

/* Stats Section */
.about-global-stats-section {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: auto;
  overflow: visible;
  padding-right: 0;
  width: 100%;
}

/* Statistics Grid */
.about-global-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.about-global-stat-card {
  background: white;
  padding: 0.8rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.05);
}

.about-global-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.1);
  border-color: rgba(194, 65, 12, 0.2);
}

.about-global-stat-icon {
  width: 36px;
  height: 36px;
  background: rgba(194, 65, 12, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.4rem;
  color: var(--deluxe-red);
}

.about-global-stat-icon i {
  font-size: 16px;
}

.about-global-stat-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deluxe-red);
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.about-global-stat-label {
  font-size: 0.55rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Key Markets */
.about-global-markets {
  background: white;
  padding: 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.05);
}

.about-global-markets-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--soft-black);
  margin-bottom: 0.5rem;
  text-align: center;
}

.about-global-markets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  justify-items: center;
}

.about-global-market-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  color: var(--gray-text);
  transition: all 0.2s ease;
  padding: 0.1rem 0;
  width: 100%;
}

.about-global-market-item i {
  color: var(--deluxe-red);
  font-size: 8px;
  flex-shrink: 0;
}

.about-global-market-item:hover {
  color: var(--deluxe-red);
  transform: translateX(3px);
}

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

/* Desktop Large (1400px and above) */
@media (min-width: 1400px) {
  .about-global-container {
    max-width: 1400px;
    padding: 2rem 3rem;
  }

  .about-global-title {
    font-size: 2rem;
  }

  .about-global-content {
    gap: 1.8rem;
  }

  .about-global-map-container {
    height: 100%;
    min-height: 380px;
  }

  .about-global-stat-number {
    font-size: 1.3rem;
  }

  .about-global-stat-icon {
    width: 40px;
    height: 40px;
  }

  .about-global-stat-icon i {
    font-size: 18px;
  }
}

/* Desktop Standard (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .about-global-container {
    max-width: 1100px;
    padding: 1.5rem 2rem;
  }

  .about-global-title {
    font-size: 1.7rem;
  }

  .about-global-map-container {
    height: 100%;
    min-height: 340px;
  }

  .about-global-stat-number {
    font-size: 1.2rem;
  }

  .about-global-stat-icon {
    width: 36px;
    height: 36px;
  }

  .about-global-stat-icon i {
    font-size: 16px;
  }
}

/* Desktop Small (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .about-global-container {
    max-width: 1000px;
    padding: 1rem 1.5rem;
  }

  .about-global-title {
    font-size: 1.5rem;
  }

  .about-global-subtitle {
    font-size: 0.7rem;
  }

  .about-global-content {
    gap: 1.2rem;
  }

  .about-global-map-container {
    height: 100%;
    min-height: 300px;
  }

  .about-global-stat-number {
    font-size: 1.1rem;
  }

  .about-global-stat-icon {
    width: 34px;
    height: 34px;
  }

  .about-global-stat-icon i {
    font-size: 15px;
  }

  .about-global-market-item {
    font-size: 0.58rem;
  }
}

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

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-global {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  .about-global-container {
    padding: 1.5rem 1.5rem;
  }

  .about-global-header {
    margin-bottom: 1rem;
  }

  .about-global-title {
    font-size: 1.6rem;
  }

  .about-global-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-global-map-container {
    height: 320px;
    min-height: auto;
  }

  .about-global-stats-section {
    flex-direction: row;
    gap: 1rem;
  }

  .about-global-stats-grid {
    flex: 1;
    gap: 0.6rem;
  }

  .about-global-markets {
    flex: 1;
  }

  .about-global-stat-card {
    padding: 0.7rem;
  }

  .about-global-stat-number {
    font-size: 1rem;
  }
}

/* ============================================ */
/* MOBILE RESPONSIVE - FULLY VISIBLE */
/* ============================================ */

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .about-global {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .about-global-container {
    padding: 1rem 1rem;
    width: 100%;
  }

  .about-global-header {
    margin-bottom: 0.8rem;
  }

  .about-global-badge {
    font-size: 0.55rem;
  }

  .about-global-dot {
    width: 6px;
    height: 6px;
  }

  .about-global-title {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }

  .about-global-title span::before {
    bottom: 3px;
    height: 3px;
  }

  .about-global-divider {
    width: 35px;
    margin-bottom: 0.4rem;
  }

  .about-global-subtitle {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .about-global-content {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  /* Keep map height as original */
  .about-global-map-container {
    height: 240px;
    border-radius: 16px;
    min-height: auto;
  }

  .about-global-stats-section {
    flex-direction: column;
    gap: 0.8rem;
  }

  .about-global-stats-grid {
    gap: 0.6rem;
  }

  .about-global-stat-card {
    padding: 0.6rem;
  }

  .about-global-stat-icon {
    width: 32px;
    height: 32px;
  }

  .about-global-stat-icon i {
    font-size: 14px;
  }

  .about-global-stat-number {
    font-size: 1rem;
  }

  .about-global-stat-label {
    font-size: 0.5rem;
  }

  .about-global-markets {
    padding: 0.6rem;
  }

  .about-global-markets-title {
    font-size: 0.65rem;
    margin-bottom: 0.4rem;
  }

  .about-global-markets-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.3rem;
  }

  .about-global-market-item {
    font-size: 0.55rem;
    gap: 0.4rem;
  }

  .about-global-market-item i {
    font-size: 7px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .about-global-container {
    padding: 0.8rem 0.8rem;
  }

  .about-global-title {
    font-size: 1.2rem;
  }

  .about-global-subtitle {
    font-size: 0.65rem;
  }

  .about-global-map-container {
    height: 200px;
  }

  .about-global-stat-number {
    font-size: 0.9rem;
  }

  .about-global-market-item {
    font-size: 0.5rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .about-global-container {
    padding: 0.6rem 0.6rem;
  }

  .about-global-title {
    font-size: 1rem;
  }

  .about-global-map-container {
    height: 180px;
  }

  .about-global-stat-number {
    font-size: 0.8rem;
  }

  .about-global-market-item {
    font-size: 0.45rem;
  }

  .about-global-markets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .about-global-stat-card,
  .about-global-market-item {
    transition: none;
  }
}

/* RTL Support */
html[dir="rtl"] .about-global-title span::before {
  left: auto;
  right: 0;
}

@media (max-width: 768px) {
  html[dir="rtl"] .about-global-title {
    text-align: center;
  }

  html[dir="rtl"] .about-global-subtitle {
    text-align: center;
  }

  html[dir="rtl"] .about-global-market-item {
    flex-direction: row-reverse;
  }

  html[dir="rtl"] .about-global-market-item:hover {
    transform: translateX(-3px);
  }
}

/* Testimonials & Trust Section */
.about-testimonials {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Container */
.about-testimonials-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  overflow: visible;
}

/* Section Header - Moved Down, Reduced Bottom Margin */
.about-testimonials-header {
  text-align: center;
  margin-bottom: 0.3rem;
  flex-shrink: 0;
}

.about-testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}

.about-testimonials-dot {
  width: 7px;
  height: 7px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.about-testimonials-badge {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.about-testimonials-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.about-testimonials-title span {
  color: var(--deluxe-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-testimonials-title span::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(194, 65, 12, 0.15);
  z-index: -1;
}

.about-testimonials-divider {
  width: 45px;
  height: 2px;
  background: var(--deluxe-red);
  margin: 0 auto 0.2rem;
}

.about-testimonials-subtitle {
  font-size: 0.75rem;
  color: var(--gray-text);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Testimonials Grid - Desktop */
.about-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 0.3rem;
  flex: 1;
  min-height: 0;
  overflow: visible;
}

/* Testimonial Card */
.about-testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.05);
  height: 50%;
  display: flex;
  flex-direction: column;
}

.about-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.1);
  border-color: rgba(194, 65, 12, 0.15);
}

.about-testimonial-rating {
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.2rem;
}

.about-testimonial-rating i {
  color: #f5b042;
  font-size: 11px;
}

.about-testimonial-text {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--gray-text);
  margin-bottom: 0.5rem;
  flex: 1;
  font-style: italic;
}

.about-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.about-testimonial-avatar {
  width: 36px;
  height: 36px;
  background: rgba(194, 65, 12, 0.1);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--deluxe-red);
  flex-shrink: 0;
}

.about-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-testimonial-avatar span {
  display: none;
}

.about-testimonial-avatar.avatar-fallback span {
  display: block;
}

.about-testimonial-info h4 {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--soft-black);
}

.about-testimonial-info span {
  font-size: 0.6rem;
  color: var(--gray-text);
}

/* Trust Badges - Moved Up with Minimal Padding */
.about-trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.2rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.about-trust-item {
  text-align: center;
  padding: 0.1rem 0.8rem;
}

.about-trust-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deluxe-red);
  margin-bottom: 0.05rem;
  line-height: 1.2;
}

.about-trust-label {
  font-size: 0.6rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile Slider - Hidden on Desktop */
.about-testimonials-slider {
  display: none;
}

/* ============================================ */
/* DESKTOP RESPONSIVE - HEADER DOWN, FOOTER UP */
/* ============================================ */

/* Desktop Large (1400px and above) */
@media (min-width: 1400px) {
  .about-testimonials-container {
    max-width: 1400px;
    padding: 0 3rem;
  }

  .about-testimonials-header {
    margin-bottom: 0.3rem;
    margin-top: 8rem;
  }

  .about-testimonials-title {
    font-size: 2rem;
  }

  .about-testimonials-grid {
    gap: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .about-testimonial-card {
    padding: 1.2rem;
    height: 50%;
  }

  .about-testimonial-text {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }

  .about-testimonial-author {
    padding-top: 0.5rem;
  }

  .about-trust-badges {
    padding: 0.2rem 0 0;
    gap: 1.8rem;
  }

  .about-trust-number {
    font-size: 1.6rem;
  }
}

/* Desktop Standard (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .about-testimonials-container {
    max-width: 1100px;
    padding: 0 2rem;
  }

  .about-testimonials-header {
    margin-bottom: 0.25rem;
    margin-top: 7rem;
  }

  .about-testimonials-title {
    font-size: 1.7rem;
  }

  .about-testimonials-grid {
    gap: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .about-testimonial-card {
    height: 50%;
  }

  .about-testimonial-text {
    font-size: 0.72rem;
    margin-bottom: 0.45rem;
  }

  .about-testimonial-author {
    padding-top: 0.35rem;
  }

  .about-testimonial-info h4 {
    font-size: 0.75rem;
  }

  .about-trust-badges {
    padding: 0.15rem 0 0;
  }

  .about-trust-number {
    font-size: 1.3rem;
  }
}

/* Desktop Small (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .about-testimonials-container {
    max-width: 1000px;
    padding: 0 1.5rem;
  }

  .about-testimonials-header {
    margin-bottom: 0.2rem;
    margin-top: 6.5rem;
  }

  .about-testimonials-title {
    font-size: 1.5rem;
  }

  .about-testimonials-subtitle {
    font-size: 0.7rem;
  }

  .about-testimonials-grid {
    gap: 0.8rem;
    margin-bottom: 0.2rem;
  }

  .about-testimonial-card {
    padding: 0.9rem;
    height: 50%;
  }

  .about-testimonial-text {
    font-size: 0.68rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
  }

  .about-testimonial-author {
    padding-top: 0.3rem;
    gap: 0.6rem;
  }

  .about-testimonial-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .about-testimonial-info h4 {
    font-size: 0.7rem;
  }

  .about-testimonial-info span {
    font-size: 0.55rem;
  }

  .about-trust-badges {
    padding: 0.1rem 0 0;
    gap: 1rem;
  }

  .about-trust-number {
    font-size: 1.2rem;
  }

  .about-trust-label {
    font-size: 0.55rem;
  }
}

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

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-testimonials {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  .about-testimonials-container {
    padding: 1rem 1.5rem;
    height: auto;
    min-height: 100vh;
    justify-content: center;
  }

  .about-testimonials-header {
    margin-bottom: 1rem;
    margin-top: 0;
  }

  .about-testimonials-title {
    font-size: 1.6rem;
  }

  .about-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .about-testimonial-card {
    padding: 1rem;
    height: auto;
  }

  .about-testimonial-text {
    margin-bottom: 0.5rem;
  }

  .about-testimonial-author {
    padding-top: 0.4rem;
  }

  .about-trust-badges {
    padding: 0.6rem 0 0;
    gap: 1.2rem;
  }

  .about-trust-number {
    font-size: 1.2rem;
  }
}

/* ============================================ */
/* MOBILE RESPONSIVE - SLIDER MODE */
/* ============================================ */

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .about-testimonials {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .about-testimonials-container {
    padding: 0.8rem 1rem;
    height: auto;
    min-height: 100vh;
    justify-content: center;
  }

  .about-testimonials-header {
    margin-bottom: 0.8rem;
    margin-top: 0;
  }

  .about-testimonials-badge {
    font-size: 0.55rem;
  }

  .about-testimonials-dot {
    width: 6px;
    height: 6px;
  }

  .about-testimonials-title {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }

  .about-testimonials-title span::before {
    bottom: 3px;
    height: 3px;
  }

  .about-testimonials-divider {
    width: 35px;
    margin-bottom: 0.4rem;
  }

  .about-testimonials-subtitle {
    font-size: 0.7rem;
  }

  /* Hide desktop grid on mobile */
  .about-testimonials-grid {
    display: none;
  }

  /* Show mobile slider */
  .about-testimonials-slider {
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .about-testimonials-slider-track {
    display: flex;
    direction: ltr;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .about-testimonials-slide {
    flex: 0 0 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .about-testimonials-slide .about-testimonial-card {
    margin: 0;
    padding: 1rem;
    height: auto;
  }

  .about-testimonials-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.8rem;
  }

  .about-testimonials-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .about-testimonials-dot.active {
    width: 24px;
    background: var(--deluxe-red);
    border-radius: 10px;
  }

  .about-testimonial-text {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .about-testimonial-author {
    padding-top: 0.4rem;
  }

  .about-testimonial-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .about-testimonial-info h4 {
    font-size: 0.8rem;
  }

  .about-testimonial-info span {
    font-size: 0.6rem;
  }

  /* Trust Badges - 2x2 Grid on Mobile */
  .about-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    padding: 0.6rem 0;
  }

  .about-trust-item {
    padding: 0.4rem;
  }

  .about-trust-number {
    font-size: 1.1rem;
  }

  .about-trust-label {
    font-size: 0.5rem;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .about-testimonials-container {
    padding: 0.6rem 0.8rem;
  }

  .about-testimonials-header {
    margin-bottom: 0.6rem;
  }

  .about-testimonials-title {
    font-size: 1.2rem;
  }

  .about-testimonials-subtitle {
    font-size: 0.65rem;
  }

  .about-testimonial-text {
    font-size: 0.7rem;
    margin-bottom: 0.45rem;
  }

  .about-testimonial-author {
    padding-top: 0.35rem;
  }

  .about-testimonial-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .about-testimonial-info h4 {
    font-size: 0.75rem;
  }

  .about-trust-number {
    font-size: 1rem;
  }

  .about-trust-label {
    font-size: 0.45rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .about-testimonials-container {
    padding: 0.5rem 0.6rem;
  }

  .about-testimonials-title {
    font-size: 1rem;
  }

  .about-testimonial-text {
    font-size: 0.65rem;
    margin-bottom: 0.4rem;
  }

  .about-trust-number {
    font-size: 0.9rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .about-testimonial-card,
  .about-testimonials-slider-track {
    transition: none;
  }

  .about-testimonial-card:hover {
    transform: none;
  }
}

/* RTL Support */
html[dir="rtl"] .about-testimonials-title span::before {
  left: auto;
  right: 0;
}

@media (max-width: 768px) {
  html[dir="rtl"] .about-testimonials-title {
    text-align: center;
  }

  html[dir="rtl"] .about-testimonials-subtitle {
    text-align: center;
  }

  html[dir="rtl"] .about-testimonial-author {
    flex-direction: row;
  }

  html[dir="rtl"] .about-testimonial-info {
    text-align: right;
  }

  html[dir="rtl"] .about-testimonial-rating {
    justify-content: center;
  }

  html[dir="rtl"] .about-testimonials-slide .about-testimonial-card {
    direction: rtl;
    text-align: right;
  }
}

/* Call to Action Section */
.about-cta {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Container */
.about-cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Content - Centered */
.about-cta-content {
  text-align: center;
  max-width: 700px;
  width: 100%;
  animation: aboutCtaFadeInUp 0.6s ease forwards;
}

@keyframes aboutCtaFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.about-cta-dot {
  width: 7px;
  height: 7px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.about-cta-badge {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.about-cta-title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.about-cta-title span {
  color: var(--deluxe-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-cta-title span::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 5px;
  background: rgba(194, 65, 12, 0.15);
  z-index: -1;
}

.about-cta-divider {
  width: 50px;
  height: 2px;
  background: var(--deluxe-red);
  margin: 0 auto 0.8rem;
}

.about-cta-subtitle {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* Buttons */
.about-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.about-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: var(--deluxe-red);
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.about-cta-btn-primary svg {
  transition: transform 0.3s ease;
}

.about-cta-btn-primary:hover {
  background: #a3340a;
  transform: translateY(-2px);
  gap: 0.8rem;
}

.about-cta-btn-primary:hover svg {
  transform: translateX(4px);
}

.about-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: var(--soft-black);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1.5px solid var(--gray-medium);
  border-radius: 2px;
}

.about-cta-btn-secondary:hover {
  border-color: var(--deluxe-red);
  color: var(--deluxe-red);
  transform: translateY(-2px);
}

/* Contact Info */
.about-cta-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--gray-text);
  transition: all 0.2s ease;
}

.about-cta-contact-item i {
  color: var(--deluxe-red);
  font-size: 14px;
  width: 20px;
}

.about-cta-contact-item:hover {
  color: var(--deluxe-red);
  transform: translateY(-2px);
}

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

/* Desktop Large (1400px and above) */
@media (min-width: 1400px) {
  .about-cta-container {
    max-width: 1400px;
    padding: 2.5rem 3rem;
  }

  .about-cta-title {
    font-size: 2.5rem;
  }

  .about-cta-subtitle {
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-cta-btn-primary,
  .about-cta-btn-secondary {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
}

/* Desktop Standard (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .about-cta-container {
    max-width: 1100px;
    padding: 2rem;
  }

  .about-cta-title {
    font-size: 2rem;
  }
}

/* Desktop Small (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .about-cta-container {
    max-width: 1000px;
    padding: 1.5rem;
  }

  .about-cta-title {
    font-size: 1.8rem;
  }

  .about-cta-subtitle {
    font-size: 0.85rem;
  }

  .about-cta-contact-item {
    font-size: 0.75rem;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-cta {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }

  .about-cta-container {
    padding: 3rem 1.5rem;
    height: auto;
    min-height: 100vh;
  }

  .about-cta-title {
    font-size: 1.8rem;
  }

  .about-cta-subtitle {
    font-size: 0.85rem;
  }

  .about-cta-contact {
    gap: 1.5rem;
  }

  .about-cta-contact-item {
    font-size: 0.75rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .about-cta {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .about-cta-container {
    padding: 2rem 1rem;
    width: 100%;
    height: auto;
    min-height: 100vh;
  }

  .about-cta-badge {
    font-size: 0.55rem;
    margin-bottom: 0.6rem;
  }

  .about-cta-dot {
    width: 6px;
    height: 6px;
  }

  .about-cta-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .about-cta-title span::before {
    bottom: 3px;
    height: 4px;
  }

  .about-cta-divider {
    width: 40px;
    margin-bottom: 0.6rem;
  }

  .about-cta-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .about-cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }

  .about-cta-btn-primary,
  .about-cta-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }

  .about-cta-contact {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    padding-top: 0.8rem;
  }

  .about-cta-contact-item {
    font-size: 0.7rem;
  }

  .about-cta-contact-item i {
    font-size: 12px;
    width: 18px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .about-cta-container {
    padding: 1.5rem 0.8rem;
  }

  .about-cta-title {
    font-size: 1.3rem;
  }

  .about-cta-subtitle {
    font-size: 0.75rem;
  }

  .about-cta-contact-item {
    font-size: 0.65rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .about-cta-container {
    padding: 1.2rem 0.6rem;
  }

  .about-cta-title {
    font-size: 1.2rem;
  }

  .about-cta-subtitle {
    font-size: 0.7rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .about-cta-content {
    animation: none;
  }

  .about-cta-btn-primary:hover,
  .about-cta-btn-secondary:hover,
  .about-cta-contact-item:hover {
    transform: none;
  }
}

/* RTL Support */
html[dir="rtl"] .about-cta-title span::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .about-cta-btn-primary svg {
  transform: rotate(180deg);
}

html[dir="rtl"] .about-cta-btn-primary:hover svg {
  transform: rotate(180deg) translateX(4px);
}

@media (max-width: 768px) {
  html[dir="rtl"] .about-cta-title {
    text-align: center;
  }

  html[dir="rtl"] .about-cta-subtitle {
    text-align: center;
  }

  html[dir="rtl"] .about-cta-contact-item {
    flex-direction: row-reverse;
  }
}

/* Footer Section */
.footer-section {
  position: relative;
  width: 100%;
  background: var(--bg-white);
  color: var(--soft-black);
  padding: 3rem 2rem 2rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow-x: hidden;
}

/* Hero-inspired motion background */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(194, 65, 12, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
  animation: footerPulse 12s ease-in-out infinite;
}

.footer-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 60%,
    rgba(44, 110, 158, 0.02) 0%,
    transparent 60%
  );
  pointer-events: none;
  animation: footerPulse 15s ease-in-out infinite reverse;
}

@keyframes footerPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================ */
/* TRUST WALL / LOGO WALL */
/* ============================================ */

.trust-wall {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-medium);
}

.trust-wall-header {
  margin-bottom: 1.5rem;
}

.trust-wall-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--deluxe-red);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.trust-wall-divider {
  width: 60px;
  height: 2px;
  background: var(--deluxe-red);
  margin: 0 auto;
  border-radius: 2px;
}

.trust-badges-wall {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.trust-badge-item:hover {
  transform: translateY(-5px);
}

.trust-badge-icon {
  width: 55px;
  height: 55px;
  background: rgba(194, 65, 12, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deluxe-red);
  transition: all 0.3s ease;
}

.trust-badge-item:hover .trust-badge-icon {
  background: var(--deluxe-red);
  color: white;
  transform: scale(1.05);
}

.trust-badge-icon i {
  font-size: 26px;
}

.trust-badge-name {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-text);
  text-align: center;
}

/* ============================================ */
/* COLLAPSIBLE CARDS */
/* ============================================ */

.footer-main {
  margin: 1rem 0;
}

.footer-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.footer-card {
  background: rgba(194, 65, 12, 0.02);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-medium);
}

.footer-card:hover {
  border-color: rgba(194, 65, 12, 0.3);
  background: rgba(194, 65, 12, 0.03);
}

.footer-card-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  color: var(--soft-black);
  transition: all 0.3s ease;
  text-align: left;
}

.footer-card-header:hover {
  background: rgba(194, 65, 12, 0.03);
}

.footer-card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-card-icon {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--deluxe-red);
  transition: transform 0.3s ease;
}

.footer-card.active .footer-card-icon {
  transform: rotate(45deg);
}

.footer-card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.2rem;
}

.footer-card.active .footer-card-content {
  max-height: 400px;
  padding: 0 1.2rem 1.2rem 1.2rem;
}

/* Card Content Styles */
.footer-description {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--deluxe-red);
  padding-top: 0.6rem;
  border-top: 1px solid var(--gray-medium);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a {
  font-size: 0.85rem;
  color: var(--gray-text);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--deluxe-red);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact li {
  font-size: 0.8rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: default;
}

.footer-contact li i {
  flex-shrink: 0;
  color: var(--deluxe-red);
  width: 18px;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(194, 65, 12, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--deluxe-red);
  text-decoration: none;
}

.social-link:hover {
  background: var(--deluxe-red);
  color: white;
  transform: translateY(-3px);
}

.social-link i {
  font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--gray-medium);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--gray-text);
}

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--deluxe-red);
}

.footer-legal .separator {
  font-size: 0.75rem;
  color: var(--gray-medium);
}

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

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .footer-section {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .footer-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trust-badges-wall {
    gap: 1.5rem;
  }

  .trust-badge-icon {
    width: 50px;
    height: 50px;
  }

  .trust-badge-icon i {
    font-size: 24px;
  }
}

/* Mobile (768px and below) - Dark Theme */
@media (max-width: 768px) {
  .footer-section {
    padding: 2rem 1rem 1.2rem;
    background: #0a0a0a;
    color: #e5e5e5;
  }

  /* Dark theme motion background */
  .footer-section::before {
    background: radial-gradient(
      circle at 30% 50%,
      rgba(194, 65, 12, 0.08) 0%,
      transparent 60%
    );
  }

  .footer-section::after {
    background: radial-gradient(
      circle at 70% 60%,
      rgba(44, 110, 158, 0.08) 0%,
      transparent 60%
    );
  }

  /* Trust Wall - Dark Theme */
  .trust-wall {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .trust-wall-title {
    color: var(--deluxe-red);
  }

  .trust-badge-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--deluxe-red);
  }

  .trust-badge-name {
    color: #cccccc;
  }

  /* Trust Badges - Horizontal Scroll */
  .trust-badges-wall {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 1rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .trust-badges-wall::-webkit-scrollbar {
    height: 3px;
  }

  .trust-badges-wall::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
  }

  .trust-badges-wall::-webkit-scrollbar-thumb {
    background: var(--deluxe-red);
    border-radius: 3px;
  }

  .trust-badge-item {
    flex-shrink: 0;
    padding: 0.3rem 0.2rem;
  }

  .trust-badge-icon {
    width: 48px;
    height: 48px;
  }

  .trust-badge-icon i {
    font-size: 22px;
  }

  .trust-badge-name {
    font-size: 0.6rem;
    white-space: nowrap;
  }

  /* Cards - Dark Theme */
  .footer-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .footer-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
  }

  .footer-card-header {
    color: #ffffff;
  }

  .footer-card-header:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .footer-card-icon {
    color: var(--deluxe-red);
  }

  .footer-description {
    color: #cccccc;
  }

  .footer-tagline {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: var(--deluxe-red);
  }

  .footer-links li a {
    color: #cccccc;
  }

  .footer-links li a:hover {
    color: var(--deluxe-red);
  }

  .footer-contact li {
    color: #cccccc;
  }

  .footer-contact li i {
    color: var(--deluxe-red);
  }

  .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--deluxe-red);
  }

  .social-link:hover {
    background: var(--deluxe-red);
    color: white;
  }

  /* Footer Bottom - Dark Theme */
  .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .footer-copyright {
    color: #999999;
  }

  .footer-legal a {
    color: #999999;
  }

  .footer-legal a:hover {
    color: var(--deluxe-red);
  }

  .footer-legal .separator {
    color: #666666;
  }

  /* Cards Grid - Single Column */
  .footer-cards {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .footer-card-header {
    padding: 1rem 1rem;
  }

  .footer-card-title {
    font-size: 0.9rem;
  }

  .footer-card.active .footer-card-content {
    padding: 0 1rem 1rem 1rem;
  }

  .footer-description {
    font-size: 0.8rem;
  }

  .footer-links li a,
  .footer-contact li {
    font-size: 0.75rem;
  }

  .footer-social {
    justify-content: center;
    margin-top: 0.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    padding-top: 1.2rem;
    margin-top: 0.5rem;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .footer-section {
    padding: 1.5rem 0.8rem 1rem;
  }

  .trust-badge-icon {
    width: 44px;
    height: 44px;
  }

  .trust-badge-icon i {
    font-size: 20px;
  }

  .trust-badge-name {
    font-size: 0.55rem;
  }

  .footer-card-header {
    padding: 0.9rem 0.8rem;
  }

  .footer-card-title {
    font-size: 0.85rem;
  }

  .footer-card.active .footer-card-content {
    padding: 0 0.8rem 0.8rem 0.8rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .trust-badge-icon {
    width: 40px;
    height: 40px;
  }

  .trust-badge-icon i {
    font-size: 18px;
  }

  .trust-badge-name {
    font-size: 0.5rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .footer-section::before,
  .footer-section::after,
  .footer-card,
  .footer-card-content,
  .footer-card-icon {
    animation: none !important;
    transition: none !important;
  }

  .footer-card.active .footer-card-content {
    max-height: 400px;
  }

  .trust-badges-wall {
    overflow-x: visible;
  }
}

/* ============================================ */
/* RTL SUPPORT - DOTS ON LEFT SIDE */
/* ============================================ */

/* Desktop RTL Timeline - Dots on left side (before text) */
html[dir="rtl"] .about-hero-split-timeline-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  text-align: right;
  gap: 0.9rem;
}

/* Marker (dot) goes to the left side (before content) */
html[dir="rtl"] .about-hero-split-timeline-marker {
  order: 1;
  margin-left: 0;
  margin-right: 0;
}

/* Content goes to the right side (after marker) */
html[dir="rtl"] .about-hero-split-timeline-content {
  order: 2;
  text-align: right;
}

/* Adjust the connecting line to point left */
html[dir="rtl"] .about-hero-split-timeline-marker::after {
  left: 3px;
  right: auto;
}

/* Stats alignment */
html[dir="rtl"] .about-hero-split-stats {
  justify-content: flex-start;
}

html[dir="rtl"] .about-hero-split-stat {
  text-align: right;
}

/* Links alignment */
html[dir="rtl"] .about-hero-split-links {
  justify-content: flex-start;
}

/* Arrow direction for RTL */
html[dir="rtl"] .about-hero-split-link svg {
  transform: rotate(180deg);
}

html[dir="rtl"] .about-hero-split-link:hover svg {
  transform: rotate(180deg) translateX(-4px);
}

/* Quote and overlay positions */
html[dir="rtl"] .about-hero-split-quote {
  right: auto;
  left: 1.5rem;
}

html[dir="rtl"] .about-hero-split-image-overlay {
  left: auto;
  right: 1.5rem;
}

/* ============================================ */
/* MOBILE RTL TIMELINE - DOTS ON LEFT SIDE */
/* ============================================ */

@media (max-width: 768px) {
  html[dir="rtl"] .about-hero-split-timeline-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-align: right;
    gap: 0.8rem;
  }

  html[dir="rtl"] .about-hero-split-timeline-marker {
    order: 1;
    margin-left: 0;
    margin-right: 0;
  }

  html[dir="rtl"] .about-hero-split-timeline-content {
    order: 2;
    text-align: right;
  }

  html[dir="rtl"] .about-hero-split-timeline-marker::after {
    left: 3px;
    right: auto;
  }

  html[dir="rtl"] .about-hero-split-quote {
    right: auto;
    left: 0.8rem;
  }

  html[dir="rtl"] .about-hero-split-image-overlay {
    left: auto;
    right: 0.8rem;
  }
}

/* Extra Small Mobile - Stack vertically with dot at start */
@media (max-width: 380px) {
  html[dir="rtl"] .about-hero-split-timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  html[dir="rtl"] .about-hero-split-timeline-marker {
    order: 1;
    margin-right: 0;
    margin-bottom: 0.2rem;
    align-self: flex-start;
  }

  html[dir="rtl"] .about-hero-split-timeline-marker::after {
    display: none;
  }

  html[dir="rtl"] .about-hero-split-timeline-content {
    order: 2;
    text-align: right;
  }
}

/* ============================================ */
/* RTL SUPPORT - LINKS ON RIGHT SIDE */
/* ============================================ */

/* Desktop RTL Timeline - Dots on left side */
html[dir="rtl"] .about-hero-split-timeline-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  text-align: right;
  gap: 0.9rem;
}

html[dir="rtl"] .about-hero-split-timeline-marker {
  order: 1;
  margin-left: 0;
  margin-right: 0;
}

html[dir="rtl"] .about-hero-split-timeline-content {
  order: 2;
  text-align: right;
}

html[dir="rtl"] .about-hero-split-timeline-marker::after {
  left: 3px;
  right: auto;
}

/* Stats alignment - Desktop RTL */
html[dir="rtl"] .about-hero-split-stats {
  justify-content: flex-start;
}

html[dir="rtl"] .about-hero-split-stat {
  text-align: right;
}

/* Links alignment - Desktop RTL - Move to RIGHT side */
html[dir="rtl"] .about-hero-split-links {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

/* Quote and overlay positions */
html[dir="rtl"] .about-hero-split-quote {
  right: auto;
  left: 1.5rem;
}

html[dir="rtl"] .about-hero-split-image-overlay {
  left: auto;
  right: 1.5rem;
}

/* ============================================ */
/* MOBILE - CENTER STATS AND LINKS */
/* ============================================ */

@media (max-width: 768px) {
  /* Timeline alignment for mobile */
  html[dir="rtl"] .about-hero-split-timeline-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-align: right;
    gap: 0.8rem;
  }

  html[dir="rtl"] .about-hero-split-timeline-marker {
    order: 1;
    margin-left: 0;
    margin-right: 0;
  }

  html[dir="rtl"] .about-hero-split-timeline-content {
    order: 2;
    text-align: right;
  }

  html[dir="rtl"] .about-hero-split-timeline-marker::after {
    left: 3px;
    right: auto;
  }

  /* CENTER STATS ON MOBILE - Both LTR and RTL */
  .about-hero-split-stats {
    justify-content: center !important;
  }

  .about-hero-split-stat {
    text-align: center !important;
  }

  /* CENTER LINKS ON MOBILE - Both LTR and RTL */
  .about-hero-split-links {
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Override RTL specific for mobile to center */
  html[dir="rtl"] .about-hero-split-stats {
    justify-content: center !important;
  }

  html[dir="rtl"] .about-hero-split-stat {
    text-align: center !important;
  }

  html[dir="rtl"] .about-hero-split-links {
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Quote and overlay positions */
  html[dir="rtl"] .about-hero-split-quote {
    right: auto;
    left: 0.8rem;
  }

  html[dir="rtl"] .about-hero-split-image-overlay {
    left: auto;
    right: 0.8rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
  html[dir="rtl"] .about-hero-split-timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  html[dir="rtl"] .about-hero-split-timeline-marker {
    order: 1;
    margin-right: 0;
    margin-bottom: 0.2rem;
    align-self: flex-start;
  }

  html[dir="rtl"] .about-hero-split-timeline-marker::after {
    display: none;
  }

  html[dir="rtl"] .about-hero-split-timeline-content {
    order: 2;
    text-align: right;
  }

  /* Center stats on extra small */
  .about-hero-split-stats {
    justify-content: center !important;
  }

  .about-hero-split-links {
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  html[dir="rtl"] .about-hero-split-stats {
    justify-content: center !important;
  }

  html[dir="rtl"] .about-hero-split-links {
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }
}
