/* 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: #e65100; text-decoration: none; transition: color 0.3s; }
a:hover { color: #ff9800; }
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: #e65100; color: #fff; }
.btn-primary:hover { background: #ff6d00; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(230,81,0,0.3); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: #1a237e; }
.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: #1a237e; }
.logo span { color: #e65100; }
.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: #e65100; transition: width 0.3s; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: #e65100; }
.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, #1a237e 0%, #283593 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.15; }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 650px; padding: 40px; }
.hero-badge { display: inline-block; background: #e65100; color: #fff; padding: 8px 18px; border-radius: 25px; font-size: 13px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.hero h1 { font-size: 52px; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: 19px; margin-bottom: 30px; opacity: 0.9; }
.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: #e65100; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

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

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

/* Programs Grid */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.program-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; }
.program-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.program-card img { width: 100%; height: 220px; object-fit: cover; }
.program-body { padding: 25px; }
.program-body h3 { font-size: 20px; color: #1a237e; margin-bottom: 10px; }
.program-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, #e65100 0%, #ff6d00 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: #1a237e; 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: #ff9800; flex-shrink: 0; }
.lead-form { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.1); }
.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: #e65100; }
.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: #1a237e; 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: #ff9800; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 25px; }
.footer-disclaimer { margin-bottom: 15px; }
.footer-disclaimer p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer-copyright p { font-size: 14px; color: rgba(255,255,255,0.8); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1a237e; color: #fff; padding: 25px; z-index: 9999; display: none; box-shadow: 0 -5px 20px rgba(0,0,0,0.2); }
.cookie-banner.show { display: block; }
.cookie-content h3 { font-size: 18px; margin-bottom: 10px; }
.cookie-content p { font-size: 14px; margin-bottom: 18px; opacity: 0.9; }
.cookie-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-buttons .btn { padding: 10px 22px; font-size: 14px; }

/* Cookie Modal */
.cookie-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: none; align-items: center; justify-content: center; z-index: 10000; }
.cookie-modal.show { display: flex; }
.cookie-modal-content { background: #fff; padding: 35px; border-radius: 12px; max-width: 480px; width: 90%; color: #333; }
.cookie-modal-content h3 { margin-bottom: 15px; font-size: 22px; color: #1a237e; }
.cookie-modal-content p { margin-bottom: 20px; font-size: 15px; color: #666; }
.cookie-option { margin-bottom: 18px; }
.cookie-option label { display: flex; align-items: center; gap: 12px; font-weight: 600; cursor: pointer; }
.cookie-option input { width: 20px; height: 20px; }
.cookie-option p { margin-top: 8px; margin-left: 32px; font-size: 13px; color: #888; }

/* Page Header */
.page-header { background: linear-gradient(135deg, #1a237e 0%, #283593 100%); color: #fff; padding: 130px 0 70px; text-align: center; }
.page-header h1 { font-size: 46px; margin-bottom: 12px; font-weight: 700; }
.page-header p { font-size: 18px; opacity: 0.9; }

/* Content */
.content-section { padding: 70px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 { font-size: 34px; color: #1a237e; margin-bottom: 18px; }
.content-text p { color: #555; margin-bottom: 18px; font-size: 16px; line-height: 1.8; }
.content-text ul { padding-left: 20px; }
.content-text li { margin-bottom: 10px; color: #555; list-style: disc; }
.content-image img { border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.value-card { background: #fff; padding: 30px; border-radius: 12px; text-align: center; box-shadow: 0 3px 15px rgba(0,0,0,0.08); }
.value-card svg { width: 50px; height: 50px; color: #e65100; margin-bottom: 18px; }
.value-card h3 { font-size: 17px; color: #1a237e; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: #666; }

/* Program Details */
.program-detail { padding: 50px 0; }
.program-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.program-detail-grid.reverse { direction: rtl; }
.program-detail-grid.reverse > * { direction: ltr; }
.program-detail-content h2 { font-size: 32px; color: #1a237e; margin-bottom: 15px; }
.program-detail-content h3 { font-size: 18px; color: #1a237e; margin: 22px 0 12px; }
.program-detail-content p { color: #555; margin-bottom: 15px; }
.program-detail-content ul { padding-left: 20px; }
.program-detail-content li { margin-bottom: 8px; color: #555; list-style: disc; }
.program-detail-image img { border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; border-radius: 10px; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.03); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form h2 { font-size: 28px; color: #1a237e; margin-bottom: 15px; }
.contact-form p { color: #666; margin-bottom: 25px; }
.contact-info h2 { font-size: 28px; color: #1a237e; margin-bottom: 20px; }
.contact-item { margin-bottom: 20px; }
.contact-item h4 { font-size: 13px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.contact-item p, .contact-item address { font-size: 16px; color: #333; font-style: normal; }
.map-container { margin-top: 25px; border-radius: 10px; overflow: hidden; }
.map-container iframe { width: 100%; height: 280px; border: none; }

/* Legal */
.legal-content { max-width: 850px; margin: 0 auto; }
.legal-content h2 { font-size: 26px; color: #1a237e; margin: 35px 0 18px; }
.legal-content h3 { font-size: 20px; color: #1a237e; margin: 28px 0 14px; }
.legal-content p { color: #555; margin-bottom: 18px; line-height: 1.8; }
.legal-content ul { padding-left: 25px; margin-bottom: 18px; }
.legal-content li { margin-bottom: 10px; color: #555; list-style: disc; line-height: 1.7; }
.contact-box { background: #f8f9fa; padding: 22px; border-radius: 10px; margin-top: 18px; }

/* Sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sitemap-col h2 { font-size: 22px; color: #1a237e; margin-bottom: 18px; }
.sitemap-links li { margin-bottom: 12px; }
.sitemap-links a { color: #333; font-size: 15px; }
.sitemap-links a:hover { color: #e65100; }

/* Responsive */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 42px; }
  .hero-image { width: 45%; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.15); gap: 0; }
  .nav-menu.active { display: flex; }
  .nav-menu li { padding: 14px 0; border-bottom: 1px solid #eee; }
  .mobile-toggle { display: block; }
  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; padding: 20px; }
  .hero h1 { font-size: 36px; }
  .section { padding: 60px 0; }
  .programs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .lead-wrapper, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .content-grid.reverse, .program-detail-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 36px; }
  .section-title h2 { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero-buttons { flex-direction: column; }
  .btn-lg { padding: 14px 28px; font-size: 16px; }
}
