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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    color: white;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.5px;
}

/* Main Content */
.main-content {
    padding: 60px 0 80px;
    min-height: calc(100vh - 140px);
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 60px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.05),
        0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.hero-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 15px -3px rgba(0, 0, 0, 0.1),
        0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.hero-description {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-description:last-child {
    margin-bottom: 0;
}

.hero-description strong {
    color: #3b82f6;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.contact-card {
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
    border-radius: 20px;
    padding: 40px 45px;
    box-shadow: 
        0 8px 15px -3px rgba(255, 140, 0, 0.2),
        0 20px 25px -5px rgba(255, 140, 0, 0.1);
    color: white;
    text-align: center;
    max-width: 600px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 20px -3px rgba(255, 140, 0, 0.3),
        0 25px 35px -5px rgba(255, 140, 0, 0.2);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-description {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
    line-height: 1.6;
}

.contact-email {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 40px 0;
    margin-top: auto;
}

.footer-content {
    text-align: center;
}

.footer-text {
    font-size: 16px;
    margin-bottom: 8px;
    opacity: 0.9;
    font-weight: 500;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .main-content {
        padding: 40px 0 60px;
    }
    
    .hero-card {
        padding: 40px 30px;
        margin: 0 16px;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .contact-card {
        margin: 0 16px;
        padding: 32px 28px;
        border-radius: 16px;
    }
    
    .contact-icon {
        width: 56px;
        height: 56px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-email {
        font-size: 16px;
        padding: 14px 24px;
        word-break: break-all;
    }
    
    .footer {
        padding: 32px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .contact-email {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.contact-email:focus {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header {
        position: static;
    }
    
    .hero-card,
    .contact-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}