/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    color: #ffffff;
}

/* Industrial Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 100, 0, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, rgba(50, 50, 50, 0.1) 100%);
    z-index: -1;
}

/* Industrial Grid Pattern */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 150, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles - Industrial Design */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 30, 30, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(0, 150, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 150, 255, 0.1), transparent);
    animation: scan 3s infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    position: relative;
}

.logo-img {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.5));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.company-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid rgba(0, 150, 255, 0.3);
    padding-top: 15px;
    margin-top: 15px;
}

/* Main Content - Industrial Cards */
.main-content {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.maintenance-notice {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 100, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.maintenance-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6400, #0096ff, #ff6400);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}


.maintenance-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.maintenance-message {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown - Industrial Style */
.countdown-container {
    margin-top: 30px;
}

.countdown-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: linear-gradient(135deg, #ff6400 0%, #ff8c00 100%);
    color: white;
    padding: 25px 20px;
    border-radius: 10px;
    min-width: 110px;
    box-shadow: 
        0 8px 25px rgba(255, 100, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: countdown-scan 2s infinite;
}

@keyframes countdown-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.countdown-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6400, #0096ff);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Warning Animation */
@keyframes pulse-warning {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(255, 100, 0, 0.4);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(255, 100, 0, 0.8), 0 0 20px rgba(255, 100, 0, 0.6);
    }
}

/* Company Info - Industrial Grid */
.company-info {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 150, 255, 0.3);
    position: relative;
}

.company-info h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(30, 30, 30, 0.8) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0096ff, #ff6400);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 150, 255, 0.3);
    border-color: rgba(0, 150, 255, 0.5);
}

.service-image {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.8) contrast(1.1);
}

.service-item:hover .service-img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2) drop-shadow(0 0 15px rgba(0, 150, 255, 0.5));
}

.service-item h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Contact Info - Industrial Style */
.contact-info {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 100, 0, 0.3);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(30, 30, 30, 0.7) 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0096ff, #ff6400);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: rgba(0, 150, 255, 0.5);
    box-shadow: 0 5px 20px rgba(0, 150, 255, 0.2);
}

.contact-item svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 150, 255, 0.5));
}

.contact-item span {
    color: #ffffff;
    font-weight: 500;
}

/* Caribbean Elements - Subtle Industrial Integration */
.caribbean-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.palm-tree {
    position: absolute;
    opacity: 0.15;
    filter: hue-rotate(200deg) saturate(0.5);
    animation: industrial-sway 6s ease-in-out infinite;
}

.palm-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

@keyframes industrial-sway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    filter: hue-rotate(200deg) saturate(0.3);
    animation: industrial-wave 8s ease-in-out infinite;
}

@keyframes industrial-wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-15px); }
}

.sun {
    position: absolute;
    top: 10%;
    left: 5%;
    opacity: 0.3;
    filter: hue-rotate(200deg) saturate(0.4);
    animation: industrial-glow 4s ease-in-out infinite;
}

@keyframes industrial-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.02); }
}

/* Footer - Industrial Style */
.footer {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(0, 150, 255, 0.3);
    margin-top: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo-img {
        max-width: 280px;
    }
    
    .company-tagline {
        font-size: 0.9rem;
    }
    
    .maintenance-title {
        font-size: 1.8rem;
    }
    
    .maintenance-message {
        font-size: 1rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 90px;
        padding: 20px 15px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-img {
        height: 180px;
    }
    
    .contact-details {
        gap: 15px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .palm-tree {
        width: 60px;
        height: 90px;
    }
    
    .sun {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 25px 0;
    }
    
    .maintenance-notice,
    .company-info,
    .contact-info {
        padding: 25px;
    }
    
    .countdown {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-item {
        width: 120px;
    }
    
    .logo-img {
        max-width: 220px;
    }
}