/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #A2CD32;
    --secondary-color: #191919;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.3);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.3);
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow: hidden;
}

.coming-soon-container {
    height: 100vh;
    max-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(162, 205, 50, 0.4) 0%, rgba(25, 25, 25) 100%);
    z-index: 1;
}

/* Header Styles */
.header {
    position: relative;
    z-index: 10;
    padding: clamp(0.75rem, 2vh, 1.5rem) 2rem clamp(0.5rem, 1vh, 1rem);
    text-align: center;
    flex-shrink: 0;
}

.logo-container {
    display: inline-block;
    max-width: clamp(200px, 30vw, 400px);
    width: 100%;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    overflow: hidden;
    min-height: 0;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-height: 100%;
}

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

.main-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.2;
}

.subheading {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
    line-height: 1.3;
}

.description {
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
    line-height: 1.4;
}

/* Features Grid - Unique Design */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.75rem, 2vw, 1.5rem);
    margin: 1rem auto 0;
    max-width: 1000px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.8s both;
    padding: 0 0.5rem;
}

.feature-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: clamp(1rem, 2.5vw, 1.75rem);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(162, 205, 50, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #8fb82a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(162, 205, 50, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.feature-card:hover h3 {
    color: var(--secondary-color);
}

.feature-card:hover p {
    color: var(--text-light);
}

.feature-icon-wrapper {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #8fb82a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    box-shadow: 0 4px 15px rgba(162, 205, 50, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(162, 205, 50, 0.5);
    background: linear-gradient(135deg, #8fb82a 0%, var(--primary-color) 100%);
}

.feature-icon {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-card h3 {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.feature-card p {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    padding: clamp(0.5rem, 1.5vh, 1rem) 2rem;
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
}

.footer p {
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.footer-link a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link a:hover {
    color: #8fb82a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coming-soon-container {
        background-attachment: scroll;
    }
    
    .main-content {
        padding: 0.5rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.75rem, 2vw, 1.25rem);
        max-width: 600px;
    }
    
    .content-wrapper {
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .coming-soon-container {
        height: 100vh;
        max-height: 100vh;
        background-attachment: scroll;
    }
    
    .header {
        padding: clamp(0.5rem, 1.5vh, 1rem) 1rem clamp(0.4rem, 1vh, 0.75rem);
    }

    .logo-container {
        max-width: clamp(180px, 75vw, 350px);
    }
    
    .main-content {
        padding: 0.5rem 1rem;
    }
    
    .content-wrapper {
        padding: 0.25rem 0;
    }

    .description {
        margin-bottom: 0.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.5rem, 1.5vw, 0.75rem);
        margin-top: 0.5rem;
        max-width: 100%;
        padding: 0 0.25rem;
    }
    
    .feature-card {
        padding: clamp(0.875rem, 2vw, 1.25rem);
    }
    
    .footer {
        padding: clamp(0.5rem, 1.5vh, 0.75rem) 1rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        height: 100vh;
        max-height: 100vh;
    }
    
    .header {
        padding: clamp(0.4rem, 1.5vh, 0.75rem) 0.5rem clamp(0.3rem, 1vh, 0.5rem);
    }
    
    .logo-container {
        max-width: clamp(150px, 80vw, 300px);
    }
    
    .main-content {
        padding: 0.25rem 0.5rem;
    }
    
    .content-wrapper {
        padding: 0.125rem 0;
    }
    
    .description {
        margin-bottom: 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(0.4rem, 1.5vw, 0.6rem);
        margin-top: 0.25rem;
        padding: 0 0.125rem;
    }
    
    .feature-card {
        padding: clamp(0.75rem, 2vw, 1rem);
    }
    
    .footer {
        padding: clamp(0.4rem, 1.5vh, 0.6rem) 0.5rem;
    }
}

@media (max-width: 360px) {
    .logo-container {
        max-width: clamp(130px, 95vw, 250px);
    }
    
    .features-grid {
        gap: 0.4rem;
    }
    
    .feature-card {
        padding: 0.75rem 0.5rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

