:root {
  --primary: #c20f18;
  --primary-hover: #a10b12;
  --dark: #121212;
  --dark-gray: #1a1a1a;
  --light: #f5f5f5;
  --white: #ffffff;
  --text: #333333;
  --text-light: #777777;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --border-radius-lg: 16px;
  --border-radius-md: 8px;
  --border-radius-sm: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400; /* Bebas is generally 400 */
  line-height: 1.1;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-small {
  padding: 12px 24px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(194, 15, 24, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark);
}

.w-100 {
  width: 100%;
}

/* --- HEADER --- */
.header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 15px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--dark);
  display: block;
}

.nav ul {
  display: flex;
  gap: 25px;
}

.nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--primary);
}

/* --- HERO --- */
.hero {
  position: relative;
  background-image: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.6)), url('img/hero.png');
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  color: var(--white);
  text-align: center;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #eeeeee;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* --- COMMON SECTIONS --- */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark);
}

.section-title.left {
  text-align: left;
}

.bg-light {
  background-color: var(--white);
}

.bg-red {
  background-color: var(--primary);
}

.text-white {
  color: var(--white);
}

.text-white .section-title {
  color: var(--white);
}

/* --- FEATURES --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #fce8e9;
  color: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- ABOUT --- */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: 0 10px 20px rgba(194, 15, 24, 0.3);
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  display: block;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 700;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
}

.stat-item h4 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--dark);
}

/* --- STEPS --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  text-align: center;
}

.step-num {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(194, 15, 24, 0.2);
}

.step-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- SCHEDULE --- */
.schedule-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background-color: var(--light);
  border-radius: var(--border-radius-md);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

.schedule-item:hover {
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-left-color: var(--primary);
}

.schedule-info h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.schedule-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.schedule-time {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark);
}

.location-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  height: 100%;
}

.location-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.location-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.loc-address {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 25px;
}

.loc-address i {
  color: var(--primary);
}

.location-card img {
  border-radius: var(--border-radius-md);
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* --- TEAM --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-member {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  padding-bottom: 30px;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-member img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-member h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.team-member p {
  color: var(--text-light);
  padding: 0 20px;
  font-size: 0.95rem;
}

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-grid img {
  border-radius: var(--border-radius-md);
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- SUCCESS --- */
.success-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.success-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.success-stats {
  display: flex;
  gap: 40px;
}

.suc-stat h3 {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 5px;
}

.suc-stat p {
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.8;
}

.success-quote {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 50px 40px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
}

.success-quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 30px;
  position: relative;
}

.success-quote blockquote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: var(--font-heading);
  font-size: 8rem;
  opacity: 0.2;
  line-height: 1;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quote-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details strong {
  display: block;
  font-size: 1.1rem;
}

.author-details span {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* --- NEWS --- */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.news-header .section-title {
  margin-bottom: 0;
}

.news-header .btn {
  color: var(--dark);
  border-color: #ddd;
}

.news-header .btn:hover {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-body {
  padding: 30px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.news-body h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.news-body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- FAQ --- */
.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  overflow: hidden;
}

.faq-item summary {
  padding: 25px 30px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item[open] summary {
  color: var(--primary);
}

.faq-answer {
  padding: 0 30px 30px;
  color: var(--text-light);
  line-height: 1.8;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding-top: 100px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-info h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.footer-info p {
  color: #aaaaaa;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.c-text span {
  display: block;
  font-size: 0.85rem;
  color: #aaaaaa;
}

.c-text strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-form {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
}

.footer-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  gap: 20px;
}

.footer-form input,
.footer-form text-area,
.footer-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  background-color: #f9f9f9;
}

.footer-form input:focus,
.footer-form textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(194, 15, 24, 0.1);
}

.footer-form textarea {
  resize: vertical;
}

.footer-bottom {
  padding: 60px 0;
}

.fb-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.fb-logo strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
}

.fb-logo p {
  color: #aaaaaa;
  margin-bottom: 25px;
  max-width: 300px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary);
}

.fb-links h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.fb-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fb-links a {
  color: #aaaaaa;
  font-size: 0.95rem;
}

.fb-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.copyright {
  background-color: #121212;
  padding: 25px 0;
  text-align: center;
  color: #777777;
  font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about-container, .success-container, .footer-container {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-container {
    grid-template-columns: 1fr;
  }

  .team-grid, .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .nav {
    display: none;
  }

  .features-grid, .team-grid, .news-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .schedule-time {
    margin-top: 5px;
  }

  .input-group {
    flex-direction: column;
  }

  .fb-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .fb-logo p, .social-icons {
    margin: 0 auto 25px;
    justify-content: center;
  }
}
