/* Index page specific styles (header/nav styles moved to common.css) */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  justify-items: center;
  color: #fff;
  text-align: left;
  background-image: linear-gradient(180deg, rgba(2, 22, 52, 0.45), rgba(2, 22, 52, 0.55)), url("../img/image.webp");
  background-size: cover;
  background-position: top center;
  padding-top: 80px;
  padding-bottom: 4rem;
}

.hero-content {
  width: 100%;
  max-width: 1100px;
  padding: 6rem 1rem 3rem;
  display: grid;
  gap: 1rem;
}

.hero-kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .3px;
  background: rgba(245, 196, 0, .18);
  color: #fff;
  border: 1px solid rgba(245, 196, 0, .5);
  padding: .35rem .6rem;
  border-radius: 999px;
  width: fit-content;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: 0;
  line-height: 1.15;
}

.hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 60ch;
  margin: .25rem 0 0;
  color: #f0f6ff;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #1a202c;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: .25rem;
  color: #fff;
  opacity: .9;
  font-size: .9rem;
}

.mouse {
  width: 22px;
  height: 34px;
  border: 2px solid #fff;
  border-radius: 12px;
  position: relative;
}

.mouse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 2px;
  height: 6px;
  border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
  animation: wheel 1.8s ease-in-out infinite;
}

@keyframes wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0)
  }

  30% {
    opacity: 1
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 10px)
  }
}

section {
  padding: 3rem 0;
  scroll-margin-top: 80px;
}

@media (min-width: 900px) {
  section {
    padding: 4rem 0;
    scroll-margin-top: 80px;
  }
}

.section-header {
  margin-bottom: 1.25rem;
}

.section-header h2 {
  margin: 0 0 .25rem 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.lead {
  color: #374151;
  max-width: 65ch;
}

/* Legacy reveal for other elements */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* Suggestions/Grievances Section */
.suggestions {
  background: #fff;
  padding: 3rem 0 4rem 0;
}

.suggestions-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

/* Form Container */
.suggestions-form-container {
  background: #f8fafc;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
}

.suggestions-form {
  display: grid;
  gap: 1.5rem;
}

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

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

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18, 97, 160, 0.1);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.form-group select {
  cursor: pointer;
}

/* Checkbox Groups */
.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #374151;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 3px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label:hover .checkmark {
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
  content: '✓';
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Info Section */
.suggestions-info {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(18, 97, 160, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}

.info-card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

.info-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Contact Alternatives */
.contact-alternatives {
  background: linear-gradient(135deg, #f8fafc 0%, #eef4f9 100%);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
}

.contact-alternatives h3 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

.contact-methods {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.contact-method:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(18, 97, 160, 0.2);
}

/* Desktop Layout */
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .suggestions-content {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }

  .suggestions-form-container {
    padding: 3rem;
  }

  .form-actions {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .suggestions {
    padding: 5rem 0;
  }

  .suggestions-content {
    gap: 5rem;
  }

  .form-group label {
    font-size: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}

/* Error States - Only show after user interaction */
.form-group input:invalid:not(:placeholder-shown):not(:focus),
.form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #dc2626;
}

.form-group input:invalid:not(:placeholder-shown):focus,
.form-group textarea:invalid:not(:placeholder-shown):focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Select elements - only show invalid state when touched/blurred */
.form-group select.touched:invalid {
  border-color: #dc2626;
}

.form-group select.touched:invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Success States */
.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: #059669;
}

/* Loading State for Submit Button */
.btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Enhanced Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc2626;
  background-color: #fef2f2;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Fixed Social Media Icons */
.fixed-social-icons {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 90;
  padding: 1.5rem 1rem;
  border-radius: 0;
  /* background: rgba(255, 255, 255, 0.95); */
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
  /* backdrop-filter: blur(20px); */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(18, 97, 160, 0.2);
  border: none;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(18, 97, 160, 0.3);
}

/* Individual social icon hover colors */
.social-icon:nth-child(1):hover {
  background: #000000;
  /* X black */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-icon:nth-child(2):hover {
  background: #e4405f;
  /* Instagram gradient pink */
  box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.social-icon:nth-child(3):hover {
  background: #4267b2;
  /* Facebook blue */
  box-shadow: 0 6px 20px rgba(66, 103, 178, 0.4);
}

.social-icon:nth-child(4):hover {
  background: #0077b5;
  /* LinkedIn blue */
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

/* Responsive behavior */
@media (max-width: 768px) {
  .fixed-social-icons {
    left: 10px;
    gap: 0.75rem;
    padding: 1rem 0.75rem;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .fixed-social-icons {
    display: none;
    /* Hide on very small screens to avoid overlap */
  }
}

/* News Section */
.news-section {
  background: #fff;
  padding: 4rem 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.news-item {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 0;
  background: #f8fafc;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  align-items: center;
  overflow: hidden;
}

.news-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
}

.news-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.news-meta time {
  font-weight: 500;
}

.news-category {
  background: var(--primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  font-family: "Merriweather", serif;
}

.news-description {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 1rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.news-link:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.news-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  padding: 2rem;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
  transform: scale(1.05);
}

.news-actions {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive Design for News Section */
@media (max-width: 768px) {
  .news-section {
    padding: 3rem 0;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .news-content {
    padding: 1.5rem;
  }

  .news-image {
    order: -1;
    aspect-ratio: 16/9;
    padding: 1.5rem 1.5rem 0 1.5rem;
  }

  .news-title {
    font-size: 1.25rem;
  }

  .news-description {
    font-size: 0.95rem;
  }

  .news-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .news-section {
    padding: 2rem 0;
  }

  .news-item {
    gap: 0;
  }

  .news-content {
    padding: 1rem;
  }

  .news-image {
    padding: 1rem 1rem 0 1rem;
  }

  .news-title {
    font-size: 1.125rem;
  }

  .news-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Volunteer Section */
.volunteer-section {
  background: #fff;
  color: var(--fg);
  padding: 5rem 0;
}

.volunteer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.volunteer-header {
  text-align: left;
  max-width: none;
  margin: 0;
}

.volunteer-header .volunteer-form-container {
  margin-top: 2rem;
}

.volunteer-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  font-family: "Merriweather", serif;
  font-weight: 700;
}

.volunteer-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin: 0.5rem 0 1rem 0;
  color: var(--primary);
  font-weight: 600;
}

.volunteer-header .lead {
  color: #374151;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 1rem 0 0 0;
}

.volunteer-form-container {
  background: #f8fafc;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

/* Volunteer Form Styling - Uses existing form classes */
.volunteer-section .meeting-form {
  display: grid;
  gap: 1.5rem;
}

.volunteer-section .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.volunteer-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.volunteer-section .form-group.full-width {
  grid-column: 1 / -1;
}

.volunteer-section label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.volunteer-section input,
.volunteer-section select,
.volunteer-section textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  color: #111827;
  font-family: inherit;
}

.volunteer-section input:focus,
.volunteer-section select:focus,
.volunteer-section textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.volunteer-section textarea {
  resize: vertical;
  min-height: 120px;
}

.volunteer-section select {
  cursor: pointer;
}

.volunteer-section .form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: end;
}

.volunteer-section .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: inherit;
}

.volunteer-section .btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.volunteer-section .btn-primary:hover {
  background: #0f4c75;
  border-color: #0f4c75;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(18, 97, 160, 0.3);
}

.volunteer-section .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.volunteer-section .btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}

.volunteer-section .btn-ghost:hover {
  background: var(--muted);
  border-color: var(--primary);
}

.volunteer-info {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 3rem;
  height: 100%;
}

.volunteer-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 3/2;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-card:hover .image-overlay {
  transform: translateY(0);
}

.image-overlay h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.image-overlay p {
  margin: 0;
  font-size: 0.9rem;
  color: #e5e7eb;
  line-height: 1.4;
}

.volunteer-cta {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.volunteer-cta h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

.volunteer-cta p {
  margin: 0 0 1.5rem 0;
  color: #374151;
  line-height: 1.6;
}

.volunteer-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item {
  display: inline-block;
  background: #f0f9ff;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #e0f2fe;
}

/* Form Validation States */
.volunteer-section input.error,
.volunteer-section select.error,
.volunteer-section textarea.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.volunteer-section input.error:focus,
.volunteer-section select.error:focus,
.volunteer-section textarea.error:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

/* Success/Error Messages */
.success-message,
.error-message {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.success-message {
  background: #f0fdf4;
  border: 1px solid #22c55e;
  color: #15803d;
}

.error-message {
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #dc2626;
}

.success-content,
.error-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.success-content h3,
.error-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.success-content p,
.error-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Message fade-out animation */
.success-message,
.error-message {
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

/* Responsive Design */
@media (max-width: 768px) {
  .volunteer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .volunteer-header {
    text-align: center;
  }

  .volunteer-section label {
    text-align: left;
  }

  .volunteer-section .form-actions {
    justify-content: center;
  }
}

/* Loading Animation */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .volunteer-section {
    padding: 3rem 0;
  }

  .volunteer-form-container {
    padding: 2rem;
  }

  .volunteer-section .form-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-images {
    gap: 1rem;
  }

  .image-card {
    aspect-ratio: 5/3;
  }

  .image-overlay {
    padding: 1.5rem 1rem 1rem;
  }

  .volunteer-cta {
    padding: 1.5rem;
  }

  .volunteer-highlights {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .volunteer-form-container {
    padding: 1.5rem;
  }

  .volunteer-section input,
  .volunteer-section select,
  .volunteer-section textarea {
    padding: 0.875rem 1rem;
  }

  .volunteer-section .btn {
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .volunteer-section .form-actions {
    justify-content: center;
    gap: 0.75rem;
  }

  .volunteer-images {
    gap: 1rem;
  }

  .image-overlay h4 {
    font-size: 1rem;
  }

  .image-overlay p {
    font-size: 0.85rem;
  }

  .volunteer-cta {
    padding: 1rem;
  }

  .volunteer-cta h3 {
    font-size: 1.25rem;
  }

  .volunteer-highlights {
    flex-direction: column;
    gap: 0.5rem;
  }

  .volunteer-info {
    padding-top: 0rem;
  }
}

/* Social Media Section */
.social-media-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eef4f9 100%);
  padding: 4rem 0;
}

.social-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.social-box {
  flex: 1 1 320px;
  max-width: 350px;
  aspect-ratio: 1 / 1.1;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.social-box:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.social-box iframe,
.social-box blockquote {
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.instagram-media {
  border-radius: 8px !important;
}

/* Responsive Design for Social Media Section */
@media (max-width: 1024px) {
  .social-box {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .social-media-section {
    padding: 3rem 0;
  }

  .social-row {
    gap: 1.5rem;
  }

  .social-box {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 480px) {
  .social-media-section {
    padding: 2rem 0;
  }

  .social-row {
    gap: 1rem;
  }
}