/* Hero */
.hero-local-service {
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/lidingo-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
    color: #d4af37;
}

.location-badge svg {
    width: 20px;
    height: 20px;
}

.hero-local-service h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.store-address {
    font-size: 1rem;
    color: #cbd5e1;
    margin-top: 16px;
}

/* Services Section */
.local-services-section {
    padding: 80px 0;
    background: white;
}

.local-services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #0a0e27;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 32px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #0a0e27;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Why Choose Us */
.why-choose-us-section {
    padding: 80px 0;
    background: #fafafa;
}

.why-choose-us-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #0a0e27;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-card {
    padding: 32px;
    background: white;
    border-radius: 16px;
}

.benefit-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #0a0e27;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.cta-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
}

.cta-card p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-local-service {
        padding: 100px 0 60px;
    }

    .hero-cta-group {
        flex-direction: column;
    }
}
