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

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
    color: #333;
}

/* Container */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
    animation: fadeIn 0.8s ease-in-out;
}

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

/* Logo */
.logo-container {
    margin-bottom: 40px;
    animation: slideDown 0.6s ease-out;
}

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

.logo {
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Heading */
.heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    animation: slideUp 0.6s ease-out 0.2s both;
}

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

/* Loader Animation */
.loader {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    animation: slideUp 0.6s ease-out 0.4s both;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D9D9 0%, #0099FF 100%);
    animation: bounce 1.4s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Subheading */
.subheading {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin: 30px 0;
    line-height: 1.6;
    animation: slideUp 0.6s ease-out 0.6s both;
}

/* Contact Information */
.contact-info {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    animation: slideUp 0.6s ease-out 0.8s both;
}

.info-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.email-link:hover {
    color: #000000;
    background-color: rgba(0, 217, 217, 0.1);
    transform: translateY(-2px);
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00D9D9 0%, #0099FF 100%);
    transition: width 0.3s ease;
}

.email-link:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    animation: slideUp 0.6s ease-out 1s both;
}

.footer p {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .heading {
        font-size: 2.5rem;
    }

    .subheading {
        font-size: 1rem;
    }

    .logo {
        max-width: 240px;
    }

    .container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 2rem;
    }

    .subheading {
        font-size: 0.95rem;
    }

    .logo {
        max-width: 200px;
    }

    .email-link {
        font-size: 1rem;
    }

    .loader {
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }

    .loader {
        display: none;
    }
}
