/* CSS Custom Properties for Easy Color Customization */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --background-color: #0f172a;
    --surface-color: #1e293b;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--background-color) 0%, #1e293b 50%, var(--background-color) 100%);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Background Elements */
.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.bg-element-1 {
    top: 5rem;
    left: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(59, 130, 246, 0.1);
}

.bg-element-2 {
    bottom: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(147, 51, 234, 0.1);
    animation-delay: 1s;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

/* Header Styles */
.header {
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out;
}

.logo {
    width: 600px;
    height: 300px;
    margin: 0 auto 1.5rem;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.company-name {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.tagline {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Countdown Styles */
.countdown-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.countdown-header i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 32rem;
    margin: 0 auto;
}

.time-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.time-card:hover {
    background: rgba(30, 41, 59, 0.7);
    transform: translateY(-2px);
}

.time-value {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.time-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: capitalize;
}

/* Contact Styles */
.contact-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.contact-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.contact-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    background: rgba(30, 41, 59, 0.5);
    transform: translateY(-2px);
}

.contact-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.contact-card:nth-child(1) i { color: var(--primary-color); }
.contact-card:nth-child(2) i { color: #10b981; }
.contact-card:nth-child(3) i { color: #ef4444; }
.contact-card:nth-child(4) i { color: #8b5cf6; }

.contact-card:hover i {
    transform: scale(1.1);
}

.contact-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    word-break: break-all;
}

/* CTA Styles */
.cta-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.4);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

.cta-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
}

.footer p {
    color: rgba(148, 163, 184, 0.7);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bg-element-1,
    .bg-element-2 {
        width: 12rem;
        height: 12rem;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .time-card {
        padding: 0.75rem 0.5rem;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .time-label {
        font-size: 0.75rem;
    }
}
