/* Coming Soon Page Specific Styles */
.coming-soon-hero {
    position: relative;
    overflow: hidden;
}

/* Video Background Styles */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 43, 58, 0.7) 0%, rgba(78, 138, 109, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.scroll-indicator {
    z-index: 2;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.vision-content p span {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.vision-content p span:nth-child(1) { animation-delay: 0.1s; }
.vision-content p span:nth-child(2) { animation-delay: 0.3s; }
.vision-content p span:nth-child(3) { animation-delay: 0.5s; }
.vision-content p span:nth-child(4) { animation-delay: 0.7s; }
.vision-content p span:nth-child(5) { animation-delay: 0.9s; }
.vision-content p span:nth-child(6) { animation-delay: 1.1s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.uk-slideshow-items img {
    object-fit: cover;
}

.recruitment-section .feature-item {
    transition: transform 0.3s ease;
}

.recruitment-section .feature-item:hover {
    transform: translateY(-10px);
}

.social-link:hover {
    color: var(--primary-accent) !important;
    transform: scale(1.2);
}

.location-info {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-item a:hover {
    color: var(--primary-accent) !important;
}

/* Newsletter Section Styles */
.newsletter-form {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input {
    background: white;
    color: var(--dark-navy);
}

.newsletter-input:focus {
    outline: none;
    border: 2px solid var(--primary-accent);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(165, 206, 60, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon-hero {
        padding: 80px 0 !important;
    }
    
    .coming-soon-badge .uk-badge {
        font-size: 1rem !important;
        padding: 15px 40px !important;
        letter-spacing: 2px !important;
    }
    
    .hero-description .uk-text-lead {
        font-size: 1.2rem !important;
    }
    
    .hero-description .uk-text-lead span {
        font-size: 1.4rem !important;
    }
    
    .vision-content p {
        font-size: 1.3rem !important;
    }
    
    .vision-content p span:last-child {
        font-size: 1.5rem !important;
    }
    
    .recruitment-section h3 {
        font-size: 1.8rem !important;
    }
    
    .map-container {
        min-height: 350px !important;
    }
}

@media (max-width: 640px) {
    .coming-soon-badge .uk-badge {
        font-size: 0.75rem !important;
        padding: 10px 25px !important;
        letter-spacing: 1px !important;
    }
    
    .recruitment-apply-btn {
        font-size: 0.875rem !important;
        padding: 12px 30px !important;
    }
    
    .recruitment-apply-btn span {
        display: none !important;
    }
    
    .recruitment-features .feature-icon i {
        font-size: 2rem !important;
    }
    
    .coming-soon-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-description .uk-text-lead {
        font-size: 1.1rem !important;
    }
    
    .hero-description .uk-text-lead span {
        font-size: 1.3rem !important;
    }
    
    .uk-slideshow-items {
        min-height: 300px !important;
    }
    
    .vision-content p {
        font-size: 1.1rem !important;
    }
    
    .recruitment-section .uk-text-large {
        font-size: 1.1rem !important;
    }
}
/* Newsletter Section Styles */
.newsletter-form {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input {
    background: white;
    color: var(--dark-navy);
}

.newsletter-input:focus {
    outline: none;
    border: 2px solid var(--primary-accent);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(165, 206, 60, 0.4);
}

.social-link:hover {
    color: var(--primary-accent) !important;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newsletter-section .uk-text-large {
        font-size: 1.1rem !important;
    }
    
    .newsletter-input {
        font-size: 0.95rem !important;
        padding: 12px 25px !important;
    }
}

@media (max-width: 640px) {
    .newsletter-section h2 {
        font-size: 1.8rem !important;
    }
    
    .newsletter-section .uk-text-large {
        font-size: 1rem !important;
    }
    
    .newsletter-input {
        font-size: 0.9rem !important;
        padding: 12px 20px !important;
    }
    
    .newsletter-btn {
        font-size: 0.875rem !important;
        padding: 12px 30px !important;
    }
    
    .newsletter-btn span {
        display: none !important;
    }
    
    .social-links-large a span {
        font-size: 2rem !important;
    }
}