@charset "utf-8";
/* CSS Document */


/* Scoped Styles for Service Areas Section */
  .spoton-service-areas {
    --so-navy: #0f2744;
    --so-cyan: #0099e5;
    --so-cyan-light: #e6f6fd;
    --so-cyan-glow: rgba(0, 153, 229, 0.16);
    --so-emerald: #16a34a;
    --so-emerald-bg: #f0fdf4;
    --so-text-dark: #1e293b;
    --so-text-muted: #64748b;
    --so-border: #e2e8f0;
    --so-bg-section: #f8fafc;
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--so-bg-section);
    color: var(--so-text-dark);
    padding: 4.5rem 1rem;
    position: relative;
    box-sizing: border-box;
  }

  .spoton-service-areas * {
    box-sizing: border-box;
  }

  .spoton-container {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
  }

  /* Section Intro */
  .spoton-section-intro {
    text-align: center;
    margin-bottom: 3rem;
  }

  .spoton-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    background: var(--so-cyan-light);
    border: 1px solid rgba(0, 153, 229, 0.25);
    color: var(--so-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
  }

  .spoton-tag svg {
    width: 14px;
    height: 14px;
  }

  .spoton-title {
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--so-navy);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: -0.015em;
  }

  .spoton-title .highlight-cyan {
    color: var(--so-cyan);
  }

  .spoton-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.075rem);
    color: var(--so-text-muted);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.55;
  }

  /* Grid Layout (Bootstrap compatible classes + flex fallback) */
  .spoton-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.75rem;
  }

  @media (min-width: 768px) {
    .spoton-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  /* Regional Cards */
  .spoton-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--so-border);
    box-shadow: 0 4px 16px rgba(15, 39, 68, 0.05);
    position: relative;
    overflow: hidden;
    padding: 2rem 1.75rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .spoton-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px var(--so-cyan-glow), 0 4px 10px rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 153, 229, 0.4);
  }

  /* Gradient Accent Top Bar */
  .spoton-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--so-cyan) 0%, #00d2ff 100%);
  }

  .spoton-card.card-alt-accent::before {
    background: linear-gradient(90deg, #0284c7 0%, var(--so-cyan) 100%);
  }

  .spoton-card.card-penrith::before {
    background: linear-gradient(90deg, var(--so-navy) 0%, var(--so-cyan) 100%);
  }

  /* Card Header */
  .spoton-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #f1f5f9;
  }

  .spoton-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--so-navy);
    margin: 0;
    letter-spacing: -0.01em;
  }

  .spoton-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--so-cyan-light);
    color: var(--so-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .spoton-card-icon svg {
    width: 18px;
    height: 18px;
  }


  /* Suburb List */
  .spoton-suburb-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .spoton-suburb-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.925rem;
    font-weight: 500;
    color: #475569;
    padding: 0.25rem 0;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .spoton-suburb-item svg {
    width: 15px;
    height: 15px;
    color: #94a3b8;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .spoton-suburb-item:hover {
    color: var(--so-cyan);
    transform: translateX(4px);
  }

  .spoton-suburb-item:hover svg {
    color: var(--so-cyan);
    transform: scale(1.15);
  }

  /* Badges & Trust Perks inside cards */
  .spoton-perks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
  }

  .spoton-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
  }

  .spoton-badge-success {
    background: var(--so-emerald-bg);
    color: var(--so-emerald);
    border: 1px solid rgba(22, 163, 74, 0.25);
  }

  .spoton-badge-info {
    background: var(--so-cyan-light);
    color: #0369a1;
    border: 1px solid rgba(0, 153, 229, 0.25);
  }

  .spoton-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  /* Card Bottom Link */
  .spoton-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.825rem;
    color: var(--so-text-muted);
  }

  .spoton-card-footer a {
    color: var(--so-cyan);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s ease, color 0.2s ease;
  }

  .spoton-card-footer a:hover {
    color: #0284c7;
    gap: 0.45rem;
  }

  /* Trust CTA Banner */
  .spoton-cta-bar {
    margin-top: 2.75rem;
    background: #ffffff;
    border: 1px solid var(--so-border);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 4px 14px rgba(15, 39, 68, 0.04);
  }

  @media (min-width: 768px) {
    .spoton-cta-bar {
      flex-direction: row;
      padding: 1.25rem 2rem;
    }
  }

  .spoton-cta-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .spoton-cta-text {
      text-align: left;
    }
  }

  .spoton-cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--so-cyan-light);
    color: var(--so-cyan);
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  @media (min-width: 640px) {
    .spoton-cta-icon {
      display: flex;
    }
  }

  .spoton-cta-icon svg {
    width: 22px;
    height: 22px;
  }

  .spoton-cta-heading {
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--so-navy);
    margin: 0 0 0.15rem 0;
  }

  .spoton-cta-desc {
    font-size: 0.85rem;
    color: var(--so-text-muted);
    margin: 0;
  }

  .spoton-btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--so-cyan) 0%, #0077b6 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.925rem;
    font-weight: 700;
    padding: 0.75rem 1.45rem;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 153, 229, 0.35);
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    width: 100%;
  }


  @media (min-width: 768px) {
    .spoton-btn-call {
      width: auto;
    }
  }

  .spoton-btn-call:hover {
    filter: brightness(1.06);
    box-shadow: 0 6px 20px rgba(0, 153, 229, 0.45);
    transform: translateY(-1px);
    color: #ffffff;
  }

  .spoton-btn-call:active {
    transform: translateY(0);
  }

  .spoton-btn-call svg {
    width: 16px;
    height: 16px;
  }

