:root {
  --bg: #282828;
  --panel: #1f1f1f;
  --text: #f5f5f5;
  --muted: #bdbdbd;
  --accent: #ff3b30;
  --accent-soft: #ff8a80;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(135deg, var(--bg), #1b1b1b);
  color: var(--text);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  position: relative;
}


.panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(25, 25, 25, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.MainLogo {
  display: block;
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.SubLogo {
  display: block;
  width: 210px;
  height: auto;
  flex-shrink: 0;
}

.nav-actions {
  display: flex;
  gap: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-btn {
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid transparent;
  min-width: 90px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-btn:hover::before,
.nav-btn:focus::before,
.nav-btn.active::before {
  transform: scaleX(1);
}

.nav-btn:hover,
.nav-btn:focus,
.nav-btn.active {
  color: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.2);
}

.hero {
  min-height: 10vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 130px 6vw 4rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../Imgs/Back1.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.eyebrow {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hero h1,
.section-header h2,
.support-card h2,
.hero-card h3,
.card h2 {
  color: #ffffff !important;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.45);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero h1 {
  animation: textGlow 2.2s ease-in-out infinite alternate;
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}


.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #e0332a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 59, 48, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.8rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  border-radius: 10px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight-card strong {
  color: var(--text);
}

.highlight-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-card h3 {
  color: var(--text);
  margin-top: 0;
  margin-bottom: 1rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.section {
  padding: 4rem 6vw;
}

.section-divider {
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.6), transparent);
  margin: 1.5rem 6vw 0;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h2,
.support-card h2 {
  color: var(--text);
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.highlight-card:hover,
.hero-card:hover,
.support-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 48, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card h3 {
  color: var(--text);
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.card p,
.support-card p {
  color: var(--muted);
  line-height: 1.7;
}

.support-card {
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 59, 48, 0.25);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
}

.map-section {
  text-align: center;
}

.map-container {
  width: 100%;
  max-width: 100%;
  margin-top: 2rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  display: block;
  width: 100% !important;
  height: 450px !important;
}

.contact-info-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 5rem 6vw;
}

.contact-info-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 59, 48, 0.15);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 59, 48, 0.15);
  border-color: rgba(255, 59, 48, 0.3);
}

.info-card h4 {
  color: #1f1f1f;
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.info-card p {
  color: #555555;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.info-card a:hover {
  color: #e0332a;
  text-decoration: underline;
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  to {
    text-shadow: 0 0 12px rgba(255, 59, 48, 0.25);
  }
}

.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible,
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

footer {
  padding: 0.4vw 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  color: #555555;
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact-info-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .panel {
    padding: 12px 16px;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-actions {
    position: static;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 140px 16px 3rem;
  }

  .section {
    padding: 3rem 16px;
  }

  .contact-info-section {
    padding: 3rem 16px;
  }

  .contact-info-container {
    grid-template-columns: 1fr;
  }
}