/* UA Locksmith - Slot 5 Styles */

/* Hero Section */
.locksmith-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.locksmith-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.locksmith-title {
    letter-spacing: 5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Floating Keys Animation */
.floating-keys {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-key {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: floatKey 12s infinite ease-in-out;
}

.key-1 { left: 10%; top: 20%; animation-delay: 0s; }
.key-2 { right: 15%; top: 35%; animation-delay: 3s; font-size: 2rem; }
.key-3 { left: 15%; bottom: 25%; animation-delay: 6s; }
.key-4 { right: 10%; bottom: 30%; animation-delay: 9s; font-size: 3rem; }

@keyframes floatKey {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-25px) rotate(15deg); opacity: 0.2; }
    50% { transform: translateY(-10px) rotate(-10deg); opacity: 0.15; }
    75% { transform: translateY(-35px) rotate(20deg); opacity: 0.25; }
}

/* Emergency Badge */
.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #dc3545, #c82333);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(220, 53, 69, 0); }
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Lock Icon */
.lock-icon-wrapper {
    display: flex;
    justify-content: center;
}

.lock-icon {
    position: relative;
    width: 80px;
    height: 100px;
    animation: lockWiggle 3s infinite ease-in-out;
}

@keyframes lockWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.lock-shackle {
    width: 40px;
    height: 35px;
    border: 8px solid #ffd700;
    border-bottom: none;
    border-radius: 25px 25px 0 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.lock-body {
    width: 65px;
    height: 50px;
    background: linear-gradient(145deg, #ffd700, #ffb700);
    border-radius: 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 20px rgba(255, 183, 0, 0.4);
}

.keyhole {
    width: 12px;
    height: 18px;
    background: #1a1a2e;
    border-radius: 50% 50% 5px 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.keyhole::after {
    content: '';
    width: 6px;
    height: 10px;
    background: #1a1a2e;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Emergency Call Button */
.emergency-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, #28a745, #20913c) !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.emergency-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.5);
}

.phone-ring {
    font-size: 1.8rem;
    animation: phoneRing 1s infinite;
}

@keyframes phoneRing {
    0%, 50%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
}

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

.btn-text-content small {
    font-size: 0.7rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

.btn-text-content strong {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* Services Section */
.locksmith-services {
    background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 100%);
}

.locksmith-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.locksmith-service-card h4 {
    color: #fff;
    margin-bottom: 10px;
}

.locksmith-service-card p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

/* Service Areas */
.locksmith-areas {
    background: #1a1a2e;
}

.area-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.area-tag {
    background: linear-gradient(145deg, rgba(15, 52, 96, 0.8), rgba(22, 33, 62, 0.8));
    color: #4da8da;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(77, 168, 218, 0.3);
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: rgba(77, 168, 218, 0.2);
    transform: scale(1.05);
}

/* Features Section */
.locksmith-features {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f3460 100%);
}

.feature-card {
    padding: 30px 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* CTA Section */
.locksmith-cta {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
}

.emergency-cta-btn {
    background: linear-gradient(90deg, #dc3545, #c82333) !important;
    border: none !important;
    padding: 18px 40px !important;
    font-size: 1.2rem !important;
    letter-spacing: 1px;
    animation: ctaGlow 2s infinite;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 53, 69, 0.5); }
    50% { box-shadow: 0 0 40px rgba(220, 53, 69, 0.8); }
}

.emergency-cta-btn:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .locksmith-title {
        font-size: 2.5rem !important;
        letter-spacing: 3px;
    }
    
    .emergency-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
    }
    
    .lock-icon {
        width: 60px;
        height: 80px;
    }
    
    .lock-shackle {
        width: 30px;
        height: 28px;
        border-width: 6px;
    }
    
    .lock-body {
        width: 50px;
        height: 40px;
    }
    
    .btn-text-content strong {
        font-size: 1.1rem;
    }
    
    .floating-key {
        font-size: 1.5rem;
    }
}
