/* UA Locksmith Modern - Slot 6 Styles */

:root {
    --ls-bg: #0a0a0f;
    --ls-bg-alt: #12121a;
    --ls-cyan: #00f5ff;
    --ls-purple: #7c3aed;
    --ls-pink: #ec4899;
    --ls-white: #ffffff;
    --ls-gray: #94a3b8;
    --ls-dark-gray: #1e1e2e;
}

/* Hero Section */
.ls-hero {
    min-height: 100vh;
    background: var(--ls-bg);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

/* Animated Grid Background */
.ls-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

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

/* Gradient Orbs */
.ls-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 8s ease-in-out infinite;
}

.ls-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--ls-cyan);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.ls-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--ls-purple);
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.ls-orb-3 {
    width: 200px;
    height: 200px;
    background: var(--ls-pink);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
    opacity: 0.3;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.ls-hero-content {
    position: relative;
    z-index: 1;
}

/* Status Badge */
.ls-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ls-cyan);
}

.ls-live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Lock Icon */
.ls-icon-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
}

.ls-lock-svg {
    width: 100%;
    height: 100%;
    animation: lockBreathe 4s ease-in-out infinite;
}

@keyframes lockBreathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ls-shackle {
    animation: shackleMove 4s ease-in-out infinite;
    transform-origin: center;
}

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

.ls-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--ls-bg), var(--ls-bg)), 
                      linear-gradient(135deg, var(--ls-cyan), var(--ls-purple));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: ringGlow 3s ease-in-out infinite;
}

@keyframes ringGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

/* Title */
.ls-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.ls-title-ua {
    display: block;
    background: linear-gradient(135deg, var(--ls-cyan), var(--ls-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ls-title-locksmith {
    display: block;
    color: var(--ls-white);
    font-weight: 300;
    letter-spacing: 8px;
    font-size: 2rem;
}

.ls-tagline {
    color: var(--ls-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* CTA Button */
.ls-cta-btn {
    display: inline-flex;
    position: relative;
    text-decoration: none;
    margin-bottom: 50px;
}

.ls-btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--ls-cyan), var(--ls-purple));
    border-radius: 16px;
    z-index: 0;
    opacity: 0.7;
    filter: blur(10px);
    transition: opacity 0.3s;
}

.ls-cta-btn:hover .ls-btn-glow {
    opacity: 1;
}

.ls-btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 18px 30px;
    border-radius: 14px;
    color: var(--ls-white);
    transition: all 0.3s;
}

.ls-cta-btn:hover .ls-btn-content {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--ls-white);
}

.ls-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ls-btn-text small {
    font-size: 0.7rem;
    color: var(--ls-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ls-btn-text strong {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Stats */
.ls-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.ls-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ls-stat-num {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ls-cyan), var(--ls-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ls-stat-label {
    font-size: 0.8rem;
    color: var(--ls-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ls-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
}

/* Services Section */
.ls-services {
    background: var(--ls-bg-alt);
    padding: 100px 0;
}

.ls-section-header {
    margin-bottom: 60px;
}

.ls-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--ls-cyan);
    margin-bottom: 15px;
}

.ls-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ls-white);
    margin: 0;
}

/* Service Cards */
.ls-service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ls-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ls-cyan), var(--ls-purple));
    opacity: 0;
    transition: opacity 0.3s;
}

.ls-service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.ls-service-card:hover::before {
    opacity: 1;
}

.ls-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.ls-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--ls-cyan);
    transition: stroke 0.3s;
}

.ls-service-card:hover .ls-card-icon svg {
    stroke: var(--ls-purple);
}

.ls-service-card h4 {
    color: var(--ls-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ls-service-card p {
    color: var(--ls-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ls-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ls-cyan);
    background: rgba(0, 245, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

/* Features Section */
.ls-features {
    background: var(--ls-bg);
    padding: 100px 0;
}

.ls-features-content {
    padding-right: 50px;
}

.ls-features-desc {
    color: var(--ls-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.ls-feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ls-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ls-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--ls-cyan);
}

.ls-feature-text h5 {
    color: var(--ls-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.ls-feature-text p {
    color: var(--ls-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Visual Card (Code-like) */
.ls-features-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ls-visual-card {
    background: var(--ls-dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.ls-visual-header {
    display: flex;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ls-visual-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.ls-visual-dot:first-child { background: #ff5f56; }
.ls-visual-dot:nth-child(2) { background: #ffbd2e; }
.ls-visual-dot:nth-child(3) { background: #27ca40; }

.ls-visual-content {
    padding: 25px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

.ls-code-line {
    margin-bottom: 10px;
}

.ls-code-key {
    color: var(--ls-purple);
}

.ls-code-val {
    color: #22c55e;
}

.ls-code-num {
    color: var(--ls-cyan);
}

.ls-code-bool {
    color: var(--ls-pink);
}

/* Service Areas */
.ls-areas {
    background: var(--ls-bg-alt);
    padding: 100px 0;
}

.ls-area-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.ls-area-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--ls-gray);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: default;
}

.ls-area-chip:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.3);
    color: var(--ls-cyan);
    transform: translateY(-2px);
}

.ls-area-more {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-color: rgba(0, 245, 255, 0.2);
    color: var(--ls-cyan);
}

/* CTA Section */
.ls-cta-section {
    background: var(--ls-bg);
    padding: 100px 0;
}

.ls-cta-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    overflow: hidden;
}

.ls-cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--ls-cyan), var(--ls-purple));
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    top: -100px;
    right: -100px;
}

.ls-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ls-white);
    margin-bottom: 10px;
}

.ls-cta-text {
    color: var(--ls-gray);
    font-size: 1.1rem;
    margin: 0;
}

/* Emergency Button */
.ls-emergency-btn {
    position: relative;
    display: inline-flex;
    text-decoration: none;
    margin-top: 20px;
}

.ls-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--ls-cyan);
    border-radius: 14px;
    animation: pulseRing 2s infinite;
}

.ls-pulse-2 {
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.ls-btn-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ls-cyan), var(--ls-purple));
    color: var(--ls-bg);
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 35px;
    border-radius: 12px;
    transition: all 0.3s;
}

.ls-emergency-btn:hover .ls-btn-inner {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.3);
    color: var(--ls-bg);
}

/* Footer */
.ls-footer {
    background: var(--ls-bg-alt);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ls-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ls-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ls-footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ls-cyan), var(--ls-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ls-footer-name {
    color: var(--ls-gray);
    font-weight: 300;
    letter-spacing: 3px;
}

.ls-footer-copy {
    color: var(--ls-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .ls-features-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .ls-cta-card {
        text-align: center;
        padding: 40px 30px;
    }
    
    .ls-cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .ls-hero {
        padding: 60px 0;
    }
    
    .ls-title {
        font-size: 3rem;
    }
    
    .ls-title-locksmith {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .ls-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .ls-stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .ls-section-title {
        font-size: 2rem;
    }
    
    .ls-footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .ls-icon-container {
        width: 100px;
        height: 100px;
    }
    
    .ls-glow-ring {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .ls-title {
        font-size: 2.5rem;
    }
    
    .ls-title-locksmith {
        font-size: 1.2rem;
    }
    
    .ls-btn-content {
        padding: 15px 20px;
    }
    
    .ls-btn-text strong {
        font-size: 1.1rem;
    }
    
    .ls-cta-card {
        padding: 30px 20px;
    }
    
    .ls-cta-title {
        font-size: 1.8rem;
    }
}
