/* ============================================
   LOCATION & COVERAGE SECTION
   Service area display with location cards
   ============================================ */

    /* Location Section */
    .location-section {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--grey-50);
      border-radius: 24px;
      padding: 80px 60px;
      position: relative;
      overflow: hidden;
    }

    /* Decorative Background Elements */
    .location-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 107, 74, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .location-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(115, 115, 115, 0.04) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    /* Section Header */
    .location-section .section-header {
      text-align: center;
      margin-bottom: 64px;
      position: relative;
      z-index: 1;
    }

    .location-section .section-overline {
      font-size: 13px;
      font-weight: 600;
      color: var(--orange-500);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 16px;
    }

    .location-section .section-title {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      color: var(--grey-900);
      line-height: 1.2;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }

    .location-section .section-subtitle {
      font-size: clamp(16px, 2.5vw, 20px);
      color: var(--grey-600);
      line-height: 1.7;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Location Grid */
    .location-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      position: relative;
      z-index: 1;
      margin-bottom: 48px;
    }

    /* Location Card */
    .location-card {
      background: var(--white);
      border: 2px solid var(--grey-200);
      border-radius: 16px;
      padding: 32px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      text-decoration: none;
      display: block;
    }

    .location-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: var(--orange-500);
      transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .location-card:hover {
      transform: translateY(-8px);
      border-color: var(--orange-500);
      box-shadow: 0 20px 60px rgba(23, 23, 23, 0.1);
    }

    .location-card:hover::before {
      height: 100%;
    }

    /* Location Header */
    .location-header {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 20px;
    }

    .location-icon {
      width: 56px;
      height: 56px;
      background: none;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .location-card:hover .location-icon {
      background: none;
    }

    .location-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--orange-500);
      stroke-width: 2;
      fill: none !important;
      transition: stroke 0.3s ease;
    }

    .location-icon svg *,
    .location-icon svg path,
    .location-icon svg circle,
    .location-icon svg rect,
    .location-icon svg polyline {
      fill: none !important;
      stroke: inherit;
    }

    .location-card:hover .location-icon svg {
      stroke: var(--orange-500);
    }

    .location-card:hover .location-icon svg * {
      fill: none !important;
    }

    .location-info {
      flex: 1;
    }

    .location-name {
      font-size: 24px;
      font-weight: 600;
      color: var(--grey-900);
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .location-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--orange-500);
    }

    .status-dot {
      width: 8px;
      height: 8px;
      background: var(--orange-500);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.4;
      }
    }

    /* Location Content */
    .location-description {
      font-size: 15px;
      color: var(--grey-600);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    /* Location Features */
    .location-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--grey-600);
    }

    .feature-icon {
      width: 18px;
      height: 18px;
      color: var(--orange-500);
      flex-shrink: 0;
    }

    /* Location CTA */
    .location-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 600;
      color: var(--grey-900);
      transition: all 0.3s ease;
    }

    .location-card:hover .location-cta {
      color: var(--orange-500);
      gap: 12px;
    }

    .location-cta svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .location-card:hover .location-cta svg {
      transform: translateX(4px);
    }

    /* Coverage Map Visual */
    .coverage-map {
      background: var(--white);
      border: 2px solid var(--grey-200);
      border-radius: 16px;
      padding: 40px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .coverage-title {
      font-size: 18px;
      font-weight: 600;
      color: var(--grey-900);
      margin-bottom: 24px;
    }

    .map-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .map-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 20px;
      background: var(--grey-50);
      border-radius: 12px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .map-badge:hover {
      background: var(--orange-50);
      transform: translateY(-4px);
    }

    .map-badge-icon {
      width: 48px;
      height: 48px;
      background: var(--white);
      border: 2px solid var(--orange-500);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .map-badge-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--orange-500);
      stroke-width: 2;
    }

    .map-badge-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--grey-900);
    }

    /* Responsive */
    @media (max-width: 968px) {
      .location-section {
        padding: 60px 40px;
      }

      .location-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .location-section {
        padding: 48px 24px;
      }

      .location-card {
        padding: 24px;
      }

      .location-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .coverage-map {
        padding: 32px 20px;
      }

      .map-visual {
        gap: 16px;
      }

      .map-badge {
        flex: 1 1 calc(50% - 8px);
        min-width: 120px;
      }
    }

    /* Demo Section */
    .demo-section {
      max-width: 1200px;
      margin: 80px auto 0;
      padding: 40px;
      background: var(--grey-50);
      border-radius: 12px;
      border: 2px dashed var(--grey-200);
    }

    .demo-section h3 {
      color: var(--grey-900);
      margin-bottom: 20px;
      font-size: 20px;
    }

    .demo-section p {
      color: var(--grey-600);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .demo-section strong {
      color: var(--grey-900);
    }

    .demo-section code {
      background: var(--white);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 14px;
      color: var(--orange-500);
      border: 1px solid var(--grey-200);
    }
