
/***************************************************** LANGUAGE TOGGLE STYLES *************************************************/

.language-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-left: auto;
}

.language-btn {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 5px 15px;
    font-size: 14px;
    font-family: 'poppins', sans-serif;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.language-btn.active {
    background-color: white;
    color: black;
}

.flag-icon {
    width: 20px;
    height: 15px;
}

/* Update contacttop to accommodate language toggle */
.contacttop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    background-color: black;
    font-size: 15px;
    color: white;
    padding-left: 260px;
    padding-right: 250px;
    font-family: 'open sans', sans-serif;
    z-index: 2;
    position: relative;
}

/* Mobile responsive adjustments for language toggle */
@media screen and (max-width: 768px) {
    .contacttop {
        padding: 10px 20px;
        font-size: 12px;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }
    
    .language-toggle {
        margin: 0;
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .language-btn {
        font-size: 12px;
        padding: 4px 12px;
    }
}

@media screen and (max-width: 480px) {
    .language-btn {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .flag-icon {
        width: 16px;
        height: 12px;
    }
}




























/* NAVBAR STYLES ****************************************************/

/* ROW IMPORTANT ****************************************************/
.row{
  margin-left: 60px;
  display:flex;
  justify-content: space-between;
  margin-right: 60px;
  margin-top: 20px;
}
/* ROW IMPORTANT ****************************************************/

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.navbar{
  display: flex;
  justify-content:center;
  background-color: transparent;
  align-items: center;
  padding: 0 20px;
  position: sticky;
  top: 0;
  margin: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(194, 168, 120, 0.1);
  border-bottom: 1px solid rgba(194, 168, 120, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 20px;
  transition: all 0.3s ease;
  height: 60px;
}

.navbar:hover {
    box-shadow: 0 4px 20px rgba(194, 168, 120, 0.15);
}

.navbar ul{ 
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  list-style: none;
  align-items: center;
}

.navbar ul li{
  display: inline;
  padding: 15px;
  color: black;
}

.navbar ul li a{
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
  font-family: 'poppins', sans-serif;
  font-weight: 500;
  padding-left: 20px;
  font-size: 18px;
}

.navbar ul li a:hover{
  color: #C2A878;
}

.donate-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    background-color: #C2A878;
    padding: 10px 18px;
    font-size: 18px;
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.donate-btn:hover {
    background-color: rgba(194, 168, 120, 0.8);
    color: white;
    transition: 0.3s;
}

.donate-btn:active {
    background-color: rgba(194, 168, 120, 0.6);
    color: white;
    transition: 0.3s;
}

.donate-form {
    display: inline-flex;
    margin: 0;
    padding: 0;
    margin-left: 50px; 
    align-items: center; 
}

.heart-icon {
    width: 20px;
    height: 20px;
}

.contacttop{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  background-color:black;
  font-size: 15px;
  color: white;
  padding-left: 260px;
  padding-right: 250px;
  font-family: 'open sans', sans-serif;
  z-index: 2;
  position: relative;
}

.logo img{
  width: 150px;
  height: auto;
  margin-right: 30px;
  object-fit: contain;
  padding-top: 0px;
  justify-content: flex-start;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* HERO SECTION *****************************************************/

.hero-section {
  background-color: #C2A878;
  padding: 80px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: 'poppins', sans-serif;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-family: 'poppins', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* CONTAINER *****************************************************/

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* CONTACT MAIN SECTION *****************************************************/

.contact-main-section {
  padding: 80px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* CONTACT INFO CARD *****************************************************/

.contact-info-card {
  background: linear-gradient(135deg, rgba(194, 168, 120, 0.1) 0%, rgba(194, 168, 120, 0.05) 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(194, 168, 120, 0.1);
}

.contact-info-card h2 {
  font-family: 'poppins', sans-serif;
  font-size: 32px;
  color: #533805;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(194, 168, 120, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194, 168, 120, 0.15);
}

.contact-icon {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  flex-shrink: 0;
  filter: opacity(0.8);
}

.contact-details h3 {
  font-family: 'poppins', sans-serif;
  font-size: 18px;
  color: #533805;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.contact-details p {
  font-family: 'poppins', sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* OFFICE HOURS *****************************************************/

.office-hours {
  margin: 40px 0;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(194, 168, 120, 0.1);
}

.office-hours h3 {
  font-family: 'poppins', sans-serif;
  font-size: 20px;
  color: #533805;
  margin-bottom: 20px;
  font-weight: 600;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(194, 168, 120, 0.2);
}

.hour-item:last-child {
  border-bottom: none;
}

.day {
  font-family: 'poppins', sans-serif;
  font-weight: 600;
  color: #533805;
}

.time {
  font-family: 'poppins', sans-serif;
  color: #666;
}

/* SOCIAL SECTION *****************************************************/

.social-section {
  margin-top: 30px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(194, 168, 120, 0.1);
}

.social-section h3 {
  font-family: 'poppins', sans-serif;
  font-size: 20px;
  color: #533805;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-section p {
  font-family: 'poppins', sans-serif;
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1877f2;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'poppins', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

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

/* CONTACT FORM CARD *****************************************************/

.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(194, 168, 120, 0.1);
  border: 1px solid rgba(194, 168, 120, 0.2);
}

.contact-form-card h2 {
  font-family: 'poppins', sans-serif;
  font-size: 32px;
  color: #533805;
  margin-bottom: 15px;
  font-weight: 600;
}

.form-description {
  font-family: 'poppins', sans-serif;
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* CONTACT FORM *****************************************************/

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-family: 'poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #533805;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid rgba(194, 168, 120, 0.3);
  border-radius: 8px;
  font-family: 'poppins', sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C2A878;
  box-shadow: 0 0 0 3px rgba(194, 168, 120, 0.1);
}

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

/* SUBMIT BUTTON *****************************************************/

.submit-btn {
  background-color: #C2A878;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-family: 'poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: rgba(194, 168, 120, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(194, 168, 120, 0.3);
}

.submit-btn:active {
  background-color: rgba(194, 168, 120, 0.6);
  transform: translateY(0);
}

/* MAP SECTION *****************************************************/

.map-section {
  padding: 80px 0;
  background: rgba(194, 168, 120, 0.05);
}

.map-section h2 {
  font-family: 'poppins', sans-serif;
  font-size: 36px;
  text-align: center;
  color: #533805;
  margin-bottom: 40px;
  font-weight: 600;
}

.map-container {
  margin-bottom: 50px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(194, 168, 120, 0.2);
}

.map-container iframe {
  width: 100%;
  border: none;
}

/* FOOTER *****************************************************/

.support-section {
  margin-top: 60px;
  padding: 40px 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: linear-gradient(90deg,
    rgba(194, 168, 120, 0.9) 0%,    
    rgba(194, 168, 120, 0.3) 100%  
  );
  width: 100%;
}

.support-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
}

.logo-img {
  width: 300px;
  height: 300px;
  margin-bottom: -90px;
  margin-top: -100px;
  margin-left: -35px;
}

.support-text p {
  font-size: 18px;
  padding-right: 40px;
  color: black;
  font-family: 'poppins', sans-serif;
  margin-top: 0;
}

.facebook-img{
  width: 40px;
  height: 40px;
  margin-top: 0;
  margin-bottom: 50px;
}

.social-media:hover{
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.social-media:active{
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.contact-info {
  color: black;
  font-family: 'poppins', sans-serif;
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 18px;
}

.contact-info h2{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  font-family: 'poppins', sans-serif;
  color: black;
  font-size: 27px;
}

.contact-info h3{
  font-family: 'poppins', sans-serif;
  color: black;
  font-size: 16px;
  color: #533805;
  font-weight: 600;
}

.contact-info p{
  font-family: 'poppins', sans-serif;
  color: black;
  font-weight: 500;
}

.socials {
  color: black;
  font-family: 'poppins', sans-serif;
  width:20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 18px;
}

.email-icon, .phone-icon, .pin-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
  font-family: 'poppins', sans-serif;
  color: black;
  font-size: 18px;
}

.newsletter input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.newsletter button {
  background-color: #C2A878;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
}

.newsletter button:hover {
  background-color: rgba(194, 168, 120, 0.8);
  transition: background-color 0.3s ease;
} 

.newsletter button:active {
  background-color: rgba(194, 168, 120, 0.6);
  transition: background-color 0.3s ease;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  font-family: 'poppins', sans-serif;
  font-size: 14px;
}


/* FORM VALIDATION STYLES *****************************************************/

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
  border-color: #28a745;
  background-color: rgba(40, 167, 69, 0.05);
}

/* LOADING STATES *****************************************************/

.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

.submit-btn.loading {
  background-color: rgba(194, 168, 120, 0.7);
  cursor: wait;
}

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

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* MOBILE RESPONSIVE STYLES - CONTACT MAIN SECTION ONLY *****************************************************/

@media screen and (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 35px;
    }
}

@media screen and (max-width: 768px) {
    /* Contact Main Section Mobile */
    .contact-main-section {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 30px 25px;
    }

    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 28px;
        margin-bottom: 25px;
        text-align: center;
    }

    .form-description {
        font-size: 15px;
        text-align: center;
        margin-bottom: 25px;
    }

    /* Contact Items Mobile */
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .contact-icon {
        margin: 0 0 15px 0;
        align-self: center;
    }

    .contact-details h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .contact-details p {
        font-size: 15px;
    }

    /* Office Hours Mobile */
    .office-hours,
    .social-section {
        padding: 25px 20px;
        margin: 25px 0;
    }

    .office-hours h3,
    .social-section h3 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hour-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 15px 0;
    }

    .day {
        font-size: 15px;
    }

    .time {
        font-size: 14px;
    }

    .social-section p {
        text-align: center;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .social-link {
        display: flex;
        justify-content: center;
        width: 100%;
        font-size: 15px;
        padding: 15px 20px;
        min-height: 50px;
    }

    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .form-group label {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 14px 15px;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 16px 25px;
        width: 100%;
        margin-top: 15px;
        min-height: 50px;
    }

    /* Better spacing for mobile cards */
    .contact-item {
        margin-bottom: 20px;
    }
    
    .office-hours,
    .social-section {
        margin-bottom: 20px;
    }
    
    /* Mobile-optimized hover effects */
    .contact-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(194, 168, 120, 0.12);
    }
}

@media screen and (max-width: 480px) {
    .contact-main-section {
        padding: 40px 0;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .form-description {
        font-size: 14px;
    }
    
    .contact-item {
        padding: 15px 10px;
    }
    
    .contact-details h3 {
        font-size: 15px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .office-hours,
    .social-section {
        padding: 20px 15px;
    }
    
    .office-hours h3,
    .social-section h3 {
        font-size: 16px;
    }
    
    .social-section p {
        font-size: 13px;
    }
    
    .social-link {
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media screen and (max-width: 320px) {
    .contact-main-section {
        padding: 30px 0;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 20px 10px;
        margin: 0 5px;
    }
    
    .contact-info-card h2,
    .contact-form-card h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .form-description {
        font-size: 13px;
    }
    
    .contact-item {
        padding: 12px 8px;
    }
    
    .contact-details h3 {
        font-size: 14px;
    }
    
    .contact-details p {
        font-size: 13px;
    }
    
    .office-hours,
    .social-section {
        padding: 15px 10px;
    }
    
    .office-hours h3,
    .social-section h3 {
        font-size: 15px;
    }
    
    .social-section p {
        font-size: 12px;
    }
    
    .social-link {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* MOBILE RESPONSIVE STYLES *****************************************************/

@media screen and (max-width: 1024px) {
    .contacttop {
        padding-left: 50px;
        padding-right: 50px;
        font-size: 14px;
    }
    
    .navbar ul li a {
        font-size: 16px;
        padding-left: 15px;
    }
    
    .donate-form {
        margin-left: 30px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .contacttop {
        padding: 10px 20px;
        font-size: 12px;
        flex-direction: column;
        gap: 5px;
    }
    
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
        align-items: flex-start;
    }
    
    .navbar ul {
        position: absolute; /* Add this */
        top: 100%; /* Position below navbar */
        left: 0;
        right: 0;
        z-index: 1000; /* Ensure it appears above other content */
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 0; /* Remove margin since it's positioned absolutely */
        background-color: rgba(255, 255, 255, 0.98);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .navbar ul.show {
        display: flex;
    }
    
    .navbar ul li {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid rgba(194, 168, 120, 0.2);
    }
    
    .navbar ul li:last-child {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 15px;
    }
    
    .donate-form {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .logo img {
        width: 100px;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 16px;
        padding: 0 10px;
    }

    .support-section {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    .support-text, .contact-info, .socials, .newsletter {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .logo-img {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px auto;
    }
    
    .support-text p {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-info h2 {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    /* Map Section Mobile */
    .map-section {
        padding: 50px 0;
    }

    .map-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .map-container {
        margin: 0 20px 40px;
    }

    .map-container iframe {
        height: 300px;
    }

    .support-section {
        padding: 30px 20px;
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
    
 .row {
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
        gap: 20px;
    }
    
    .support-text,
    .contact-info,
    .socials,
    .newsletter {
        width: 100% !important;
        text-align: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        padding: 0 10px !important;
    }
    
    .logo-img {
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto 20px auto !important;
    }
    
    .support-text p {
        font-size: 16px !important;
        padding-right: 0 !important;
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }
    
    .contact-info h2, .socials h2, .newsletter h2 {
        font-size: 20px !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 0 15px 0 !important;
    }
    
    .contact-info h3 {
        font-size: 15px !important;
        text-align: center !important;
        margin: 10px 0 5px 0 !important;
    }
    
    .contact-info p, .socials p, .newsletter p {
        font-size: 14px !important;
        text-align: center !important;
        margin: 0 0 10px 0 !important;
    }
    
    .email-icon, .phone-icon, .pin-icon {
        width: 16px !important;
        height: 16px !important;
        margin-right: 6px !important;
    }
    
    .facebook-img {
        width: 32px !important;
        height: 32px !important;
        margin: 8px auto !important;
        display: block !important;
    }
    
    .newsletter input[type="email"] {
        padding: 8px !important;
        font-size: 14px !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 8px auto !important;
    }
    
    .newsletter button {
        padding: 8px 16px !important;
        font-size: 14px !important;
        margin: 12px auto !important;
        display: block !important;
    }
    
    .newsletter form {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* Mobile menu animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Touch-friendly elements */
    .donate-btn, .submit-btn, .social-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    .navbar ul li a {
       
        display: block;
        width: 100%;
    }
    
    /* Improved mobile typography */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Focus states for accessibility */
    .submit-btn:focus,
    .social-link:focus {
        outline: 2px solid #C2A878;
        outline-offset: 2px;
    }
    
    .navbar ul li a:focus {
        outline: 2px solid #C2A878;
        outline-offset: 2px;
        background-color: rgba(194, 168, 120, 0.1);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: 2px solid #C2A878;
        outline-offset: 2px;
    }
}

@media screen and (max-width: 480px) {
    .contacttop {
        font-size: 11px;
        padding: 8px 15px;
    }
    
    .navbar {
        padding: 8px 15px;
    }
    
    .logo img {
        width: 80px;
    }
    
    .hero-section {
        padding: 50px 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        padding: 0 10px;
    }
    
    .hero-content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .map-section {
        padding: 40px 0;
    }
    
    .map-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .map-container {
        margin: 0 15px 30px;
    }

    .map-container iframe {
        height: 250px;
    }
    
    .support-section {
        padding: 25px 15px;
        gap: 25px;
    }
    
    .support-section .row {
        gap: 20px !important;
    }
    
    .logo-img {
        width: 150px !important;
        height: 150px !important;
        margin: 0 auto 15px auto !important;
    }
    
    .support-text p {
        font-size: 14px !important;
    }
    
    .contact-info h2, .socials h2, .newsletter h2 {
        font-size: 18px !important;
        margin: 0 0 12px 0 !important;
    }
    
    .contact-info h3 {
        font-size: 14px !important;
        margin: 8px 0 4px 0 !important;
    }
    
    .contact-info p, .socials p, .newsletter p {
        font-size: 13px !important;
        margin: 0 0 8px 0 !important;
    }
    
    .email-icon, .phone-icon, .pin-icon {
        width: 14px !important;
        height: 14px !important;
        margin-right: 5px !important;
    }
    
    .facebook-img {
        width: 30px !important;
        height: 30px !important;
        margin: 6px auto !important;
    }
    
    .newsletter input[type="email"] {
        padding: 6px !important;
        font-size: 13px !important;
        margin: 6px auto !important;
    }
    
    .newsletter button {
        padding: 6px 12px !important;
        font-size: 13px !important;
        margin: 10px auto !important;
    }
}

@media screen and (max-width: 320px) {
    .contacttop {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .logo img {
        width: 70px;
    }
    
    .hero-section {
        padding: 40px 10px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 13px;
    }
    
    .map-section {
        padding: 30px 0;
    }
    
    .map-section h2 {
        font-size: 22px;
    }
    
    .map-container {
        margin: 0 10px 25px;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    .support-section {
        padding: 20px 10px;
        gap: 20px;
    }
    
    .logo-img {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto 10px auto !important;
    }
    
    .support-text p {
        font-size: 12px !important;
    }
    
    .contact-info h2, .socials h2, .newsletter h2 {
        font-size: 16px !important;
        margin: 0 0 10px 0 !important;
    }
    
    .contact-info h3 {
        font-size: 13px !important;
        margin: 6px 0 3px 0 !important;
    }
    
    .contact-info p, .socials p, .newsletter p {
        font-size: 12px !important;
        margin: 0 0 6px 0 !important;
    }
    
    .email-icon, .phone-icon, .pin-icon {
        width: 12px !important;
        height: 12px !important;
        margin-right: 4px !important;
    }
    
    .facebook-img {
        width: 28px !important;
        height: 28px !important;
        margin: 4px auto !important;
    }
    
    .newsletter input[type="email"] {
        padding: 5px !important;
        font-size: 12px !important;
        margin: 5px auto !important;
    }
    
    .newsletter button {
        padding: 5px 10px !important;
        font-size: 12px !important;
        margin: 8px auto !important;
    }
}

/* Additional Mobile-Specific Improvements */

/* Landscape orientation adjustments for mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .map-section {
        padding: 40px 0;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Very small screens optimization */
@media screen and (max-width: 280px) {
    .contacttop {
        font-size: 9px;
        padding: 4px 8px;
    }
    
    .logo img {
        width: 60px;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 12px;
    }
    
    .map-container iframe {
        height: 200px;
    }
}

/* High resolution mobile displays */
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
    }
    
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
    }
    
    .contact-icon,
    .email-icon,
    .phone-icon,
    .pin-icon {
        image-rendering: -webkit-optimize-contrast;
    }
}