/* Rural Social Aid Roadshow - Main Stylesheet */

:root {
  /* Color Palette */
  --primary-1: #8cc63f; /* Fresh green - symbolizes growth and aid */
  --primary-2: #f7941d; /* Warm orange - welcoming and accessible */
  --primary-3: #6a4c93; /* Purple - represents dignity and respect */
  --primary-4: #c02942; /* Red - signifies urgency and importance */
  --primary-5: #33658a; /* Blue - trustworthiness and stability */
  
  /* Light & Dark Variations */
  --primary-1-light: #a4d65a;
  --primary-1-dark: #6b9830;
  --primary-2-light: #faa94b;
  --primary-2-dark: #db7d10;
  --primary-3-light: #8366ab;
  --primary-3-dark: #523a70;
  --primary-4-light: #d44d63;
  --primary-4-dark: #9a2035;
  --primary-5-light: #4580ae;
  --primary-5-dark: #274e6a;
  
  /* Neutrals */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #495057;
  --black: #212529;
  
  /* Typography */
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--body-font);
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--primary-3);
}

.nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-1);
}

/* Hero Section */
.hero-section {
  padding-top: 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-3-light) 0%, var(--primary-3) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle-1 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-desc-1 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.about-title, .about-subtitle {
  color: var(--primary-3);
}

.about-desc {
  margin-bottom: 3rem;
}

.about-feature-card {
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.services-title, .services-subtitle {
  color: var(--primary-2);
}

.services-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services-card:hover {
  transform: translateY(-10px);
}

.services-card-highlight {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-1);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 10px;
}

.services-price {
  display: inline-block;
  background-color: var(--primary-1-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: var(--primary-1-dark);
  font-weight: 700;
  margin-top: 1rem;
}

.services-features-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.services-features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--medium-gray);
}

.services-features-list li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.features-title, .features-subtitle {
  color: var(--primary-4);
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-4);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.priceplan-title, .priceplan-subtitle {
  color: var(--primary-5);
}

.price-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-header {
  padding: 2rem;
  background-color: var(--primary-5-light);
  color: var(--white);
}

.price-body {
  padding: 2rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-5);
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.team-title, .team-subtitle {
  color: var(--primary-1);
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.team-img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  color: var(--white);
}

.team-name {
  margin-bottom: 0.5rem;
}

.team-role {
  opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.reviews-title, .reviews-subtitle {
  color: var(--primary-2);
}

.review-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-height: 280px;
}

.review-text {
  position: relative;
  padding-left: 2rem;
  font-style: italic;
  color: var(--dark-gray);
}

.review-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--primary-2-light);
  font-family: serif;
  opacity: 0.3;
}

.review-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.review-author-name {
  font-weight: 700;
  margin-bottom: 0;
}

/* Core Info Section */
.coreinfo-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.coreinfo-title, .coreinfo-subtitle {
  color: var(--primary-4);
}

.coreinfo-item {
  padding: 2rem;
  background-color: var(--light-gray);
  border-radius: 10px;
  transition: transform 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-4);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--primary-3-light);
  position: relative;
}

.contact-title, .contact-subtitle {
  color: var(--white);
}

.contact-desc {
  color: var(--white);
  opacity: 0.9;
}

.contact-form {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-submit {
  background-color: var(--primary-1);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-1-dark);
}

/* Blog Section */
.blog-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.blog-title, .blog-subtitle {
  color: var(--primary-3);
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: var(--primary-3);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.faq-title, .faq-subtitle {
  color: var(--primary-1);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--white);
  font-weight: 600;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1-light);
  color: var(--primary-1-dark);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--white);
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-3-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-logo {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.footer-heading {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--primary-1);
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#site-copyright {
  color: rgba(255, 255, 255, 0.7);
} 