/* Location Pages Stylesheet */

.page-location {
    min-height: 100vh;
}

/* Location Hero */
.location-hero {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(0, 191, 255, 0.02) 100%);
    border-bottom: 1px solid rgba(0, 191, 255, 0.1);
}

.location-hero h1 {
    color: #fff;
    letter-spacing: -0.5px;
}

.location-hero .lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    background: transparent;
    border: none;
}

.breadcrumb-item a {
    color: #00bfff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #00d9ff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #999;
}

/* Location Content */
.location-content {
    position: relative;
}

.location-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.location-content h3 {
    color: #fff;
    font-weight: 600;
}

.location-content p {
    line-height: 1.8;
    color: #bbb;
}

.location-content .list-unstyled li i {
    color: #00bfff;
}

.location-content .list-unstyled li {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Card */
.location-content .card {
    background: linear-gradient(135deg, rgba(18, 18, 26, 0.8) 0%, rgba(10, 10, 15, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.15) !important;
}

.location-content .card-body {
    border-radius: 12px;
}

.location-content .card a {
    color: #00bfff;
    text-decoration: none;
}

.location-content .card a:hover {
    color: #00d9ff;
}

.location-content .border-secondary {
    border-color: rgba(200, 200, 200, 0.1) !important;
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(0, 191, 255, 0.02) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 191, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.08) 0%, rgba(0, 191, 255, 0.04) 100%);
    border-color: rgba(0, 191, 255, 0.2);
    transform: translateY(-2px);
}

.feature-card h3 {
    color: #fff;
    font-weight: 600;
}

.feature-card .text-muted {
    color: #aaa !important;
}

/* Dark background variant */
.bg-dark-2 {
    background-color: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(0, 191, 255, 0.1);
    backdrop-filter: blur(5px);
}

.bg-dark-2 h2 {
    color: #fff;
}

.bg-dark-2 h4 {
    color: #00bfff;
    font-weight: 600;
}

.bg-dark-2 .text-muted {
    color: #aaa !important;
}

/* Service Link Cards */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 191, 255, 0.3) !important;
    box-shadow: 0 8px 24px rgba(0, 191, 255, 0.1) !important;
}

.hover-lift .fa-* {
    transition: color 0.3s ease;
}

.hover-lift:hover .text-primary {
    color: #00d9ff !important;
}

/* Service intent links */
.service-intent-panel {
    border: 1px solid rgba(0, 191, 255, 0.14);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.04) 0%, rgba(0, 191, 255, 0.01) 100%);
}

.intent-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.5rem;
}

.intent-link-item {
    display: block;
    font-size: 0.84rem;
    line-height: 1.35;
    color: #b8c5cf;
    text-decoration: none;
    border-left: 2px solid rgba(0, 191, 255, 0.25);
    padding: 0.35rem 0 0.35rem 0.55rem;
    transition: all 0.2s ease;
}

.intent-link-item:hover {
    color: #00d9ff;
    border-left-color: #00d9ff;
}

/* CTA Section */
.btn-primary {
    background-color: #00bfff;
    border-color: #00bfff;
    color: #0a0a0f;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: #00d9ff;
    border-color: #00d9ff;
    color: #0a0a0f;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.btn-outline-primary {
    color: #00bfff;
    border-color: #00bfff;
}

.btn-outline-primary:hover {
    background-color: #00bfff;
    border-color: #00bfff;
    color: #0a0a0f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-hero {
        padding: 3rem 0 !important;
    }

    .location-hero h1 {
        font-size: 1.75rem;
    }

    .location-hero .lead {
        font-size: 1rem;
    }

    .location-content .sticky-lg-top {
        position: relative !important;
        top: auto !important;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .d-flex.gap-3 > * {
        width: 100%;
    }

    .intent-link-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark mode reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .hover-lift,
    .btn-primary,
    .btn-outline-primary {
        transition: none;
    }
}
