/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: #222; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: #2563eb; text-decoration: none; transition: color 0.3s; }
a:hover { color: #1d4ed8; }
ul { list-style: none; }

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

/* Buttons */
.btn { display: inline-block; padding: 14px 28px; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s; border: none; text-align: center; }
.btn-primary { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(37,99,235,0.4); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: #1d4ed8; }
.btn-lg { padding: 16px 36px; font-size: 18px; }
.btn-block { width: 100%; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 1000; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 22px; font-weight: 700; color: #1d4ed8; }
.logo span { color: #0ea5e9; }
.nav-menu { display: flex; gap: 36px; }
.nav-menu a { color: #333; font-weight: 500; font-size: 15px; position: relative; padding: 5px 0; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #2563eb; transition: width 0.3s; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: #2563eb; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-toggle span { display: block; width: 24px; height: 3px; background: #333; margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #0ea5e9 100%); padding-top: 80px; overflow: hidden; }
.hero-image { position: absolute; top: 0; right: 0; width: 55%; height: 100%; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 650px; padding: 40px; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.2); color: #fff; padding: 8px 18px; border-radius: 25px; font-size: 13px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; border: 1px solid rgba(255,255,255,0.3); }
.hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; line-height: 1.15; }
.hero p { font-size: 18px; margin-bottom: 30px; opacity: 0.95; }
.hero-features { display: flex; gap: 20px; margin-bottom: 35px; flex-wrap: wrap; }
.hero-feature { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.hero-feature svg { width: 20px; height: 20px; color: #0ea5e9; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Sections */
.section { padding: 90px 0; }
.section-dark { background: #f8fafc; }
.section-bg { background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%); color: #fff; }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 40px; font-weight: 700; color: #1e3a5f; margin-bottom: 15px; }
.section-title p { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto; }
.section-dark .section-title h2 { color: #1e3a5f; }
.section-bg .section-title h2 { color: #fff; }
.section-bg .section-title p { color: rgba(255,255,255,0.85); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-body { padding: 25px; }
.service-body h3 { font-size: 20px; color: #1e3a5f; margin-bottom: 10px; }
.service-body p { color: #666; font-size: 15px; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card { text-align: center; padding: 35px 25px; background: #fff; border-radius: 12px; box-shadow: 0 3px 15px rgba(0,0,0,0.08); }
.feature-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.feature-icon svg { width: 35px; height: 35px; color: #fff; }
.feature-card h3 { font-size: 18px; color: #1e3a5f; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: #666; }

/* CTA Section */
.cta-section { padding: 80px 0; text-align: center; }
.cta-content h2 { font-size: 38px; margin-bottom: 15px; }
.cta-content p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; }

/* Lead Form */
.lead-section { padding: 90px 0; }
.lead-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.lead-info h2 { font-size: 34px; color: #fff; margin-bottom: 15px; }
.lead-info p { color: rgba(255,255,255,0.9); margin-bottom: 30px; font-size: 17px; }
.lead-contact { background: rgba(255,255,255,0.12); padding: 25px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.2); }
.lead-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 15px; color: #fff; }
.lead-contact-item svg { width: 22px; height: 22px; color: #0ea5e9; flex-shrink: 0; }
.lead-contact-item a { color: #fff; }
.lead-contact-item a:hover { color: #0ea5e9; }
.lead-form { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.15); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 16px; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #2563eb; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-check { display: flex; gap: 12px; align-items: flex-start; }
.form-check input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.form-check label { font-size: 14px; color: #666; line-height: 1.5; }

/* Footer */
.footer { background: #1e3a5f; color: #fff; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 18px; margin-bottom: 20px; color: #fff; }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 10px; line-height: 1.7; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.8); font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: #0ea5e9; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 25px; }
.footer-disclaimer { margin-bottom: 15px; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer-copyright { font-size: 14px; color: rgba(255,255,255,0.8); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1e3a5f; color: #fff; padding: 25px 20px; z-index: 9999; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); display: none; }
.cookie-banner.active { display: block; }
.cookie-content { max-width: 1200px; margin: 0 auto; }
.cookie-content h3 { font-size: 18px; margin-bottom: 10px; }
.cookie-content p { font-size: 14px; margin-bottom: 15px; opacity: 0.9; }
.cookie-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal.active { display: flex; }
.cookie-modal-content { background: #fff; padding: 35px; border-radius: 12px; max-width: 500px; width: 100%; color: #333; }
.cookie-modal-content h3 { font-size: 22px; margin-bottom: 15px; color: #1e3a5f; }
.cookie-modal-content p { font-size: 14px; margin-bottom: 20px; color: #666; }
.cookie-option { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.cookie-option label { font-weight: 600; color: #333; }
.cookie-option p { font-size: 13px; color: #888; margin-top: 5px; margin-bottom: 0; }

/* About Page */
.about-hero { padding: 140px 0 80px; background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%); color: #fff; }
.about-hero h1 { font-size: 44px; margin-bottom: 15px; }
.about-hero p { font-size: 18px; opacity: 0.9; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 32px; color: #1e3a5f; margin-bottom: 20px; }
.about-text p { color: #666; margin-bottom: 15px; font-size: 16px; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.value-card { text-align: center; padding: 30px; background: #fff; border-radius: 12px; box-shadow: 0 3px 15px rgba(0,0,0,0.08); }
.value-card svg { width: 50px; height: 50px; color: #2563eb; margin-bottom: 15px; }
.value-card h3 { font-size: 18px; color: #1e3a5f; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: #666; }

/* Contact Page */
.contact-section { padding: 140px 0 90px; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-info h2 { font-size: 32px; color: #1e3a5f; margin-bottom: 20px; }
.contact-info p { color: #666; margin-bottom: 30px; }
.contact-details { margin-bottom: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.contact-item svg { width: 24px; height: 24px; color: #2563eb; flex-shrink: 0; margin-top: 3px; }
.contact-item h4 { font-size: 16px; color: #1e3a5f; margin-bottom: 5px; }
.contact-item p, .contact-item a { font-size: 15px; color: #666; }
.contact-item a:hover { color: #2563eb; }
.business-hours { background: #f8fafc; padding: 25px; border-radius: 10px; }
.business-hours h4 { font-size: 18px; color: #1e3a5f; margin-bottom: 15px; }
.hours-list { font-size: 15px; }
.hours-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #e0e0e0; color: #666; }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child { font-weight: 600; color: #333; }
.contact-form { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.1); }
.map-container { margin-top: 60px; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.1); }
.map-container iframe { width: 100%; height: 400px; border: none; }

/* Services Page */
.services-hero { padding: 140px 0 80px; background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%); color: #fff; }
.services-hero h1 { font-size: 44px; margin-bottom: 15px; }
.services-hero p { font-size: 18px; opacity: 0.9; }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 60px 0; border-bottom: 1px solid #eee; }
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail img { border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.1); }
.service-detail h3 { font-size: 28px; color: #1e3a5f; margin-bottom: 15px; }
.service-detail p { color: #666; margin-bottom: 15px; font-size: 16px; }
.service-detail ul { margin-top: 20px; }
.service-detail ul li { position: relative; padding-left: 25px; margin-bottom: 10px; color: #666; }
.service-detail ul li::before { content: '✓'; position: absolute; left: 0; color: #2563eb; font-weight: bold; }

/* Legal Pages */
.legal-page { padding: 140px 0 90px; }
.legal-content { max-width: 900px; margin: 0 auto; }
.legal-content h1 { font-size: 36px; color: #1e3a5f; margin-bottom: 30px; }
.legal-content h2 { font-size: 24px; color: #1e3a5f; margin: 30px 0 15px; }
.legal-content p { color: #666; margin-bottom: 15px; line-height: 1.8; }
.legal-content ul { margin-bottom: 20px; padding-left: 20px; }
.legal-content ul li { color: #666; margin-bottom: 10px; position: relative; padding-left: 20px; }
.legal-content ul li::before { content: '•'; position: absolute; left: 0; color: #2563eb; }

/* Sitemap */
.sitemap-page { padding: 140px 0 90px; }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sitemap-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 3px 15px rgba(0,0,0,0.08); }
.sitemap-card h3 { font-size: 20px; color: #1e3a5f; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #2563eb; }
.sitemap-card ul li { margin-bottom: 10px; }
.sitemap-card ul li a { color: #666; transition: color 0.3s; }
.sitemap-card ul li a:hover { color: #2563eb; }

/* Accessibility */
.skip-link { position: absolute; top: -100px; left: 0; background: #2563eb; color: #fff; padding: 10px 20px; z-index: 9999; transition: top 0.3s; }
.skip-link:focus { top: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .programs-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
    .nav-menu.active { display: flex; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 36px; }
    .hero-image { width: 100%; opacity: 0.1; }
    .hero-content { max-width: 100%; }
    .lead-wrapper, .contact-wrapper, .about-content { grid-template-columns: 1fr; }
    .programs-grid, .services-grid, .features-grid, .values-grid { grid-template-columns: 1fr; }
    .footer-grid, .sitemap-grid { grid-template-columns: 1fr; }
    .section-title h2 { font-size: 32px; }
    .form-row { grid-template-columns: 1fr; }
}
