/* Container for consistent horizontal padding */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contact Header Section */
.contact-header-section {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: #FFFDD0; /* light cream text */
  text-align: center;
  padding: 60px 20px 40px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.contact-header-section .section-title {
  font-family: 'Crimson Text', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #FFFDD0;
  margin-bottom: 0.2em;
}

.contact-header-section .english-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #FFD700; /* golden yellow accent */
  margin-left: 8px;
  user-select: none;
}

.contact-header-section .section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: #FFFDD0CC; /* transparent cream */
  max-width: 700px;
  margin: 0 auto 1.5em;
}

.contact-header-section .om-symbol {
  font-size: 5rem;
  font-weight: 900;
  color: #FFD700;
  user-select: none;
  animation: pulse-om 3s infinite ease-in-out;
  margin-top: 20px;
}

/* Simple pulse animation for ॐ */
@keyframes pulse-om {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.75;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-header-section .section-title {
    font-size: 2rem;
  }
  .contact-header-section .english-title {
    font-size: 1.2rem;
  }
  .contact-header-section .om-symbol {
    font-size: 3.5rem;
  }
}
.contact-info-section {
  background-color: #FAF7F0; /* Light cream background */
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 3px 12px rgba(141, 84, 35, 0.15);
  font-family: 'Poppins', sans-serif;
  color: #3E2723; /* Dark Brown */
}

.contact-info-section .section-subheading {
  font-family: 'Crimson Text', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #8B0000; /* Deep Maroon */
  text-align: center;
  position: relative;
}

/* Optional: Lotus motif under heading */
.contact-info-section .section-subheading::after {
  content: "\f0e6"; /* FontAwesome spa icon as lotus */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FF8C42; /* Saffron/Orange */
  display: block;
  font-size: 2rem;
  margin: 10px auto 0;
  width: 40px;
  text-align: center;
  user-select: none;
}

.contact-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  background: #FFFDD0; /* Cream */
  padding: 30px 25px;
  border-radius: 10px;
  flex: 1 1 220px;
  max-width: 250px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
}

.contact-icon {
  font-size: 2.8rem;
  color: #FF6B35; /* Primary saffron */
  margin-bottom: 12px;
}

.contact-card h4 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #A0522D; /* Secondary deep red/brown */
}

.contact-card p {
  font-weight: 400;
  font-size: 1rem;
  color: #5D4037;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }
  .contact-card {
    max-width: 100%;
  }
}

/* Contact Form Section */
.contact-form-section {
  background-color: #FAF7F0; /* Light cream background */
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #3E2723; /* Dark brown text */
}

.contact-form-section .section-subheading {
  font-size: 2rem;
  color: #FF6B35; /* Saffron primary */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-form-section form {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFDD0; /* Cream background for form */
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(255, 107, 53, 0.2); /* soft saffron shadow */
  border: 2px solid #FF8C42; /* Secondary saffron border */
}

.contact-form-section .form-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.contact-form-section label {
  font-weight: 500;
  margin-bottom: 8px;
  color: #8B0000; /* Deep red label */
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.contact-form-section input[type="text"],
.contact-form-section input[type="email"],
.contact-form-section input[type="tel"],
.contact-form-section textarea {
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #A0522D; /* Maroon border */
  border-radius: 8px;
  background-color: #FFFDD0;
  color: #3E2723;
  transition: border-color 0.3s ease;
  font-family: inherit;
  resize: vertical;
}

.contact-form-section input[type="text"]:focus,
.contact-form-section input[type="email"]:focus,
.contact-form-section input[type="tel"]:focus,
.contact-form-section textarea:focus {
  outline: none;
  border-color: #FF6B35; /* Saffron focus */
  box-shadow: 0 0 8px #FF6B35aa;
}

.contact-form-section .error-message {
  color: #8B0000; /* Deep red error */
  font-size: 0.9rem;
  margin-top: 6px;
  min-height: 18px;
}

.contact-form-section .btn-submit {
  background: linear-gradient(45deg, #FF6B35, #FF8C42);
  color: #FFFDD0; /* Light cream text */
  border: none;
  padding: 14px 30px;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.4s ease;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.5);
}

.contact-form-section .btn-submit:hover,
.contact-form-section .btn-submit:focus {
  background: linear-gradient(45deg, #FF8C42, #FF6B35);
  box-shadow: 0 6px 14px rgba(255, 140, 66, 0.8);
  outline: none;
}

/* Responsive tweaks */
@media (max-width: 650px) {
  .contact-form-section form {
    padding: 25px 20px;
  }
}


/* Optional lotus motif */
.contact-form-section .section-subheading::after {
  content: "\f0e6"; /* spa icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFFDD0;
  display: block;
  font-size: 2rem;
  margin: 10px auto 0;
  width: 40px;
  text-align: center;
  user-select: none;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #FFFDD0;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  resize: vertical;
  background: #FFFDD0;
  color: #3E2723;
  transition: box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 8px 2px #FFD700;
}

.error-message {
  font-size: 0.9rem;
  color: #FFCC00;
  margin-top: 4px;
  min-height: 18px;
  font-style: italic;
}

.btn-submit {
  background-color: #FFD700; /* golden yellow */
  color: #8B0000; /* deep red */
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.btn-submit:hover,
.btn-submit:focus {
  background-color: #FFA500; /* slightly darker golden */
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  form {
    width: 100%;
  }
}


/* Location & Map Section */
.location-map-section {
  background-color: #FAF7F0; /* Light cream background */
  padding: 60px 20px;
  color: #3E2723; /* Dark Brown text */
  font-family: 'Poppins', sans-serif;
}

.location-map-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.location-map-section .section-subheading {
  font-size: 2rem;
  font-weight: 600;
  color: #FF6B35; /* Saffron/Orange primary */
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Crimson Text', serif;
  letter-spacing: 1.2px;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.address-details {
  flex: 1 1 320px;
  max-width: 400px;
  background: #FFFDD0; /* Cream/off-white */
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15); /* subtle saffron shadow */
  border: 2px solid #FFA500; /* Golden yellow border */
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5D4037; /* Slightly lighter dark brown */
  font-family: 'Poppins', sans-serif;
}

.address-details h4 {
  color: #8B0000; /* Deep red/maroon */
  margin-bottom: 15px;
  font-family: 'Crimson Text', serif;
  font-weight: 700;
  font-size: 1.6rem;
}

.address-details p {
  margin-bottom: 10px;
}

.map-container {
  flex: 2 1 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.25);
  border: 2px solid #FF8C42; /* lighter saffron border */
  transition: box-shadow 0.3s ease;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
}

.map-container:hover {
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.45);
}

/* Responsive */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
    gap: 30px;
  }

  .address-details,
  .map-container {
    max-width: 100%;
  }
}
/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #FF6B35, #FF8C42); /* saffron gradient */
  padding: 60px 20px;
  text-align: center;
  color: #FFFDD0; /* cream text */
  font-family: 'Poppins', sans-serif;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 900px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  transition: transform 0.3s ease;
}

.cta-section:hover {
  transform: scale(1.02);
}

.cta-heading {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: 'Crimson Text', serif;
  margin-bottom: 15px;
  letter-spacing: 1.1px;
  text-shadow: 0 2px 6px rgba(139, 0, 0, 0.7); /* deep maroon shadow */
}

.cta-subtext {
  font-size: 1.2rem;
  margin-bottom: 35px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  user-select: none;
}

/* Volunteer button: deep red background */
.btn-volunteer {
  background-color: #8B0000; /* deep maroon */
  color: #FFD700; /* golden yellow text */
  border: 2px solid #FFD700;
}

.btn-volunteer:hover,
.btn-volunteer:focus {
  background-color: #A0522D; /* lighter maroon */
  color: #FFFDD0; /* cream */
  border-color: #FFFDD0;
  outline: none;
  box-shadow: 0 0 10px #FFD700;
}

/* Donate button: golden yellow background */
.btn-donate {
  background-color: #FFD700; /* golden yellow */
  color: #8B0000; /* deep maroon text */
  border: 2px solid #8B0000;
}

.btn-donate:hover,
.btn-donate:focus {
  background-color: #FFA500; /* orange */
  color: #FFFDD0; /* cream */
  border-color: #FFFDD0;
  outline: none;
  box-shadow: 0 0 10px #8B0000;
}

/* Responsive */
@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    padding: 16px 0;
  }
}
/* Add these to your existing .btn styles and hover/focus */

.btn {
  /* existing styles... */
  transition: 
    background-color 0.3s ease, 
    color 0.3s ease, 
    box-shadow 0.4s ease, 
    transform 0.3s ease;
  will-change: transform, box-shadow;
}

.btn:hover,
.btn:focus {
  transform: scale(1.05);
  box-shadow: 0 0 12px 4px rgba(255, 215, 0, 0.6); /* golden glow */
  outline: none;
}

/* Pulse glow animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 8px 2px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 16px 6px rgba(255, 215, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 8px 2px rgba(255, 215, 0, 0.4);
  }
}

/* Add pulse glow to buttons on hover/focus */
.btn-volunteer:hover,
.btn-volunteer:focus {
  animation: pulse-glow 1.5s infinite;
  box-shadow: 0 0 14px 5px #FFD700;
}

.btn-donate:hover,
.btn-donate:focus {
  animation: pulse-glow 1.5s infinite;
  box-shadow: 0 0 14px 5px #FFA500;
}
