/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: transparent; padding: 0 40px; transition: background 0.3s, box-shadow 0.3s; }
.header.scrolled { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.header.scrolled .logo { color: #222; }
.header.scrolled .nav a { color: #444; }
.header.scrolled .nav a:hover, .header.scrolled .nav a.active { color: #c8102e; }
.header.scrolled .nav-toggle span { background: #333; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 75px; max-width: 1400px; margin: 0 auto; }
.logo { font-size: 1.4rem; font-weight: 700; color: #fff; letter-spacing: 1px; transition: color 0.3s; }
.logo span { color: #c8102e; }
.nav { display: flex; gap: 28px; }
.nav a { color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 500; padding: 8px 0; border-bottom: 2px solid transparent; transition: color 0.3s, border-color 0.3s; }
.nav a:hover, .nav a.active { color: #fff; border-color: #c8102e; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 25px; height: 2px; background: #fff; transition: background 0.3s; }

/* Hero */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; background: url('images/hero-bg.png') center/cover no-repeat; color: #fff; text-align: center; margin-top: -75px; padding-top: 75px; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }
.hero h1 { font-size: 3.2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 30px; }
.btn { display: inline-block; padding: 14px 32px; background: #c8102e; color: #fff; font-weight: 600; border-radius: 4px; transition: background 0.3s, transform 0.3s; }
.btn:hover { background: #a00d24; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: #333; }

/* Page Hero (sub pages) */
.page-hero { position: relative; padding: 160px 0 80px; background-size: cover; background-position: center; color: #fff; text-align: center; margin-top: -75px; padding-top: 200px; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.55); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.6rem; margin-bottom: 12px; font-weight: 700; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }

/* Sections */
.section { padding: 80px 0; }
.section-dark { background: #222; color: #fff; }
.section-gray { background: #f8f8f8; }
.section-title { font-size: 2rem; font-weight: 700; margin-bottom: 12px; color: #222; }
.section-subtitle { font-size: 1.05rem; color: #666; margin-bottom: 50px; max-width: 700px; }
.section-dark .section-title { color: #fff; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; padding: 60px 0; }
.stat-item h3 { font-size: 3rem; color: #c8102e; font-weight: 700; }
.stat-item p { font-size: 1rem; margin-top: 8px; color: #666; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.card-img { height: 200px; background: #eee; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.card-img i { font-size: 3rem; color: #c8102e; }
.card-img.has-bg i { display: none; }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 10px; color: #222; }
.card-body p { color: #666; font-size: 0.93rem; margin-bottom: 18px; }
.card-link { color: #c8102e; font-weight: 600; font-size: 0.9rem; }
.card-link:hover { text-decoration: underline; }

/* Two Column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-text h2 { font-size: 1.9rem; margin-bottom: 18px; color: #222; }
.two-col-text p { color: #555; margin-bottom: 14px; }
.section-dark .two-col-text h2 { color: #fff; }
.section-dark .two-col-text p { color: rgba(255,255,255,0.8); }
.two-col-img { height: 380px; background: #eee; border-radius: 8px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; overflow: hidden; }
.two-col-img i { font-size: 4rem; color: #ccc; }
.two-col-img.has-bg i { display: none; }

/* Features List */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 35px; margin-top: 40px; }
.feature-item { padding: 25px 20px 25px 25px; border-left: 3px solid #c8102e; background: #fff; border-radius: 0 6px 6px 0; box-shadow: 0 1px 8px rgba(0,0,0,0.04); }
.feature-item h4 { font-size: 1.05rem; margin-bottom: 8px; color: #222; }
.feature-item p { color: #666; font-size: 0.9rem; }
.section-dark .feature-item { background: #2a2a2a; }
.section-dark .feature-item h4 { color: #fff; }
.section-dark .feature-item p { color: rgba(255,255,255,0.7); }

/* Timeline */
.timeline { position: relative; padding: 20px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: #c8102e; transform: translateX(-50%); }
.timeline-item { display: flex; align-items: center; margin-bottom: 40px; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-content { width: 45%; padding: 25px; background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.timeline-content h4 { color: #c8102e; margin-bottom: 8px; font-size: 1.1rem; }
.timeline-content p { font-size: 0.9rem; color: #666; }

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 20px; color: #222; }
.contact-info p { margin-bottom: 15px; color: #555; }
.contact-info .info-item { display: flex; gap: 15px; margin-bottom: 20px; }
.contact-info .info-item i { color: #c8102e; font-size: 1.2rem; margin-top: 3px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 4px; font-size: 0.95rem; margin-bottom: 15px; font-family: inherit; background: #fff; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: #c8102e; }
.contact-form textarea { height: 150px; resize: vertical; }
.contact-form button { border: none; cursor: pointer; font-size: 1rem; }

/* Video Section */
.video-section { position: relative; padding: 80px 0; background: #111; text-align: center; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 40px; }
.video-card { border-radius: 8px; overflow: hidden; background: #1a1a1a; }
.video-card video { width: 100%; height: 220px; object-fit: cover; background: #000; }
.video-card .video-info { padding: 18px; }
.video-card .video-info h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.video-card .video-info p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* Footer */
.footer { background: #333; 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: 0.95rem; margin-bottom: 18px; color: #c8102e; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col p, .footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.7); display: block; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.83rem; color: rgba(255,255,255,0.5); }

/* Responsive */
@media (max-width: 992px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .video-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 75px; left: 0; width: 100%; background: rgba(0,0,0,0.95); flex-direction: column; padding: 20px 40px; gap: 15px; }
  .nav a { color: #fff; }
  .nav.active { display: flex; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; }
  .timeline-content { width: calc(100% - 50px); margin-left: 50px; }
}
