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

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Navigation */
.navbar {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: bold; color: white; text-decoration: none; }
.logo i { font-size: 1.8rem; color: #e74c3c; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 1.3rem; font-weight: bold; }
.logo-subtitle { font-size: 0.8rem; opacity: 0.8; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: white; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #3498db; }
.btn-nav { background: #e74c3c; color: white !important; padding: 10px 20px; border-radius: 5px; font-weight: bold; }
.btn-nav:hover { background: #c0392b !important; color: white !important; }

/* Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    margin-bottom: 60px;
}
.hero .container { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-content { flex: 1; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }
.btn-hero {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.btn-hero:hover { background: #c0392b; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.hero-image { flex: 0 0 300px; text-align: center; }
.hero-image i { font-size: 10rem; opacity: 0.8; }

/* Features */
.features { padding: 80px 0; background: white; }
.features h2 { text-align: center; font-size: 2.5rem; color: #2c3e50; margin-bottom: 50px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-card { text-align: center; padding: 30px; background: #f8f9fa; border-radius: 10px; transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-10px); }
.feature-icon { font-size: 3rem; color: #3498db; margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 15px; color: #2c3e50; }

/* Services Preview */
.services-preview { padding: 80px 0; background: #f8f9fa; }
.services-preview h2 { text-align: center; font-size: 2.5rem; color: #2c3e50; margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 40px; }
.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.service-card i { font-size: 3rem; color: #3498db; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; color: #2c3e50; }
.btn-secondary {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.text-center { text-align: center; }

/* CTA */
.cta { padding: 80px 0; background: #2c3e50; color: white; text-align: center; }
.cta h2 { font-size: 2.5rem; margin-bottom: 20px; }
.cta p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* Footer */
footer {
    background: #1a252f;
    color: white;
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section h3 { margin-bottom: 20px; color: #3498db; }
.footer-section p { margin-bottom: 10px; opacity: 0.8; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { opacity: 0.7; margin-bottom: 10px; }

/* Application Page */
.application-page { padding: 60px 0; }
.application-header { text-align: center; margin-bottom: 50px; }
.application-header h1 { color: #2c3e50; margin-bottom: 15px; }
.application-container { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.application-form { background: white; padding: 40px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.form-group { margin-bottom: 25px; }
.form-group label { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: #2c3e50; font-weight: 500; }
.form-group label i { color: #3498db; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}
.btn-submit {
    width: 100%;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-submit:hover { background: #1a252f; }
.application-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: white; padding: 25px; border-radius: 10px; box-shadow: 0 3px 10px rgba(0,0,0,0.1); }
.info-card h3 { color: #2c3e50; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.info-card ul { list-style: none; padding: 0; }
.info-card li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.info-card li i { color: #27ae60; }
.contact-info h3 { color: #2c3e50; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.contact-info p { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.contact-info i { color: #3498db; width: 20px; }
.message { padding: 15px; margin-bottom: 20px; border-radius: 5px; display: none; }
.message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Services Page */
.services-page { padding: 60px 0; }
.services-page h1 { text-align: center; color: #2c3e50; margin-bottom: 15px; }
.page-description { text-align: center; color: #666; margin-bottom: 50px; }
.service-card-full {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.service-card-full:hover { transform: translateY(-3px); }
.service-icon { display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #3498db; }
.service-content h3 { color: #2c3e50; margin-bottom: 10px; }
.service-content ul { list-style: none; padding: 0; }
.service-content li { padding: 5px 0; color: #555; }
.cta-section {
    text-align: center;
    padding: 50px;
    background: #2c3e50;
    color: white;
    border-radius: 15px;
    margin-top: 40px;
}
.cta-section h2 { margin-bottom: 15px; }
.cta-section p { margin-bottom: 25px; opacity: 0.9; }

/* Responsive */
@media (max-width: 768px) {
    .hero .container { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 2rem; }
    .nav-links { display: none; }
    .application-container { grid-template-columns: 1fr; }
    .features-grid, .services-grid { grid-template-columns: 1fr; }
    .service-card-full { grid-template-columns: 1fr; text-align: center; }
    .admin-header { flex-direction: column; text-align: center; }
    .stats { grid-template-columns: 1fr; }
}