/* ============================================
   POOKOO LOGISTICS - TOP PAGE STYLES
   Modern Bento-Grid Design with Outfit/Sora Fonts
   ============================================ */

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--brand-primary-dark) 0%,
    var(--brand-primary) 60%,
    #1e6ea8 100%
  );
  padding: 140px 0 100px;
  text-align: center;
  overflow: hidden;

  @media (max-width: 767px) {
    padding: 120px 0 80px;
  }
}

.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero__container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero__container .section__tag {
  margin-bottom: 24px;
}

.page-hero__title {
  font-family: var(--font-secondary);
  font-size: 60px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;

  @media (max-width: 991px) {
    font-size: 48px;
  }

  @media (max-width: 767px) {
    font-size: 36px;
  }
}

.page-hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;

  @media (max-width: 767px) {
    font-size: 16px;
  }
}

.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;

  a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;

    &:hover {
      color: var(--brand-orange);
    }
  }

  span:last-child {
    color: var(--color-white);
    font-weight: 600;
  }
}

/* SECTION COMMON */
.section {
  padding: 100px 0;

  @media (max-width: 767px) {
    padding: 70px 0;
  }
}

.section__header {
  text-align: center;
  margin-bottom: 70px;

  @media (max-width: 767px) {
    margin-bottom: 50px;
  }
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #ff8c42 100%);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.section__title {
  font-family: var(--font-secondary);
  font-size: 48px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;

  @media (max-width: 991px) {
    font-size: 38px;
  }

  @media (max-width: 767px) {
    font-size: 30px;
  }
}

.section__subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;

  @media (max-width: 767px) {
    font-size: 16px;
  }
}

/* ============================================
   HERO SECTION - Clean Editorial Design
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 140px;
  padding-bottom: 80px;
  background: #fafbfc;
  overflow: hidden;

  @media (max-width: 991px) {
    min-height: auto;
    padding: 120px 0 60px;
  }
}

/* Subtle dot pattern - intentional, not AI-style */
.hero__mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #1a4d7c 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.04;
  pointer-events: none;
}

/* Hidden on this design */
.hero__noise,
.hero__grid {
  display: none;
}

/* Geometric accent shapes - clean, intentional */
.hero__shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
}

/* Large orange circle - top right */
.hero__shape--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: var(--brand-orange);
  border-radius: 50%;
  opacity: 0.08;

  @media (max-width: 991px) {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
  }
}

/* Navy rectangle - bottom left */
.hero__shape--2 {
  width: 300px;
  height: 500px;
  bottom: -100px;
  left: -80px;
  background: var(--brand-primary);
  opacity: 0.05;
  transform: rotate(-12deg);
  border-radius: 20px;

  @media (max-width: 991px) {
    width: 200px;
    height: 350px;
  }
}

/* Small accent square */
.hero__shape--3 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 15%;
  background: var(--brand-accent);
  opacity: 0.12;
  border-radius: 12px;
  transform: rotate(15deg);

  @media (max-width: 991px) {
    display: none;
  }
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;

  @media (max-width: 991px) {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 25px;
    text-align: center;
  }
}

.hero__content {
  @media (max-width: 991px) {
    order: 1;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 14px;
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--brand-orange);
  border-radius: 50%;

  svg {
    stroke: var(--color-white);
  }
}

.hero__title {
  font-family: var(--font-secondary);
  font-size: 68px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease-out 0.3s both;

  @media (max-width: 991px) {
    font-size: 50px;
  }

  @media (max-width: 767px) {
    font-size: 38px;
  }
}

.hero__title-line {
  display: block;
}

.hero__title-highlight {
  display: inline-block;
  position: relative;
  color: var(--brand-orange);

  /* Underline accent */
  &::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--brand-orange);
    opacity: 0.15;
    border-radius: 4px;
    z-index: -1;
  }
}

/* Remove old before pseudo */
.hero__title-highlight::before {
  display: none;
}

.hero__description {
  font-size: 18px;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.4s both;

  @media (max-width: 991px) {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 767px) {
    font-size: 16px;
  }
}

.hero__metrics {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
  background: var(--color-white);
  border-radius: 16px;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  width: fit-content;

  @media (max-width: 991px) {
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 576px) {
    flex-wrap: wrap;
    gap: 0;
    padding: 16px;
  }
}

.hero__metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 32px;

  @media (max-width: 576px) {
    padding: 12px 20px;
    width: 50%;
    text-align: center;
  }
}

.hero__metric:first-child {
  padding-left: 32px;

  @media (max-width: 576px) {
    padding-left: 20px;
  }
}

.hero__metric:last-of-type {
  padding-right: 32px;

  @media (max-width: 576px) {
    padding-right: 20px;
  }
}

.hero__metric-divider {
  width: 1px;
  background: #e2e8f0;
  align-self: stretch;

  @media (max-width: 576px) {
    display: none;
  }
}

.hero__metric-value {
  font-family: var(--font-secondary);
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  letter-spacing: -0.02em;

  @media (max-width: 767px) {
    font-size: 26px;
  }
}

.hero__metric-plus,
.hero__metric-slash,
.hero__metric-percent {
  color: var(--brand-orange);
  font-weight: 700;
}

.hero__metric-label {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;

  @media (max-width: 991px) {
    justify-content: center;
  }
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--brand-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(26, 77, 124, 0.25);
  text-decoration: none;
  overflow: hidden;
  position: relative;

  &:hover {
    background: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);

    .hero__cta-arrow {
      transform: translateX(4px);
    }
  }

  &:active {
    transform: translateY(0);
  }
}

.hero__cta-arrow {
  display: flex;
  transition: transform 0.3s ease;
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: transparent;
  color: var(--brand-primary);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;

  &:hover {
    border-color: var(--brand-primary);
    background: rgba(26, 77, 124, 0.04);
  }
}

.hero__cta-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--brand-orange);
  border-radius: 50%;
  padding-left: 2px;

  svg {
    fill: var(--color-white);
  }
}

/* Hero Visual / Cards */
.hero__visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.4s both;

  @media (max-width: 991px) {
    order: 2;
    max-width: 480px;
    margin: 0 auto;
  }
}

.hero__card--main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(26, 77, 124, 0.15);
  border: 1px solid #e2e8f0;
}

.hero__card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--color-white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

  svg {
    stroke: #22c55e;
    flex-shrink: 0;
  }
}

.hero__card-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;

  @media (max-width: 767px) {
    height: 320px;
  }
}

.hero__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(26, 77, 124, 0.4), transparent);
  pointer-events: none;
}

/* Floating stat cards - cleaner, less bouncy */
.hero__floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;

  @media (max-width: 767px) {
    padding: 12px 16px;
  }
}

.hero__floating-card--stats {
  bottom: 30px;
  left: -20px;

  @media (max-width: 991px) {
    left: 10px;
    bottom: 20px;
  }
}

.hero__floating-card--support {
  top: 60px;
  right: -20px;

  @media (max-width: 991px) {
    right: 10px;
  }

  @media (max-width: 576px) {
    top: 50px;
  }
}

.hero__floating-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary);
  border-radius: 10px;
  flex-shrink: 0;

  svg {
    stroke: var(--color-white);
  }
}

.hero__floating-icon--accent {
  background: var(--brand-orange);
}

.hero__floating-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__floating-number {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}

.hero__floating-label {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Scroll indicator - light theme */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 0.8s ease-out 1s both;

  @media (max-width: 991px) {
    display: none;
  }
}

.hero__scroll-text {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #cbd5e1, transparent);
  position: relative;
  overflow: hidden;

  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--brand-orange);
    animation: scrollLine 2s ease-in-out infinite;
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}

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

/* ============================================
   SERVICES SECTION - Bento Grid
   ============================================ */
.services {
  background: var(--color-white);
}

.services__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  @media (max-width: 991px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 576px) {
    grid-template-columns: 1fr;
  }
}

.services__card {
  position: relative;
  padding: 36px 32px;
  background: #f8fafc;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      var(--brand-primary) 0%,
      var(--brand-accent) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
  }

  &:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(26, 77, 124, 0.15);
    border-color: rgba(26, 77, 124, 0.1);

    &::before {
      opacity: 0.03;
    }

    .services__card-number {
      color: var(--brand-orange);
    }

    .services__icon {
      background: var(--brand-primary);
      transform: scale(1.05);

      svg {
        stroke: var(--color-white);
      }
    }

    .services__card-btn {
      color: var(--brand-orange);
    }
  }
}

/* Featured card - spans 2 columns */
.services__card--featured {
  grid-column: span 2;
  padding: 48px 44px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #1e5a8f 100%);
  color: var(--color-white);
  flex-direction: row;
  align-items: center;
  gap: 50px;

  @media (max-width: 991px) {
    grid-column: span 2;
  }

  @media (max-width: 576px) {
    grid-column: span 1;
    flex-direction: column;
    padding: 36px 28px;
    gap: 30px;
  }

  &::before {
    display: none;
  }

  &:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(26, 77, 124, 0.35);

    .services__icon {
      background: var(--brand-orange);
    }
  }

  .services__card-number {
    color: rgba(255, 255, 255, 0.3);
    font-size: 100px;
    line-height: 1;
  }

  .services__icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);

    svg {
      stroke: var(--color-white);
    }
  }

  .services__card-title {
    color: var(--color-white);
    font-size: 28px;
  }

  .services__card-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
  }

  .services__card-btn {
    color: var(--brand-orange);
    border-bottom-color: rgba(249, 115, 22, 0.3);

    &:hover {
      color: var(--color-white);
      border-bottom-color: var(--color-white);
    }
  }
}

.services__card--featured .services__card-content {
  flex: 1;
}

.services__card--featured .services__card-visual {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  pointer-events: none;
  opacity: 0.15;

  @media (max-width: 576px) {
    display: none;
  }
}

.services__card-ring {
  position: absolute;
  border: 2px solid var(--color-white);
  border-radius: 50%;
}

.services__card-ring--1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.services__card-ring--2 {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
}

/* Highlight card */
.services__card--highlight {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid rgba(249, 115, 22, 0.15);

  .services__card-number {
    color: rgba(249, 115, 22, 0.2);
  }

  .services__icon {
    background: var(--brand-orange);

    svg {
      stroke: var(--color-white);
    }
  }

  &:hover {
    box-shadow: 0 24px 50px rgba(249, 115, 22, 0.2);

    .services__icon {
      background: var(--brand-primary);
    }
  }
}

.services__card-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-secondary);
  font-size: 48px;
  font-weight: 900;
  color: rgba(26, 77, 124, 0.06);
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 1;
}

.services__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.services__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-primary);
  transition: stroke 0.3s ease;
}

.services__card-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-secondary);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.services__card-text {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.services__card-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;

  svg {
    transition: transform 0.3s ease;
  }

  &:hover {
    color: var(--brand-orange);
    border-bottom-color: var(--brand-orange);

    svg {
      transform: translateX(4px);
    }
  }
}

.services__cta-row {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.services__view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--brand-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 35px rgba(26, 77, 124, 0.3);

  &:hover {
    background: var(--brand-orange);
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(249, 115, 22, 0.35);

    .services__view-all-icon {
      transform: translateX(4px);
    }
  }
}

.services__view-all-icon {
  display: flex;
  transition: transform 0.3s ease;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: linear-gradient(180deg, #f8fafc 0%, var(--color-white) 100%);
}

.about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;

  @media (max-width: 991px) {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.about__visual {
  position: relative;
}

.about__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(26, 77, 124, 0.12);

  @media (max-width: 767px) {
    height: 380px;
  }
}

.about__experience {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--brand-primary);
  color: var(--color-white);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(26, 77, 124, 0.35);

  @media (max-width: 767px) {
    right: 20px;
    bottom: 20px;
    padding: 24px;
  }
}

.about__experience-number {
  font-family: var(--font-secondary);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;

  @media (max-width: 767px) {
    font-size: 40px;
  }
}

.about__experience-text {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.about__content {
  @media (max-width: 991px) {
    text-align: center;
  }
}

.about__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #ff8c42 100%);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.about__title {
  font-family: var(--font-secondary);
  font-size: 42px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;

  @media (max-width: 767px) {
    font-size: 32px;
  }
}

.about__text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.85;
  margin-bottom: 36px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 44px;

  @media (max-width: 576px) {
    grid-template-columns: 1fr;
  }
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about__feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(56, 198, 233, 0.12) 0%,
    rgba(56, 198, 233, 0.06) 100%
  );
  border-radius: 14px;
  flex-shrink: 0;
}

.about__feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-accent);
}

.about__feature-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-primary);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why {
  background: var(--brand-primary);
  position: relative;
  overflow: hidden;
}

.why__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why .section__tag {
  background: var(--brand-orange);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.why .section__title {
  color: var(--color-white);
}

.why .section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;

  @media (max-width: 991px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 576px) {
    grid-template-columns: 1fr;
  }
}

.why__item {
  text-align: center;
  padding: 44px 28px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  &:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
  }
}

.why__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-orange);
  border-radius: 50%;
  margin: 0 auto 28px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

.why__icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--color-white);
}

.why__item-title {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.why__item-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  background: var(--color-white);
}

.faq__wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #e2e8f0;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-primary);
  transition: color 0.3s ease;
  letter-spacing: -0.01em;

  &:hover {
    color: var(--brand-orange);
  }

  @media (max-width: 767px) {
    font-size: 16px;
    padding: 24px 0;
  }
}

.faq__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-primary);
  transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
  background: var(--brand-primary);
}

.faq__item.active .faq__icon svg {
  stroke: var(--color-white);
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding-bottom: 28px;
}

.faq__answer-text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.8;
  padding-right: 68px;

  @media (max-width: 767px) {
    padding-right: 0;
    font-size: 15px;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: linear-gradient(
    135deg,
    var(--brand-primary) 0%,
    var(--brand-primary-dark) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--brand-orange);
  opacity: 0.1;
  transform: skewX(-15deg) translateX(20%);
}

.cta__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  @media (max-width: 767px) {
    flex-direction: column;
    text-align: center;
  }
}

.cta__content {
  max-width: 600px;
}

.cta__title {
  font-family: var(--font-secondary);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;

  @media (max-width: 767px) {
    font-size: 30px;
  }
}

.cta__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 44px;
  background: var(--brand-orange);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
  text-decoration: none;

  &:hover {
    background: var(--color-white);
    color: var(--brand-primary);
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  }
}

/* CTA Card Variant - Contained with rounded corners */
.cta--card {
  background: transparent;
  padding: 80px 0 100px;

  @media (max-width: 767px) {
    padding: 60px 0 80px;
  }
}

.cta--card .cta__inner {
  background: linear-gradient(
    135deg,
    var(--brand-primary) 0%,
    var(--brand-primary-dark) 100%
  );
  border-radius: 24px;
  padding: 60px 70px;
  position: relative;
  overflow: hidden;

  @media (max-width: 991px) {
    padding: 50px 40px;
    border-radius: 20px;
  }

  @media (max-width: 767px) {
    padding: 40px 24px;
    border-radius: 16px;
  }
}

.cta--card .cta__bg {
  border-radius: 24px;
}

.cta--card .cta__wrapper {
  position: relative;
  z-index: 2;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: #f8fafc;
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;

  @media (max-width: 991px) {
    grid-template-columns: 1fr;
  }
}

.contact__info {
  @media (max-width: 991px) {
    text-align: center;
  }
}

.contact__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #ff8c42 100%);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.contact__title {
  font-family: var(--font-secondary);
  font-size: 40px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;

  @media (max-width: 767px) {
    font-size: 30px;
  }
}

.contact__text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 44px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;

  @media (max-width: 991px) {
    align-items: center;
  }
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;

  @media (max-width: 991px) {
    text-align: left;
  }
}

.contact__detail-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary);
  border-radius: 16px;
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
}

.contact__detail-label {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact__detail-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-primary);
}

.contact__detail-value a {
  color: var(--brand-primary);
  transition: color 0.3s ease;
  text-decoration: none;

  &:hover {
    color: var(--brand-orange);
  }
}

.contact__form-wrapper {
  background: var(--color-white);
  padding: 50px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);

  @media (max-width: 767px) {
    padding: 32px 24px;
  }
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;

  @media (max-width: 576px) {
    grid-template-columns: 1fr;
  }
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary);
}

.contact__form-input,
.contact__form-textarea {
  padding: 18px 22px;
  background: var(--color-white);
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--color-black);
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;

  &::placeholder {
    color: #94a3b8;
  }

  &:hover {
    border-color: #cbd5e1;
  }

  &:focus {
    border-color: var(--brand-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(56, 198, 233, 0.1);
  }
}

.contact__form-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact__form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 44px;
  background: var(--brand-primary);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
  box-shadow: 0 12px 35px rgba(26, 77, 124, 0.25);

  &:hover {
    background: var(--brand-orange);
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(249, 115, 22, 0.35);
  }

  @media (max-width: 576px) {
    width: 100%;
  }
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */
.legal {
  background: var(--color-white);
}

.legal__content {
  max-width: 800px;
  margin: 0 auto;
}

.legal__updated {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.legal__content h2 {
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 40px 0 16px;
  line-height: 1.3;
}

.legal__content h2:first-of-type {
  margin-top: 0;
}

.legal__content h3 {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  margin: 24px 0 12px;
}

.legal__content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal__content ul {
  margin: 16px 0 24px 24px;
}

.legal__content li {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.legal__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.legal__content a {
  color: var(--brand-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal__content a:hover {
  color: var(--brand-orange);
}

/* ============================================
   FOOTER
   ============================================ */
/* Pre-footer transition section */
.pre-footer {
  background: #f8fafc;
  padding: 60px 0;
  text-align: center;
}

.pre-footer__content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.pre-footer__text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pre-footer__links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pre-footer__link {
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pre-footer__link:hover {
  color: var(--brand-orange);
}

.footer {
  background: linear-gradient(180deg, var(--brand-primary-dark) 0%, #0d2840 100%);
  padding: 90px 0 35px;

  @media (max-width: 767px) {
    padding: 70px 0 30px;
  }
}

.footer__wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 70px;

  @media (max-width: 991px) {
    grid-template-columns: 1fr 1fr;
  }

  @media (max-width: 576px) {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer__brand {
  @media (max-width: 576px) {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer__logo {
  margin-bottom: 24px;
}

.footer__logo img {
  height: 44px;
  filter: brightness(0) invert(1);
}

.footer__brand-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 300px;

  @media (max-width: 576px) {
    max-width: 100%;
  }
}

.footer__social {
  display: flex;
  gap: 14px;

  @media (max-width: 576px) {
    justify-content: center;
  }
}

.footer__social-link {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  color: var(--color-white);
  text-decoration: none;

  &:hover {
    background: var(--brand-orange);
    transform: translateY(-4px);
  }
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.footer__social-link--instagram svg {
  fill: none;
  stroke: var(--color-white);
}

.footer__column-title {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

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

.footer__link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
  text-decoration: none;

  &:hover {
    color: var(--brand-orange);
    padding-left: 6px;
  }
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);

  @media (max-width: 576px) {
    justify-content: center;
  }
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;

  @media (max-width: 767px) {
    justify-content: center;
    text-align: center;
  }
}

.footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  gap: 32px;

  @media (max-width: 576px) {
    flex-direction: column;
    gap: 12px;
  }
}

.footer__legal-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
  text-decoration: none;

  &:hover {
    color: var(--brand-orange);
  }
}

/* ============================================
   COOKIES MODAL
   ============================================ */
.cookies-modal {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 720px;
  background: var(--color-white);
  border-radius: 24px;
  padding: 26px 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 9999;
  border: 1px solid rgba(26, 77, 124, 0.06);
  animation: cookieSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: all 0.4s ease;

  @media (max-width: 767px) {
    flex-direction: column;
    padding: 24px;
    bottom: 15px;
    gap: 18px;
  }
}

.cookies-modal.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
  visibility: hidden;
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookies-modal__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #ff8c42 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);

  svg {
    stroke: var(--color-white);
  }
}

.cookies-modal__content {
  flex: 1;
  min-width: 0;
}

.cookies-modal__title {
  font-family: var(--font-secondary);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.cookies-modal__text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.cookies-modal__link {
  color: var(--brand-accent);
  text-decoration: underline;
  font-weight: 600;

  &:hover {
    color: var(--brand-primary);
  }
}

.cookies-modal__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;

  @media (max-width: 767px) {
    width: 100%;
  }
}

.cookies-modal__btn {
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;

  @media (max-width: 767px) {
    flex: 1;
    text-align: center;
  }
}

.cookies-modal__btn--decline {
  background: #f1f5f9;
  color: #475569;

  &:hover {
    background: #e2e8f0;
    color: #1e293b;
  }
}

.cookies-modal__btn--accept {
  background: var(--brand-primary);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(26, 77, 124, 0.25);

  &:hover {
    background: var(--brand-orange);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
  }
}

/* ============================================
   COVERAGE MAP SECTION
   ============================================ */
.coverage {
  background-color: #f8fafc;
}

.coverage__wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  background: var(--color-white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.06);
  margin-bottom: 50px;

  @media (max-width: 991px) {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.coverage__map {
  height: 520px;
  width: 100%;
  border-radius: 16px;
  background: #e2e8f0;
  z-index: 1;

  @media (max-width: 767px) {
    height: 420px;
  }
}

.coverage__info {
  background: #f8fafc;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #e2e8f0;
}

.coverage__info-default {
  text-align: center;
  color: #64748b;
}

.coverage__info-default svg {
  margin-bottom: 18px;
  opacity: 0.5;
}

.coverage__info-default p {
  font-size: 15px;
  line-height: 1.6;
}

/* Map Pin Styling */
.coverage-pin {
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
}

.coverage-pin__dot {
  width: 14px;
  height: 14px;
  background: var(--brand-orange);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 3px var(--color-white);
  transition: all 0.3s ease;
}

.coverage-pin__dot--active {
  background: var(--brand-primary);
  transform: scale(1.4);
}

.coverage-pin__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--brand-orange);
  border-radius: 50%;
  opacity: 0.6;
  animation: pinPulse 2s infinite;
}

.coverage-pin__pulse--active {
  background: var(--brand-primary);
}

@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

/* Info Detail Card Styling */
.coverage__detail {
  animation: fadeIn 0.3s ease-out;
}

.coverage__detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--brand-primary);
}

.coverage__detail-header h3 {
  font-family: var(--font-secondary);
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}

.coverage__detail-zone {
  display: inline-block;
  background: #e2e8f0;
  color: #475569;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.coverage__detail-delivery {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 18px;
  font-size: 14px;
}

.coverage__detail-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}

.coverage__detail-cta {
  display: inline-block;
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;

  &:hover {
    color: var(--brand-orange);
    transform: translateX(5px);
  }
}

/* Stats Bar Styling */
.coverage__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  @media (max-width: 991px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 480px) {
    grid-template-columns: 1fr;
  }
}

.coverage__stat {
  background: var(--color-white);
  padding: 28px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--brand-orange);

  &:hover {
    transform: translateY(-6px);
    background: var(--brand-orange);
    box-shadow: 0 16px 35px rgba(249, 115, 22, 0.35);

    .coverage__stat-number,
    .coverage__stat-label {
      color: var(--color-white);
    }
  }
}

.coverage__stat-number {
  display: block;
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 6px;
  transition: color 0.3s ease;
  letter-spacing: -0.02em;
}

.coverage__stat-label {
  display: block;
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

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