/* ============================================
   MODERN UI STYLES - COMPREHENSIVE REDESIGN
   Theme Color: #422A14 (Brown)
   ============================================ */

:root {
  --primary-color: #422A14;
  --primary-dark: #2d1c0e;
  --primary-light: #5a3a1f;
  --secondary-color: #fff;
  --accent-color: #8b6f47;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --border-color: rgba(66, 42, 20, 0.1);
  --shadow-sm: 0 2px 8px rgba(66, 42, 20, 0.08);
  --shadow-md: 0 4px 16px rgba(66, 42, 20, 0.12);
  --shadow-lg: 0 8px 32px rgba(66, 42, 20, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   PAGE BANNER - MODERN STYLE (Shared)
   ============================================ */
.page-banner-modern {
    position: relative;
    width: 100%;
    /* height: 400px; */
    overflow: hidden;
}

.pagebanner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(66, 42, 20, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagebanner-content {
    text-align: center;
    z-index: 3;
    padding: 0 20px;
}

.page-heading-modern {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .page-heading-modern {
        font-size: 32px;
    }
}

/* ============================================
   HERO SECTION - MODERN REDESIGN
   ============================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(66, 42, 20, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.hero-text-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.hero-headline {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -1px;
  text-shadow: 3px 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 40px 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

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

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ============================================
   MODERN CONTAINER & SECTION STYLES
   ============================================ */
.container-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header-modern {
  text-align: center;
  margin-bottom: 40px;
}
/* .swiper-wrapper{
  justify-content: center;
} */

.section-title-modern {
  font-size: 35px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.section-title-modern::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  border-radius: 2px;
}

.section-subtitle-modern {
  font-size: 18px;
  color: var(--text-light);
  margin: 20px 0 0 0;
  font-weight: 400;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.stats-chart-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   COLLABORATIONS SECTION
   ============================================ */
.collaborations-section,
.partnerships-section {
  padding: 100px 0;
  padding-top: 0px;
  background: #fff;
}

.collaborations-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.partnerships-section {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.collaboration-holder-modern {
  margin-top: 50px;
}

.collab-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}

.collab-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.collab-logo {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: var(--transition);
}

.collab-card:hover .collab-logo {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ============================================
   GET INVOLVED SECTION
   ============================================ */
.get-involved-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.get-involved-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.get-involved-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.get-involved-content {
  color: #fff;
}

.get-involved-title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 15px 0;
  color: #fff;
  letter-spacing: -1px;
}

.get-involved-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: rgba(255, 255, 255, 0.95);
}

.get-involved-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 16px 35px;
  background: #fff;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.get-involved-link:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.95);
}

.get-involved-link i {
  transition: var(--transition);
}

.get-involved-link:hover i {
  transform: translateX(5px);
}

.get-involved-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-card {
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.modern-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.input-field {
  margin-bottom: 0 !important;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
  width: 100%;
  height: 35px !important;
  padding: 10px 16px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  background: #fff;
  color: var(--text-dark);
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(66, 42, 20, 0.1);
}

.form-textarea {
  height: 100px;
  min-height: 100px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 18px 30px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-submit i {
  transition: var(--transition);
}

.btn-submit:hover i {
  transform: translateX(5px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 48px;
  }
  
  .section-title-modern {
    font-size: 36px;
  }
  
  .get-involved-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 35px 30px;
  }
  
  .get-involved-icon {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
    min-height: 500px;
  }

  .hero-content {
    padding: 0 25px;
  }

  .hero-text-wrapper {
    max-width: 700px;
  }

  .hero-headline {
    font-size: 36px;
    margin-bottom: 18px;
    line-height: 1.15;
  }

  .hero-subheadline {
    font-size: 18px;
    margin-bottom: 35px;
  }

  .hero-cta-group {
    gap: 18px;
  }
  
  .btn-hero {
    padding: 14px 30px;
    font-size: 16px;
  }
  
  .stats-section,
  .collaborations-section,
  .partnerships-section,
  .get-involved-section,
  .contact-section {
    padding: 60px 0;
  }
  
  .section-title-modern {
    font-size: 32px;
  }
  
  .section-subtitle-modern {
    font-size: 14px;
  }
  
  .stats-chart-wrapper {
    padding: 30px 20px;
  }
  
  .get-involved-title {
    font-size: 28px;
  }
  
  .get-involved-text {
    font-size: 18px;
  }
  
  .contact-form-card {
    padding: 35px 25px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    height: 90vh;
    min-height: 550px;
  }

  .hero-headline {
    font-size: 52px;
  }

  .hero-subheadline {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .form-row{
    margin-bottom: 0px;
  }
  .form-input, .form-textarea{
    height: 30px !important;
  }
  .hero-section {
    height: 70vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-headline {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.1;
  }

  .hero-subheadline {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .btn-hero {
    width: 100%;
    justify-content: center;
  }
  
  .section-title-modern {
    font-size: 24px;
  }

  .get-involved-card {
    padding: 30px 20px;
  }

  .get-involved-title {
    font-size: 26px;
  }
}

