/* ================================
   LOCATIONS PAGE STYLES
   ================================ */

:root {
    --primary: #000000;
    --secondary: #00FFFF;
    --accent: #00C3FF;
    --dark: #0a0a0a;
}

/* Hero Section */
.locations-index-hero {
    background: #000000;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 45vh;
    display: flex;
    align-items: center;
}

#particles-locations-index {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.hero-badge i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.hero-badge span {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.locations-index-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.locations-index-hero h1 .text-accent {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(0, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.hero-btn {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-color: rgba(0, 255, 255, 0.3);
    color: #000000;
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.6);
}

.hero-btn-secondary {
    background: transparent;
    border-color: rgba(0, 255, 255, 0.3);
    color: var(--secondary);
}

.hero-btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

/* Locations Grid Section */
.locations-grid-section {
    background: linear-gradient(135deg, #0a1419 0%, #0f1f26 50%, #0a1419 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.locations-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.locations-grid-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-badge i {
    color: var(--secondary);
}

.section-badge span {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.section-header-modern h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header-modern h2 .gradient-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-modern .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.location-card-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.location-card-link:hover {
    transform: translateY(-8px);
}

.location-card-index {
    background: linear-gradient(135deg, rgba(15, 20, 30, 0.8) 0%, rgba(20, 25, 35, 0.8) 100%);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.location-card-index::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.location-card-link:hover .location-card-index {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 25px 80px rgba(0, 255, 255, 0.2);
}

.location-card-link:hover .location-card-index::before {
    opacity: 1;
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.location-card-link:hover .location-icon {
    transform: scale(1.1) rotate(5deg);
}

.location-icon i {
    font-size: 2rem;
    color: #000000;
}

.location-card-index h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    min-height: 2.2em;
    line-height: 1.1;
}

.location-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

.location-info p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.location-info i {
    color: var(--secondary);
}

.location-landmarks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.landmark-tag {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-card-link:hover .landmark-tag {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.4);
    color: white;
}

.view-more {
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.view-more i {
    transition: transform 0.3s ease;
}

.location-card-link:hover .view-more {
    color: white;
}

.location-card-link:hover .view-more i {
    transform: translateX(5px);
}

/* Services Overview Section */
.services-overview-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

#servicesParticleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(15, 20, 30, 0.6) 0%, rgba(20, 25, 35, 0.6) 100%);
    border: 2px solid rgba(0, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.overview-card::after {
    content: '→';
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--secondary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.overview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(15, 20, 30, 0.8) 0%, rgba(20, 25, 35, 0.8) 100%);
}

.overview-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.overview-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.overview-card h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.overview-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

/* Why Choose Us & CTA Combined Section */
.why-choose-cta-section {
    background: linear-gradient(135deg, #0a1419 0%, #0f1f26 50%, #0a1419 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.why-choose-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

#ctaParticleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-left h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.why-choose-left h2 .gradient-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.benefits-list i {
    color: var(--secondary);
    margin-top: 0.25rem;
    font-size: 1.4rem;
    min-width: 24px;
}

.benefits-list strong {
    color: white;
}

.testimonial-highlight {
    background: linear-gradient(135deg, rgba(15, 20, 30, 0.8) 0%, rgba(20, 25, 35, 0.8) 100%);
    border: 2px solid rgba(0, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: #FFD700;
    margin-right: 0.25rem;
    font-size: 1.3rem;
}

.testimonial-highlight blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 1.5rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-highlight cite {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.stats-simple {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(135deg, rgba(15, 20, 30, 0.6) 0%, rgba(20, 25, 35, 0.6) 100%);
    border: 2px solid rgba(0, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Content within Combined Section */
.cta-content {
    margin-top: 6rem;
    padding-top: 5rem;
    text-align: center;
    border-top: 2px solid rgba(0, 255, 255, 0.15);
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-content h2 .gradient-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content .lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-color: rgba(0, 255, 255, 0.3);
    color: #000000;
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.6);
}

.cta-btn-secondary {
    background: transparent;
    border-color: rgba(0, 255, 255, 0.3);
    color: var(--secondary);
}

.cta-btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

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

@keyframes gentleGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 1200px) {
    .locations-index-hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .locations-index-hero {
        padding: 6rem 0 4rem;
    }
    
    .locations-index-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header-modern h2 {
        font-size: 2.2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-simple {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .why-choose-left h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content {
        margin-top: 4rem;
        padding-top: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-cta-buttons,
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .hero-btn,
    .final-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
