@media (max-width: 900px) {
    .split-comparison {
        flex-direction: column;
        max-width: 100%;
        border-radius: 0;
    }
    .split-side {
        padding: 2rem 1rem;
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
    }
    .split-vancouver {
        border-bottom: 2px solid #e2e8f0;
    }
    .split-calgary {
        border-bottom: none;
    }
    .split-divider {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 40px;
        min-width: 0;
        min-height: 0;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        border: none;
        background: transparent;
        pointer-events: none;
    }
    .split-divider .fa-arrow-right {
        transform: rotate(90deg);
        transition: transform 0.2s;
    }
  }
  
  @media (max-width: 600px) {
    .split-side {
        padding: 1.2rem 0.5rem;
    }
    .city-header {
        font-size: 1.05rem;
    }
    .city-header i {
        font-size: 1.3rem;
    }
    .split-row h3 {
        font-size: 1rem;
    }
    .split-row p {
        font-size: 0.95rem;
    }
  }
  @media (max-width: 1200px) {
    .long-services-row {
      justify-content: center;
      flex-wrap: nowrap;
      gap: 1.5rem;
    }
    .long-services-row .long-service-block {
      flex: 0 1 32%;
      max-width: 32%;
      margin-bottom: 1.5rem;
    }
    .long-services-row-center {
      justify-content: center;
      flex-wrap: nowrap;
      gap: 1.5rem;
    }
    .long-services-row-center .long-service-block {
      flex: 0 1 40%;
      max-width: 40%;
      margin-bottom: 1.5rem;
    }
  }
  
  @media (max-width: 900px) {
    .long-services-row,
    .long-services-row-center {
      flex-direction: column;
      align-items: center;
      flex-wrap: nowrap;
      gap: 1.5rem;
      width: 100%;
      max-width: 540px;
      margin: 0 auto;
    }
    .long-services-row .long-service-block,
    .long-services-row-center .long-service-block {
      flex: 1 1 auto;
      width: 100%;
      max-width: 100%;
      margin-bottom: 0;
    }
    .long-service-block {
      min-height: 340px;
    }
    .long-service-img {
      height: 300px;
    }
  }
  
  @media (max-width: 600px) {
    .long-services-section {
      padding: 2.5rem 0 2rem 0;
    }
    .long-services-grid {
      gap: 0.7rem;
    }
    .long-service-block {
      min-height: 0;
    }
  }

/* Tips Section Responsive */
@media (max-width: 900px) {
    .tips-cards-grid {
        gap: 20px;
    }
    .tip-card {
        max-width: 100%;
        min-width: 220px;
        padding: 28px 16px 24px 16px;
    }
    .tip-number {
        left: 12px;
    }
}
@media (max-width: 600px) {
    .tips-cards-grid {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .tip-card {
        width: 100%;
        max-width: 420px;
        min-width: 0;
        padding: 24px 10px 20px 10px;
    }
    .tip-number {
        left: 50%;
        transform: translateX(-50%);
        top: -32px;
    }
    .tip-content {
        margin-top: 40px;
    }
    .tips-section .section-title,
    .tips-section .tips-intro {
        font-size: 1rem;
    }
}