/* RESET & BASE ---------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f7fafc;
  color: #1a202c;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

/* HEADER & NAV ---------------------------------- */
.header {
  background: linear-gradient(90deg, #df7a33, #ea580c);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.logo {
    display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1rem;
}

.logo-subtitle {
  font-size: 0.8rem;
  opacity: 0.9;
}

.nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.nav-links a.active {
  border-color: #ffffff;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  font-size: 1.2rem;
  color: #ffffff;
}

/* HERO ---------------------------------- */
.hero {
  padding: 3.5rem 0 3.8rem;
}

.hero-asm {
  background: radial-gradient(circle at top left, #fed7aa, #f97316);
  color: #1a202c;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 35rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.hero-tags span {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}

.hero-highlight {
  display: flex;
  justify-content: flex-end;
}

/* Hero photo + card */
.hero-photo-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 340px;
}

.hero-photo {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  max-height: 200px;
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  max-width: 330px;
}

.stat-card h3 {
  margin-bottom: 0.6rem;
}

.stat-card p {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.stat-card ul {
  list-style: disc;
  margin-left: 1.1rem;
  font-size: 0.88rem;
}

/* BUTTONS ---------------------------------- */
.btn {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.primary-btn {
  background-color: #1d4ed8;
  color: #ffffff;
}

.primary-btn:hover {
  opacity: 0.9;
}

.secondary-btn {
  background-color: transparent;
  border: 1px solid #1d4ed8;
  color: #1d4ed8;
}

.secondary-btn:hover {
  background-color: rgba(37, 99, 235, 0.05);
}

/* SECTIONS ---------------------------------- */
.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: #fef3c7;
}

.section-title {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: #4a5568;
}

/* PAGE HEADER ---------------------------------- */
.page-header {
  padding: 2.6rem 0 1.4rem;
  background-color: #fffbeb;
  border-bottom: 1px solid #e2e8f0;
}

.page-header h1 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.page-header p {
  max-width: 40rem;
}

/* GRIDS & CARDS ---------------------------------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background-color: #ffffff;
  border-radius: 0.9rem;
  padding: 1.4rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.92rem;
  color: #4a5568;
}

/* ABOUT GRID ---------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* CONTACT ---------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form-wrapper {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.contact-form h2 {
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.55rem;
  border: 1px solid #cbd5e0;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.full-width {
  width: 100%;
}

.form-message {
  font-size: 0.85rem;
  margin-top: 0.6rem;
}

/* LISTS ---------------------------------- */
.list-check,
.list-dot {
  list-style: none;
  margin-top: 0.7rem;
}

.list-check li::before,
.list-dot li::before {
  content: "•";
  margin-right: 0.4rem;
  color: #f97316;
}

.list-check li,
.list-dot li {
  margin-bottom: 0.4rem;
}

/* NEWS ---------------------------------- */
.news-list {
  display: grid;
  gap: 1.4rem;
}

.news-card {
  background-color: #ffffff;
  border-radius: 0.9rem;
  padding: 1.4rem;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

.news-card h2 {
  margin-bottom: 0.4rem;
}

.news-meta {
  font-size: 0.8rem;
  color: #718096;
  margin-bottom: 0.6rem;
}

/* News thumbnails */
.news-thumb {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 0.7rem;
}

/* CTA ---------------------------------- */
.cta-section {
  background: linear-gradient(90deg, #1d4ed8, #0f766e);
  color: #ffffff;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-box p {
  max-width: 32rem;
}

/* FOOTER ---------------------------------- */
.footer {
  background-color: #111827;
  color: #e5e7eb;
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.footer h3,
.footer h4 {
  margin-bottom: 0.6rem;
}

.footer a {
  color: #e5e7eb;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.footer a:hover {
  text-decoration-color: #e5e7eb;
}

.footer-bottom {
  border-top: 1px solid #374151;
  text-align: center;
  padding: 0.8rem 0 1rem;
  font-size: 0.85rem;
}

/* BACK TO TOP ---------------------------------- */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: none;
  background-color: #1d4ed8;
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.45);
  z-index: 900;
}

/* SUCCESS / ERROR MESSAGES --------------------- */
.form-message.success {
  color: #15803d;
}

.form-message.error {
  color: #b91c1c;
}

/* RESPONSIVE ---------------------------------- */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlight {
    justify-content: flex-start;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: 110%;
    right: 0;
    background: linear-gradient(90deg, #f97316, #ea580c);
    flex-direction: column;
    width: 210px;
    padding: 0.4rem 0;
    display: none;
  }

  .nav-links li {
    padding: 0.4rem 0.9rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  /* TEAM ---------------------------------- */
.team-card {
  text-align: center;
}

.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.7rem;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: 0.9rem;
  color: #4a5568;
}

.news-link {
  color: inherit;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}

.news-readmore {
  margin-top: 0.7rem;
  font-size: 0.85rem;
}

}
