@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&family=Tiro+Devanagari+Hindi&display=swap");

:root {
  --saffron: #ff6b00;
  --saffron-light: #ff8c3a;
  --saffron-dark: #cc4e00;
  --saffron-deep: #8b2e00;
  --gold: #ffb800;
  --gold-light: #ffd966;
  --white: #ffffff;
  --cream: #fff8f0;
  --cream-dark: #fff0dc;
  --text: #1a1a1a;
  --text-light: #555;
  --border: #e8d5b0;
  --shadow: 0 4px 20px rgba(139, 46, 0, 0.12);
}

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

body {
  font-family: "Noto Sans Devanagari", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    135deg,
    var(--saffron-deep) 0%,
    var(--saffron-dark) 60%,
    var(--saffron) 100%
  );
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex: 1;
  min-width: 200px;
}

.navbar-logo {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  -o-object-position: center;
     object-position: center;
}

.navbar-title {
  display: flex;
  flex-direction: column;
}

.navbar-org {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

.navbar-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.lang-switcher {
  display: flex;
  gap: 0.25rem;
}

.lang-btn {
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  border-radius: 4px;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Noto Sans Devanagari", sans-serif;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--saffron-deep);
  border-color: var(--gold);
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  width: 100%;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: var(--saffron-deep);
  color: var(--gold);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* MAIN */

.main-content {
  min-height: calc(100vh - 200px);
}

.page {
  min-height: 100vh;
}

/* HERO SECTIONS */

.hero {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 46, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(255, 107, 0, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.5));
  -o-object-position: center;
     object-position: center;
}

.hero-title {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline2 {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.hero-found {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--saffron-deep) 0%,
    var(--saffron-dark) 60%,
    var(--saffron) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
}

/* SECTION BADGE */

.section-badge {
  display: inline-block;
  background: var(--saffron);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
}

/* SECTION CONTAINER */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--saffron-dark);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--saffron);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-alt {
  background: var(--cream-dark);
}

/* BUTTONS */

.btn-primary {
  display: inline-block;
  background: var(--saffron);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Noto Sans Devanagari", sans-serif;
}

.btn-primary:hover {
  background: #e55a00;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: var(--saffron-dark);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Noto Sans Devanagari", sans-serif;
}

.btn-secondary:hover {
  background: var(--saffron-deep);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.2s;
}

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

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* HOME PAGE */

.theme-banner {
  position: relative;
  overflow: hidden;
  max-height: 400px;
}

.theme-banner-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.theme-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(139, 46, 0, 0.75),
    transparent,
    rgba(255, 107, 0, 0.5)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-banner-text {
  text-align: center;
  color: white;
}

.theme-banner-text h2 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.theme-banner-text p {
  font-size: 1rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.stats-section {
  background: var(--saffron-dark);
  padding: 2.5rem 1.5rem;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  color: white;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-card p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.about-slogans {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slogan-tag {
  background: var(--saffron-dark);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.about-img-wrap {
  text-align: center;
}

.about-img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.highlights-section {
  background: var(--cream-dark);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.highlight-card:hover {
  transform: translateY(-4px);
}

.highlight-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.highlight-card h3 {
  font-weight: 700;
  color: var(--saffron-dark);
  margin-bottom: 0.5rem;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-inner h2 {
  font-size: 2rem;
  color: white;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cta-inner .btn-primary {
  background: var(--saffron-deep);
}

.cta-inner .btn-primary:hover {
  background: #6b1e00;
}

/* ORG PAGE */

.org-hero {
  background: linear-gradient(
    135deg,
    var(--saffron-deep) 0%,
    var(--saffron-dark) 50%,
    var(--saffron) 100%
  );
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.org-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--saffron);
}

.org-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.org-role {
  font-weight: 700;
  color: var(--saffron-dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.org-names {
  color: var(--saffron);
  font-weight: 600;
  font-size: 0.9rem;
}

.members-section {
  background: var(--cream-dark);
}

.members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.member-chip {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  color: var(--saffron-dark);
  font-weight: 500;
}

.org-img-wrap {
  text-align: center;
}

.org-full-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}

/* IDEALS PAGE */

.ideals-hero {
  background: linear-gradient(
    135deg,
    var(--saffron-deep) 0%,
    var(--saffron) 100%
  );
}

.ideals-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .ideals-layout {
    grid-template-columns: 1fr;
  }
}

.ideals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.ideal-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--saffron);
  transition: transform 0.2s;
}

.ideal-card:hover {
  transform: translateY(-3px);
}

.ideal-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.ideal-card h3 {
  font-weight: 700;
  color: var(--saffron-dark);
  margin-bottom: 0.2rem;
}

.ideal-sub {
  color: var(--saffron);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

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

.ideals-img-wrap {
  text-align: center;
  position: sticky;
  top: 80px;
}

.ideals-img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.ideals-img-caption {
  margin-top: 0.75rem;
}

.ideals-img-caption p {
  color: var(--saffron-dark);
  font-weight: 700;
}

.ideals-quote {
  color: var(--saffron);
  font-style: italic;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.theme-section {
  max-height: 350px;
  overflow: hidden;
}

.theme-wide-img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

/* HISTORY PAGE */

.history-hero {
  background: linear-gradient(135deg, #2d1b00 0%, var(--saffron) 100%);
}

.history-intro {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--saffron);
}

.timeline {
  position: relative;
  padding: 1rem 0;
}

.timeline::before {
  content: "";
  display: none;
}

@media (max-width: 600px) {
  .timeline::before {
    left: 20px;
  }
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.timeline-item.right {
  flex-direction: row-reverse;
}

@media (max-width: 600px) {
  .timeline-item,
  .timeline-item.right {
    flex-direction: column;
    padding-left: 3rem;
  }
}

.timeline-year {
  background: var(--saffron);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  min-width: 70px;
  text-align: center;
  height: -moz-fit-content;
  height: fit-content;
}

.timeline-content {
  background: white;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  flex: 1;
  max-width: 45%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

@media (max-width: 600px) {
  .timeline-content {
    max-width: 100%;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.value-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 2px solid var(--border);
  font-size: 2rem;
}

.value-card p {
  font-weight: 700;
  color: var(--saffron-dark);
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* MISSION PAGE */

.mission-hero {
  background: linear-gradient(
    135deg,
    var(--saffron-deep) 0%,
    var(--saffron) 100%
  );
}

.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .mission-layout {
    grid-template-columns: 1fr;
  }
}

.mission-box,
.vision-box {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.mission-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--saffron-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--saffron);
}

.mission-list {
  list-style: none;
}

.mission-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.mission-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.vision-quote blockquote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--saffron);
  font-style: italic;
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--saffron);
  margin-bottom: 1.5rem;
}

.vision-points p {
  padding: 0.5rem 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

/* SWARAJYA PAGE */

.swarajya-hero {
  background: linear-gradient(
    135deg,
    #1a0a00 0%,
    var(--saffron) 60%,
    var(--gold) 100%
  );
}

.swarajya-quote-wrap {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.swarajya-big-quote {
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--saffron-deep);
  font-weight: 700;
  font-style: italic;
  background: var(--cream-dark);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--gold);
  display: inline-block;
  max-width: 800px;
}

.quote-author {
  color: var(--saffron);
  font-weight: 600;
  margin-top: 0.75rem;
  font-size: 1rem;
}

.swarajya-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .swarajya-layout {
    grid-template-columns: 1fr;
  }
}

.swarajya-img-wrap {
  text-align: center;
}

.swarajya-img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.swarajya-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.swarajya-section:last-child {
  border-bottom: none;
}

.swarajya-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}

.swarajya-section p {
  color: var(--text-light);
  line-height: 1.8;
}

.swarajya-banner-text {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1rem;
  background: var(--saffron-dark);
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* ACTIVITIES PAGE */

.activities-hero {
  background: linear-gradient(
    135deg,
    var(--saffron-deep) 0%,
    var(--saffron-dark) 50%,
    var(--saffron) 100%
  );
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.activity-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--saffron);
  text-align: center;
  transition: transform 0.2s;
}

.activity-card:hover {
  transform: translateY(-3px);
}

.activity-card-religious {
  border-top-color: var(--gold);
}

.activity-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.activity-card h3 {
  font-weight: 700;
  color: var(--saffron-dark);
  margin-bottom: 0.5rem;
}

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

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.event-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.event-item h3 {
  font-weight: 700;
  color: var(--saffron-dark);
  margin-bottom: 0.25rem;
}

.event-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* MEMBERSHIP PAGE */

.membership-hero {
  background: linear-gradient(
    135deg,
    var(--saffron-deep) 0%,
    var(--saffron) 60%,
    var(--gold) 100%
  );
}

.membership-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .membership-layout {
    grid-template-columns: 1fr;
  }
}

.membership-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--saffron-dark);
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.benefit-item span {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-item strong {
  color: var(--saffron-dark);
  display: block;
  margin-bottom: 0.2rem;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.membership-form-wrap {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.membership-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--saffron-dark);
  margin-bottom: 1.5rem;
}

/* CONTACT PAGE */

.contact-hero {
  background: linear-gradient(
    135deg,
    var(--saffron-deep) 0%,
    var(--saffron-dark) 60%,
    var(--saffron) 100%
  );
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--saffron-dark);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item span {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item strong {
  color: var(--saffron-dark);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-form-wrap {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--saffron-dark);
  margin-bottom: 1.5rem;
}

/* FORMS */

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: "Noto Sans Devanagari", sans-serif;
  background: var(--cream);
  transition: border-color 0.2s;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  background: white;
}

.btn-submit {
  background: var(--saffron);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Noto Sans Devanagari", sans-serif;
  margin-top: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
  background: #e55a00;
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.success-msg {
  text-align: center;
  padding: 2.5rem;
  background: #e8f5e9;
  border-radius: 12px;
  border: 2px solid #4caf50;
}

.success-msg span {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.75rem;
}

.success-msg h3 {
  color: #2e7d32;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.success-msg p {
  color: #388e3c;
}

.error-msg {
  color: #c62828;
  background: #ffebee;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* ADMIN PAGE */

.admin-hero {
  background: linear-gradient(135deg, #4a1500 0%, var(--saffron-dark) 100%);
}

.admin-loading {
  padding: 4rem;
  text-align: center;
  font-size: 1.2rem;
}

.admin-login-msg {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 500px;
  margin: 0 auto;
}

.admin-login-msg span {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.admin-login-msg h2 {
  color: var(--saffron-dark);
  margin-bottom: 0.5rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.admin-stat-card {
  background: var(--saffron-dark);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.admin-stat-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
}

.admin-stat-card p {
  opacity: 0.9;
  margin-top: 0.25rem;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.admin-table th {
  background: var(--saffron-dark);
  color: white;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: var(--cream);
}

.empty-row {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
}

.msg-cell {
  max-width: 300px;
  white-space: pre-wrap;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-samanya {
  background: #fff3e0;
  color: #cc4e00;
}

.badge-sakriya {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-karyakarta {
  background: #fce4ec;
  color: #8b2e00;
}

/* FOOTER */

.footer {
  background: var(--saffron-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.5rem 1rem;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 0.75rem;
  -o-object-position: center;
     object-position: center;
}

.footer-orgname {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer-sub {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-col h4 {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-col p {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  opacity: 0.8;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ORG JOIN BANNER */

.org-join-banner {
  background: linear-gradient(
    135deg,
    var(--saffron-deep) 0%,
    var(--saffron-dark) 50%,
    var(--saffron) 100%
  );
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.org-join-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.org-join-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.org-join-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.org-join-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.5rem;
}

.org-join-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
  font-style: italic;
}

.org-join-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.org-join-slogans {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.org-join-slogans .slogan-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

/* IMPROVED MEMBER CHIPS */

.member-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  font-size: 0.85rem;
  color: var(--saffron-dark);
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(139, 46, 0, 0.06);
  transition: all 0.2s;
}

.member-chip:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 107, 0, 0.12);
}

.member-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--saffron);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* INTRO SECTION */

.intro-section {
  background: var(--white);
  padding: 4rem 1.5rem;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .intro-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .intro-image-wrapper {
    text-align: center !important;
  }
  .intro-quote-box {
    text-align: left;
  }
  .intro-btns {
    justify-content: center;
  }
}

.intro-badge {
  display: inline-block;
  background: #FFF0E6;
  color: #FF6B00;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #1c1c28;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.intro-quote-box {
  border-left: 4px solid #FF6B00;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.intro-quote {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b1c60;
  margin-bottom: 0.5rem;
}

.intro-subtitle {
  font-size: 0.95rem;
  color: #7a7a8a;
  font-weight: 500;
}

.intro-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-intro-primary {
  display: inline-flex;
  align-items: center;
  background: #FF6B00;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-intro-primary:hover {
  background: #cc4e00;
}

.btn-intro-outline {
  display: inline-block;
  background: transparent;
  color: #0b1c60;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: 1px solid #0b1c60;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-intro-outline:hover {
  background: rgba(11, 28, 96, 0.05);
}

.intro-image-wrapper {
  text-align: right;
}

.intro-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
}
