:root {
    --primary: #3e5b67;
    --secondary: #fbb92a;
    --dark: #142734;
    --blue-1: #156281;
    --blue-2: #155e75;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-overlay: rgba(20, 39, 52, 0.75);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 2rem 1rem;
}

/* Background Animations */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--blue-2) 0%, var(--dark) 100%);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.blob {
    position: absolute;
    filter: blur(90px);
    border-radius: 50%;
    animation: float 12s infinite ease-in-out alternate;
    z-index: 0;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background-color: rgba(62, 91, 103, 0.6); /* --primary */
    top: -150px;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(251, 185, 42, 0.25); /* --secondary */
    bottom: -100px;
    right: -100px;
    animation-delay: -4s;
    animation-duration: 15s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background-color: rgba(21, 98, 129, 0.4); /* --blue-1 */
    top: 40%;
    left: 60%;
    animation-delay: -2s;
    animation-duration: 10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
    100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Main Container */
.coming-soon-container {
    position: relative;
    z-index: 2;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem;
    border-radius: 30px;
    max-width: 850px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header & Logo */
.header {
    margin-bottom: 2.5rem;
}

.logo-container {
    background: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-radius: 60px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.logo {
    width: 180px;
    height: auto;
}

/* Typography & Content */
.badge {
    display: inline-block;
    background: rgba(251, 185, 42, 0.15);
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(251, 185, 42, 0.4);
    box-shadow: 0 0 20px rgba(251, 185, 42, 0.1);
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 40%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Services Preview */
.services-preview {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.75rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 185, 42, 0.5);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-item .icon {
    color: var(--secondary);
}

/* Contact Card */
.contact-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
    font-weight: 600;
    color: var(--text-light);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--blue-1);
    border-color: var(--blue-1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(21, 98, 129, 0.4);
}

.contact-link.whatsapp:hover {
    background: #25D366; /* WhatsApp brand color */
    border-color: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--secondary);
}

.contact-link:hover .icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Footer */
.footer {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.location svg {
    color: var(--secondary);
}

.footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 2.5rem 1.5rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .logo-container {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        width: 140px;
    }
    
    .services-preview {
        flex-direction: column;
    }
}
