/* ==========================================================================
   Location Pages - Premium Styling
   INREACH Supports - Ipswich, Brisbane, Gold Coast
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero Section - Premium with layered gradients and animation
   -------------------------------------------------------------------------- */
.location-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0ea5e9 40%, var(--primary-dark) 100%);
    color: white;
    padding: 6rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay */
.location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100% 100%, 100% 100%, 60px 60px;
    opacity: 1;
    pointer-events: none;
    animation: heroShimmer 15s ease-in-out infinite;
}

/* Bottom wave decoration */
.location-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path fill="%23ffffff" d="M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z"/></svg>');
    background-size: cover;
    background-position: center;
}

@keyframes heroShimmer {
    0%, 100% {
        opacity: 1;
        background-position: 0% 0%, 100% 100%, 0 0;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 100%, 0% 0%, 30px 30px;
    }
}

.location-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.location-hero h1 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.location-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    line-height: 1.7;
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
    opacity: 0;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.98) !important;
    font-size: 1.5rem !important;
    font-weight: 600;
    margin-bottom: 0.75rem !important;
    letter-spacing: 0.02em;
    opacity: 1 !important;
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards !important;
}

/* --------------------------------------------------------------------------
   Breadcrumbs - Glassmorphic Premium styling
   -------------------------------------------------------------------------- */
.location-hero .breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(40, 170, 225, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-hero .breadcrumbs:hover {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 20px rgba(40, 170, 225, 0.15);
}

.location-hero .breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-hero .breadcrumbs a:hover {
    color: var(--primary-dark);
}

.location-hero .breadcrumbs span {
    color: var(--light-text);
}

/* --------------------------------------------------------------------------
   Hero Badge Row - Premium glass morphism
   -------------------------------------------------------------------------- */
.badge-row {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.18);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-badge:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-badge span:first-child {
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Main Content Area
   -------------------------------------------------------------------------- */
.location-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* --------------------------------------------------------------------------
   Section Styling - Premium with gradient backgrounds
   -------------------------------------------------------------------------- */
.location-section {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f4fc 50%, #dbeafe 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* Decorative accent */
.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #68CEFF, var(--primary-color));
    background-size: 200% 100%;
    animation: sectionAccent 8s ease infinite;
}

@keyframes sectionAccent {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.location-section h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 1rem;
}

.location-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #68CEFF);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-section:hover h2::after {
    width: 120px;
}

.location-section > p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
}

/* --------------------------------------------------------------------------
   Suburbs Grid - Premium tags with hover effects
   -------------------------------------------------------------------------- */
.suburbs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.suburb-tag {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(40, 170, 225, 0.12);
    box-shadow: 0 4px 15px rgba(40, 170, 225, 0.08);
    position: relative;
    overflow: hidden;
}

.suburb-tag::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #68CEFF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.suburb-tag:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(40, 170, 225, 0.2);
    color: var(--primary-dark);
}

.suburb-tag:hover::before {
    transform: scaleX(1);
}

/* --------------------------------------------------------------------------
   Services List - Premium cards with animated accents
   -------------------------------------------------------------------------- */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.75rem;
    margin: 2.5rem 0;
}

.service-item {
    background: white;
    padding: 2.25rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(40, 170, 225, 0.12);
    border: 1px solid rgba(40, 170, 225, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Animated left accent bar */
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, #68CEFF 50%, var(--primary-color) 100%);
    background-size: 100% 200%;
    animation: serviceAccent 3s ease infinite;
}

@keyframes serviceAccent {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

/* Hover glow effect */
.service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40, 170, 225, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(40, 170, 225, 0.2);
}

.service-item:hover::after {
    opacity: 1;
}

.service-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 700;
    position: relative;
}

.service-item p {
    color: var(--light-text);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    position: relative;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-link::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 0.6rem;
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Accommodation Cards - Premium styling (Ipswich page)
   -------------------------------------------------------------------------- */
.accommodation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.accommodation-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(40, 170, 225, 0.12);
    border: 1px solid rgba(40, 170, 225, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.accommodation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #68CEFF, var(--primary-color));
    background-size: 200% 100%;
    animation: cardAccent 4s ease infinite;
}

@keyframes cardAccent {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.accommodation-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(40, 170, 225, 0.2);
}

.accommodation-card-content {
    padding: 2.5rem;
}

.accommodation-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.accommodation-card p {
    color: var(--light-text);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.accommodation-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.accommodation-card li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-color);
    border-bottom: 1px solid rgba(40, 170, 225, 0.08);
    transition: all 0.3s ease;
}

.accommodation-card li:last-child {
    border-bottom: none;
}

.accommodation-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.accommodation-card li:hover {
    padding-left: 2.5rem;
    color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   Why Choose List - Premium styling
   -------------------------------------------------------------------------- */
.why-choose-list {
    line-height: 1.8;
    font-size: 1.1rem;
    padding-left: 0;
    list-style: none;
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 30px rgba(40, 170, 225, 0.1);
}

.why-choose-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(40, 170, 225, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-list li:last-child {
    border-bottom: none;
}

.why-choose-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 1rem;
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--primary-color), #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-top: 2px;
    box-shadow: 0 4px 10px rgba(40, 170, 225, 0.3);
}

.why-choose-list li:hover {
    padding-left: 3rem;
    background: rgba(40, 170, 225, 0.03);
    margin: 0 -1rem;
    padding-right: 1rem;
    border-radius: 12px;
}

.why-choose-list li strong {
    color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   Getting Started List - Premium styling
   -------------------------------------------------------------------------- */
.getting-started-list {
    line-height: 2;
    padding-left: 0;
    list-style: none;
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 6px 25px rgba(40, 170, 225, 0.1);
}

.getting-started-list li {
    padding: 0.75rem 0;
    padding-left: 2.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.getting-started-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.getting-started-list li:hover {
    padding-left: 2.75rem;
    color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   CTA Section - Premium with gradient and glass morphism
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, #f0f9ff 0%, rgba(40, 170, 225, 0.12) 50%, #e0f2fe 100%);
    padding: 4rem 3rem;
    text-align: center;
    border-radius: 32px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(40, 170, 225, 0.15);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(40, 170, 225, 0.08) 0%, transparent 50%);
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    position: relative;
}

.cta-section h2::after {
    display: none;
}

.cta-section > p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--light-text);
    font-size: 1.15rem;
    line-height: 1.7;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
}

/* Primary CTA Button - Premium */
.primary-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0ea5e9 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(40, 170, 225, 0.35);
    position: relative;
    overflow: hidden;
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(40, 170, 225, 0.45);
    background: linear-gradient(135deg, #0ea5e9 0%, var(--primary-dark) 100%);
}

.primary-cta:hover::before {
    left: 100%;
}

/* Secondary CTA Button - Premium */
.secondary-cta {
    background: white;
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(40, 170, 225, 0.1);
}

.secondary-cta:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0ea5e9 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(40, 170, 225, 0.35);
}

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

/* --------------------------------------------------------------------------
   Responsive Styles
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .location-hero {
        padding: 5rem 1.5rem 4rem;
    }

    .location-hero h1 {
        font-size: 2.25rem;
    }

    .services-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .accommodation-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .location-hero {
        padding: 4.5rem 1.25rem 3.5rem;
    }

    .location-hero h1 {
        font-size: 1.85rem;
    }

    .location-hero p {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.25rem !important;
    }

    .location-hero::after {
        height: 50px;
    }

    .badge-row {
        gap: 0.75rem;
    }

    .location-badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .location-content {
        padding: 2.5rem 1.25rem;
    }

    .location-section {
        padding: 1.75rem 1.5rem;
        margin-bottom: 2.5rem;
        border-radius: 20px;
    }

    .location-section h2 {
        font-size: 1.5rem;
    }

    .suburbs-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.75rem;
    }

    .suburb-tag {
        padding: 0.875rem 1rem;
        border-radius: 12px;
        font-size: 0.9rem;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-item {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }

    .why-choose-list,
    .getting-started-list {
        padding: 1.25rem 1.5rem;
    }

    .why-choose-list li:hover,
    .getting-started-list li:hover {
        margin: 0;
        padding-right: 0;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
        margin: 2rem 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .location-hero {
        padding: 4rem 1rem 3rem;
    }

    .location-hero h1 {
        font-size: 1.6rem;
    }

    .suburbs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .accommodation-card-content {
        padding: 1.75rem;
    }
}

/* --------------------------------------------------------------------------
   Accessibility - Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .location-hero::before,
    .location-section::before,
    .service-item::before,
    .accommodation-card::before,
    .cta-section::before,
    .primary-cta::before {
        animation: none;
    }

    .location-hero h1,
    .location-hero p,
    .hero-subtitle,
    .badge-row {
        animation: none;
        opacity: 1;
    }

    .suburb-tag,
    .service-item,
    .accommodation-card,
    .why-choose-list li,
    .getting-started-list li,
    .primary-cta,
    .secondary-cta,
    .location-badge {
        transition: none;
    }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .location-hero {
        background: var(--primary-color) !important;
        padding: 2rem;
    }

    .location-hero::before,
    .location-hero::after,
    .location-section::before,
    .cta-section::before {
        display: none;
    }

    .location-section,
    .cta-section {
        break-inside: avoid;
    }

    .badge-row {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Dark Mode Support
   -------------------------------------------------------------------------- */
@media (prefers-color-scheme: dark) {
    /* Hero Section - Wave SVG adjustment for dark background */
    .location-hero::after {
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path fill="%231a2332" d="M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z"/></svg>');
        background-size: cover;
        background-position: center;
    }

    /* Breadcrumbs - Dark glassmorphism */
    .location-hero .breadcrumbs {
        background: rgba(26, 35, 50, 0.85);
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }

    .location-hero .breadcrumbs:hover {
        background: rgba(26, 35, 50, 0.95);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .location-hero .breadcrumbs a {
        color: var(--primary-color);
    }

    .location-hero .breadcrumbs a:hover {
        color: var(--primary-dark);
    }

    .location-hero .breadcrumbs span {
        color: var(--light-text);
    }

    /* Badge Row - Dark glassmorphism */
    .location-badge {
        background: rgba(26, 35, 50, 0.6);
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    }

    .location-badge:hover {
        background: rgba(42, 58, 78, 0.8);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    }

    /* Location Section - Dark gradient background */
    .location-section {
        background: linear-gradient(135deg, #0c1219 0%, #111d2a 100%);
        border: 1px solid var(--border-color);
    }

    .location-section h2 {
        color: var(--primary-dark);
    }

    .location-section > p {
        color: var(--light-text);
    }

    /* Suburbs Grid - Dark cards */
    .suburb-tag {
        background: #1a2332;
        color: var(--text-color);
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
    }

    .suburb-tag:hover {
        background: #1a2332;
        border-color: var(--primary-color);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        color: var(--primary-dark);
    }

    /* Service Items - Dark cards */
    .service-item {
        background: #1a2332;
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
    }

    .service-item:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .service-item::after {
        background: radial-gradient(circle, rgba(59, 184, 239, 0.1) 0%, transparent 70%);
    }

    .service-item h3 {
        color: var(--primary-dark);
    }

    .service-item p {
        color: var(--light-text);
    }

    .service-link {
        color: var(--primary-color);
    }

    .service-link:hover {
        color: var(--primary-dark);
    }

    /* Accommodation Cards - Dark styling */
    .accommodation-card {
        background: #1a2332;
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
    }

    .accommodation-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .accommodation-card h3 {
        color: var(--primary-dark);
    }

    .accommodation-card p {
        color: var(--light-text);
    }

    .accommodation-card li {
        color: var(--text-color);
        border-bottom-color: var(--border-color);
    }

    .accommodation-card li::before {
        color: var(--primary-color);
    }

    .accommodation-card li:hover {
        color: var(--primary-dark);
    }

    /* Why Choose List - Dark styling */
    .why-choose-list {
        background: #1a2332;
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
    }

    .why-choose-list li {
        color: var(--text-color);
        border-bottom-color: var(--border-color);
    }

    .why-choose-list li:hover {
        background: rgba(59, 184, 239, 0.05);
    }

    .why-choose-list li strong {
        color: var(--primary-dark);
    }

    /* Getting Started List - Dark styling */
    .getting-started-list {
        background: #1a2332;
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
    }

    .getting-started-list li {
        color: var(--text-color);
    }

    .getting-started-list li::before {
        color: var(--primary-color);
    }

    .getting-started-list li:hover {
        color: var(--primary-dark);
    }

    /* CTA Section - Dark gradient */
    .cta-section {
        background: linear-gradient(135deg, #0c1219 0%, rgba(59, 184, 239, 0.08) 50%, #111d2a 100%);
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
    }

    .cta-section::before {
        background: radial-gradient(circle at center, rgba(59, 184, 239, 0.06) 0%, transparent 50%);
    }

    .cta-section h2 {
        color: var(--primary-dark);
    }

    .cta-section > p {
        color: var(--light-text);
    }

    /* Secondary CTA Button - Dark styling */
    .secondary-cta {
        background: #1a2332;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
    }

    .secondary-cta:hover {
        background: linear-gradient(135deg, var(--primary-color) 0%, #0ea5e9 100%);
        color: white;
        border-color: transparent;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }
}
