@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue: #4A5D7A;
  --blue-light: #6B7FA0;
  --charcoal: #3A3A3A;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-light: #1A1A1A;
  --gray: #888888;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Sora', sans-serif; color: #E0E0E0; line-height: 1.6; background: var(--black); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Navigation */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(10,10,10,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(74,93,122,0.2); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 12px 24px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { height: 60px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: #E0E0E0; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue-light); }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--blue); color: white; font-weight: 600; border-radius: 6px; transition: all 0.3s; border: none; cursor: pointer; font-size: 14px; }
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border: 2px solid var(--blue); color: var(--blue-light); font-weight: 600; border-radius: 6px; transition: all 0.3s; }
.btn-secondary:hover { background: var(--blue); color: white; }

/* Hero */
.hero { height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: #0A0A0A; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.hero-content { position: relative; z-index: 10; padding: 140px 24px 80px; max-width: 700px; margin-left: 5%; }
.hero h1 { font-size: clamp(42px, 7vw, 80px); font-weight: 800; line-height: 1; margin-bottom: 24px; color: #ffffff; }
.hero h1 span { color: #6B7FA0; }
.hero p { font-size: 18px; color: #AAAAAA; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta { margin-top: 24px; font-family: 'Courier New', monospace; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: #6B7FA0; }

/* Sections */
.section { padding: 100px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-family: 'Courier New', monospace; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 16px; display: block; }
.section h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; margin-bottom: 48px; color: var(--white); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 24px; }
.service-card { background: var(--dark-light); border-radius: 12px; overflow: hidden; border: 1px solid rgba(74,93,122,0.15); transition: all 0.3s; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(74,93,122,0.4); box-shadow: 0 8px 32px rgba(74,93,122,0.15); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 28px; }
.service-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.service-card-body p { color: #999; font-size: 15px; }

/* Why Choose */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.why-card { background: var(--dark); border: 1px solid rgba(74,93,122,0.15); border-radius: 12px; padding: 32px; text-align: center; transition: all 0.3s; }
.why-card:hover { border-color: rgba(74,93,122,0.4); background: var(--dark-light); }
.why-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(74,93,122,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.why-icon svg { width: 28px; height: 28px; color: var(--blue-light); }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.why-card p { color: #888; font-size: 14px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; transition: all 0.3s; }
.gallery img:hover { transform: scale(1.03); }

/* Resources Folder */
.folder-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 24px; }
.folder-card { background: var(--dark); border: 1px solid rgba(74,93,122,0.15); border-radius: 12px; overflow: hidden; }
.folder-header { padding: 24px; border-bottom: 1px solid rgba(74,93,122,0.1); background: linear-gradient(to right, rgba(74,93,122,0.08), transparent); }
.folder-title { display: flex; align-items: center; gap: 12px; }
.icon-box { width: 44px; height: 44px; border-radius: 10px; background: rgba(74,93,122,0.15); display: flex; align-items: center; justify-content: center; }
.icon-box svg { width: 22px; height: 22px; color: var(--blue-light); }
.folder-title h3 { font-size: 17px; font-weight: 700; color: var(--white); }
.folder-count { font-size: 13px; color: var(--gray); }
.folder-desc { font-size: 14px; color: #888; margin-top: 8px; }
.folder-items { list-style: none; }
.folder-items li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.folder-items li:last-child { border-bottom: none; }
.folder-items a { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; transition: all 0.2s; color: #CCC; }
.folder-items a:hover { background: rgba(74,93,122,0.08); color: var(--blue-light); }
.folder-items .item-name { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 14px; }

/* Bulletin */
.bulletin { padding: 120px 24px 60px; }
.badge { display: inline-block; padding: 4px 12px; background: rgba(74,93,122,0.15); border: 1px solid rgba(74,93,122,0.3); border-radius: 4px; font-family: 'Courier New', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 16px; }
.bulletin h1 { font-size: clamp(30px, 4vw, 52px); font-weight: 700; margin-bottom: 24px; line-height: 1.1; color: var(--white); }
.bulletin-intro { background: var(--dark-light); border: 1px solid rgba(74,93,122,0.15); border-radius: 12px; padding: 28px; margin-bottom: 40px; font-size: 17px; line-height: 1.7; color: #CCC; }
.bulletin h2 { font-size: 20px; font-weight: 700; margin: 40px 0 20px; display: flex; align-items: center; gap: 12px; color: var(--white); }
.number-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: white; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.bulletin p { margin-bottom: 16px; color: #AAA; line-height: 1.7; }
.info-box { background: var(--dark); border: 1px solid rgba(74,93,122,0.15); border-radius: 10px; padding: 18px; margin: 14px 0; }
.info-box-label { font-family: 'Courier New', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 8px; display: block; }
.warning-box { background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.25); border-radius: 12px; padding: 22px; margin: 24px 0; }
.warning-box h3 { color: #EF4444; margin-bottom: 12px; font-size: 17px; }
.warning-box p { color: #CCC; margin-bottom: 6px; }
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; background: linear-gradient(to bottom right, rgba(74,93,122,0.08), rgba(26,26,26,0.5)); border-radius: 12px; padding: 22px; border: 1px solid rgba(74,93,122,0.12); margin: 24px 0; }
.fact-item { display: flex; gap: 10px; align-items: flex-start; }
.fact-item svg { width: 18px; height: 18px; color: var(--blue-light); flex-shrink: 0; margin-top: 3px; }
.fact-item strong { display: block; color: var(--white); font-size: 14px; }
.fact-item span { font-size: 13px; color: #999; }
.schedule-item { background: var(--dark); border: 1px solid rgba(74,93,122,0.12); border-radius: 10px; padding: 14px 20px; margin-bottom: 10px; }
.schedule-item strong { color: var(--blue-light); font-size: 15px; display: block; margin-bottom: 4px; }
.schedule-item p { margin: 0; font-size: 14px; color: #AAA; }
.cta-box { background: linear-gradient(to bottom right, rgba(74,93,122,0.1), rgba(26,26,26,0.5)); border-radius: 12px; padding: 32px; border: 1px solid rgba(74,93,122,0.15); margin: 40px 0; text-align: center; }
.cta-box h3 { color: var(--blue-light); font-size: 20px; margin-bottom: 12px; }
.cta-box p { color: #AAA; margin-bottom: 20px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 700; margin-bottom: 20px; color: var(--white); }
.contact-info h2 span { color: var(--blue-light); }
.contact-meta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-meta a, .contact-meta div { display: flex; align-items: center; gap: 10px; color: #AAA; font-size: 15px; }
.contact-meta svg { width: 18px; height: 18px; color: var(--blue-light); }
form { background: var(--dark-light); border: 1px solid rgba(74,93,122,0.15); border-radius: 12px; padding: 32px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: #CCC; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; background: var(--dark); border: 1px solid rgba(74,93,122,0.2); border-radius: 8px; color: #E0E0E0; font-family: inherit; font-size: 15px; transition: all 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(74,93,122,0.15); }
.form-group textarea { resize: none; height: 120px; }
form .btn-primary { width: 100%; justify-content: center; font-size: 16px; padding: 14px; }

/* Footer */
footer { padding: 40px 24px; background: var(--dark); border-top: 1px solid rgba(74,93,122,0.1); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: #888; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-light); }

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-content { margin-left: 24px; max-width: none; }
  .hero-buttons { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .folder-grid { grid-template-columns: 1fr; }
}
