/* foundation.css - NTONARCH Foundation Stylesheet */
/* Orange and White Color Scheme */

/* ===== CSS VARIABLES ===== */
:root {
  /* Orange Color Palette */
  --primary-orange: #ff8c00;
  --secondary-orange: #ffa500;
  --dark-orange: #e67e00;
  --light-orange: #fff8f0;

  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #ecf0f1;
  --dark-gray: #333333;
  --text-gray: #555555;
  --light-text: #666666;

  /* Shadows and Effects */
  --shadow: rgba(0, 0, 0, 0.1);
  --orange-shadow: rgba(255, 140, 0, 0.3);
  --error-red: #e74c3c;
  --error-light: #fff5f5;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
}

/* ===== CSS RESET AND BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--dark-orange),
    var(--secondary-orange)
  );
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--orange-shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-logo h2 {
  margin: 0;
  color: var(--dark-gray);
  font-size: 1.5rem;
}

.nav-logo span {
  color: var(--primary-orange);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-orange);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-gray);
  margin: 3px 0;
  transition: 0.3s;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateX(100%);
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide.prev {
  transform: translateX(-100%);
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  color: var(--primary-orange);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  color: #000000;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  border-radius: 10px;
  display: inline-block;
  backdrop-filter: blur(5px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: white;
  color: #333;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(212, 118, 4, 0.037);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(248, 96, 8, 0.477);
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-item h3 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.stat-item p {
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
  opacity: 0.9;
  color: var(--primary-orange);
  font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 6rem 0;
  background: var(--light-gray);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text {
  max-width: 1000px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== MISSION INTRO ===== */
.mission-intro {
  margin-bottom: 3rem;
}

.mission-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-gray);
  max-width: 900px;
  margin: 0 auto;
}

/* ===== SDG SECTION ===== */
.sdg-section {
  margin: 4rem 0;
}

.sdg-section h3 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-gray);
  font-size: 1.8rem;
  position: relative;
}

.sdg-section h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.sdg-card {
  background: var(--white);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px var(--shadow);
  transition: var(--transition);
  border-left: 5px solid var(--primary-orange);
  position: relative;
  overflow: hidden;
}

.sdg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
}

.sdg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sdg-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 4px 15px var(--orange-shadow);
}

.sdg-content h4 {
  color: var(--dark-gray);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.sdg-content p {
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== FOUNDATION PHILOSOPHY ===== */
.foundation-philosophy {
  margin: 3rem 0;
  text-align: center;
}

.foundation-philosophy p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  position: relative;
}

.foundation-philosophy p::before,
.foundation-philosophy p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-orange);
  font-weight: bold;
  line-height: 0;
}

.foundation-philosophy p::before {
  margin-right: 0.5rem;
}

.foundation-philosophy p::after {
  margin-left: 0.5rem;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.value-item h4 {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

/* ===== INITIATIVES SECTION ===== */
.initiatives {
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.initiative-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary-orange);
}

.initiative-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
  margin-bottom: 1.5rem;
}

.card-icon i {
  font-size: 3rem;
  color: var(--primary-orange);
}

.initiative-card h3 {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.initiative-card p {
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.card-features span {
  background: var(--light-orange);
  color: var(--dark-gray);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--primary-orange);
}

/* ===== IMPACT SECTION ===== */
.impact {
  padding: 6rem 0;
  background: var(--light-gray);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strategy-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.strategy-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow);
}

.strategy-item i {
  font-size: 2rem;
  color: var(--primary-orange);
  margin-top: 0.25rem;
}

.strategy-item h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
}

.strategy-item p {
  color: var(--light-text);
  margin: 0;
}

/* ===== PARTNERSHIP SECTION ===== */
.partnership {
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partnership-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.partnership-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.partnership-content h4 {
  margin: 2rem 0 1rem;
  color: var(--dark-gray);
}

.partnership-ways {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.partnership-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid var(--primary-orange);
}

.partnership-item i {
  color: var(--primary-orange);
  font-size: 1.25rem;
}

.partnership-cta {
  font-style: italic;
  color: var(--dark-gray);
  margin-top: 2rem;
}

/* ===== PARTNERSHIP SECTION ===== */
.partnership {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  position: relative;
}

.partnership::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f0f0f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.partnership .container {
  position: relative;
  z-index: 2;
}

.partnership-content {
  margin-top: 3rem;
}

.partnership-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.partnership-intro h3 {
  color: var(--primary-orange);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.partnership-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-gray);
}

.partnership-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.partnership-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--medium-gray);
  position: relative;
  overflow: hidden;
}

.partnership-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
}

.partnership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--orange-shadow);
}

.partnership-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.partnership-card .card-icon i {
  font-size: 2rem;
  color: var(--white);
}

.partnership-card h4 {
  font-size: 1.4rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.partnership-card p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.partnership-card ul {
  list-style: none;
  padding: 0;
}

.partnership-card ul li {
  padding: 0.5rem 0;
  color: var(--text-gray);
  position: relative;
  padding-left: 1.5rem;
}

.partnership-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 1.1rem;
}

.partnership-cta {
  text-align: center;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px var(--shadow);
  border: 2px solid var(--medium-gray);
}

.partnership-cta h3 {
  color: var(--dark-gray);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.partnership-cta p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 150px;
}

/* ===== RESPONSIVE DESIGN FOR PARTNERSHIP SECTION ===== */
@media (max-width: 768px) {
  .partnership {
    padding: 4rem 0;
  }

  .partnership-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partnership-card {
    padding: 2rem;
  }

  .partnership-intro {
    margin-bottom: 3rem;
  }

  .partnership-intro h3 {
    font-size: 1.5rem;
  }

  .partnership-cta {
    padding: 2rem;
  }

  .partnership-cta h3 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .partnership-card {
    padding: 1.5rem;
  }

  .partnership-card .card-icon {
    width: 60px;
    height: 60px;
  }

  .partnership-card .card-icon i {
    font-size: 1.5rem;
  }

  .partnership-cta {
    padding: 1.5rem;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 6rem 0;
  background: var(--light-gray);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error-red);
  background-color: var(--error-light);
}

.error-message {
  color: var(--error-red);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: block;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px var(--orange-shadow);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-orange);
  width: 30px;
  text-align: center;
}

.contact-item h4 {
  margin: 0 0 0.25rem 0;
  color: var(--dark-gray);
}

.contact-item p {
  margin: 0;
  color: var(--light-text);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--dark-orange);
  transform: translateY(-2px);
}

/* ===== GALLERY SECTION ===== */
/* ===== CSS VARIABLES ===== */
:root {
  --primary-orange: #ff6b35;
  --secondary-orange: #ff8c42;
  --light-orange: #ffab7a;
  --dark-orange: #e55a2b;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #2c3e50;
  --light-text: #6c757d;
  --shadow: rgba(0, 0, 0, 0.1);
  --orange-shadow: rgba(255, 107, 53, 0.2);
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --max-width: 1200px;
}

/* ===== RESET AND GLOBALS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  min-height: 100vh;
  position: relative;
}

.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange),
    var(--light-orange),
    var(--secondary-orange),
    var(--primary-orange)
  );
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 20px;
  position: relative;
}

.section-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  border-radius: 2px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== CATEGORY GRID ===== */
.gallery-categories {
  width: 100%;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 30px var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 107, 53, 0.1);
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--orange-shadow);
  border-color: var(--primary-orange);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover::before {
  opacity: 1;
}

/* ===== CATEGORY HEADER ===== */
.category-header {
  padding: 25px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: var(--transition);
}

.category-card:hover .category-header::before {
  transform: rotate(45deg) scale(1.1);
}

.category-header i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
}

.category-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ===== IMAGE CAROUSEL ===== */
.image-carousel {
  position: relative;
  background: var(--white);
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.carousel-images {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.carousel-slide.prev {
  transform: translateX(-100%);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.carousel-slide:hover img {
  transform: scale(1.02);
}

/* ===== SLIDE DETAILS SECTION ===== */
.slide-details {
  padding: 25px;
  background: var(--white);
  min-height: 180px;
  position: relative;
}

.detail-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  display: none;
}

.detail-item.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.detail-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 12px;
  line-height: 1.3;
  border-bottom: 2px solid var(--primary-orange);
  padding-bottom: 8px;
  display: inline-block;
}

.detail-item .location {
  font-size: 0.95rem;
  color: var(--primary-orange);
  font-weight: 500;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.detail-item .location::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 0.9rem;
}

.detail-item .time {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.detail-item .time::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 0.85rem;
}

.detail-item .description {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.5;
  margin: 0;
  text-align: justify;
}

/* ===== CAROUSEL CONTROLS ===== */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 107, 53, 0.9);
  color: var(--white);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.carousel-btn:hover {
  background: var(--primary-orange);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.carousel-btn i {
  font-size: 1rem;
}

/* ===== CAROUSEL INDICATORS ===== */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px 0;
  background: var(--white);
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.3);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.indicator:hover {
  background: rgba(255, 107, 53, 0.6);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--primary-orange);
  transform: scale(1.3);
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--primary-orange);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .gallery {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

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

  .carousel-images {
    height: 320px;
  }

  .carousel-slide img {
    height: 180px;
  }

  .slide-info {
    height: 140px;
    padding: 15px;
  }

  .slide-info h4 {
    font-size: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .category-header {
    padding: 20px 15px;
  }

  .category-header i {
    font-size: 2rem;
  }

  .category-header h3 {
    font-size: 1.1rem;
  }

  .carousel-images {
    height: 300px;
  }

  .carousel-slide img {
    height: 160px;
  }

  .slide-info {
    height: 140px;
    padding: 12px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

/* ===== LOADING ANIMATION ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-card {
  animation: fadeIn 0.6s ease-out;
}

.category-card:nth-child(even) {
  animation-delay: 0.2s;
}

/* ===== ACCESSIBILITY ===== */
.carousel-btn:focus,
.indicator:focus {
  outline: 3px solid var(--primary-orange);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .carousel-slide {
    transition: none;
  }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
  :root {
    --primary-orange: #ff4500;
    --secondary-orange: #ff6600;
    --shadow: rgba(0, 0, 0, 0.3);
  }

  .category-card {
    border: 2px solid var(--dark-gray);
  }
}
/* ===== Gallery section close ===== */

/* ===== DONATION SECTION ===== */
.donate {
  padding: 6rem 0;
  background: var(--light-orange);
  border-top: 3px solid var(--primary-orange);
  border-bottom: 3px solid var(--primary-orange);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.donate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange),
    var(--primary-orange)
  );
}

.donate .section-header {
  margin-bottom: 3rem;
}

.donate .section-header h2 {
  color: var(--dark-gray);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.donate .section-header p {
  color: var(--light-text);
  font-size: 1.1rem;
}

.donation-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.donation-impact h3 {
  color: var(--dark-gray);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.impact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow);
  border-left: 4px solid var(--primary-orange);
  transition: transform 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px var(--orange-shadow);
}

.impact-item .amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.impact-item p {
  margin: 0;
  color: var(--light-text);
}

.donation-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  border: 2px solid var(--primary-orange);
}

.donation-form h3 {
  color: var(--dark-gray);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
}

.donation-amounts {
  margin-bottom: 2rem;
}

.donation-amounts h4 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.amount-btn {
  background: var(--white);
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--orange-shadow);
}

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

.donor-info {
  margin: 2rem 0;
}

.donor-info h4 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-orange);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--light-text);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-orange);
  border-radius: 3px;
  margin-right: 0.75rem;
  position: relative;
  transition: var(--transition);
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: bold;
  font-size: 0.8rem;
}

.payment-methods {
  margin: 2rem 0;
}

.payment-methods h4 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-orange);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.payment-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.payment-option:hover,
.payment-option:has(input:checked) {
  border-color: var(--primary-orange);
  background: var(--light-orange);
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-icon {
  margin-right: 0.75rem;
  color: var(--primary-orange);
  font-size: 1.25rem;
}

.donate-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin: 1rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.donate-btn:hover {
  background: linear-gradient(
    135deg,
    var(--dark-orange),
    var(--secondary-orange)
  );
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.donate-btn i {
  margin-right: 0.5rem;
}

.donation-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--light-text);
  margin-top: 1rem;
}

.donation-note i {
  color: var(--primary-orange);
  margin-right: 0.5rem;
}

.donation-alternatives {
  text-align: center;
}

.donation-alternatives h3 {
  color: var(--dark-gray);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.alternatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.alternative-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.alternative-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: 0 10px 25px var(--orange-shadow);
}

.alternative-item i {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.alternative-item h4 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.alternative-item p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.alt-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.alt-link:hover {
  color: var(--dark-orange);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.text-orange {
  color: var(--primary-orange);
}
.text-white {
  color: var(--white);
}
.text-dark {
  color: var(--dark-gray);
}
.text-light {
  color: var(--light-text);
}

.bg-orange {
  background-color: var(--primary-orange);
}
.bg-white {
  background-color: var(--white);
}
.bg-light {
  background-color: var(--light-gray);
}
.bg-orange-light {
  background-color: var(--light-orange);
}

.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 4rem;
}

.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}

.p-1 {
  padding: 1rem;
}
.p-2 {
  padding: 2rem;
}
.p-3 {
  padding: 3rem;
}
.p-4 {
  padding: 4rem;
}

.rounded {
  border-radius: 8px;
}
.rounded-lg {
  border-radius: 16px;
}
.rounded-full {
  border-radius: 50%;
}

.shadow {
  box-shadow: 0 2px 10px var(--shadow);
}
.shadow-lg {
  box-shadow: 0 10px 30px var(--shadow);
}
.shadow-orange {
  box-shadow: 0 5px 15px var(--orange-shadow);
}

.hover-lift:hover {
  transform: translateY(-5px);
  transition: var(--transition);
}

.hover-scale:hover {
  transform: scale(1.05);
  transition: var(--transition);
}

/* ===== FOOTER STYLES ===== */
.footer {
  background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 4rem 0 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange),
    var(--primary-orange)
  );
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-section h3 {
  font-size: 1.5rem;
}

.footer-section h4 {
  font-size: 1.2rem;
}

.footer-section h5 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-logo h3 {
  margin: 0;
  color: var(--primary-orange);
}

.foundation-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  color: #cccccc;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

.footer-links-list li:not(:has(a)) {
  color: #cccccc;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: var(--primary-orange);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  width: 20px;
  text-align: center;
}

.contact-item p {
  margin: 0;
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-secondary {
  border-top: 1px solid #333;
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.footer-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-links-section {
  flex: 1;
  min-width: 200px;
}

.footer-links-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-section li {
  margin-bottom: 0.75rem;
}

.footer-links-section a {
  color: #cccccc;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-links-section a:hover {
  color: var(--primary-orange);
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.newsletter-content p {
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: #cccccc;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  margin: 0;
  color: #cccccc;
  font-size: 0.9rem;
}

.copyright p:first-child {
  color: var(--white);
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-orange);
}

.separator {
  color: #666;
  font-size: 0.8rem;
}

/* Footer Social Links */
.footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .social-link:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
  .footer-main {
    gap: 1.5rem;
  }

  .footer-section {
    min-width: 200px;
  }

  .footer-links-grid {
    gap: 1.5rem;
  }

  .footer-links-section {
    min-width: 180px;
  }
}

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

  .footer-main {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-section {
    min-width: 100%;
  }

  .footer-links-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-links-section {
    min-width: 100%;
  }

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

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-newsletter {
    padding: 1.5rem;
  }

  .newsletter-content h4 {
    font-size: 1.2rem;
  }

  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-logo img {
    width: 40px;
    height: 40px;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

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

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .initiatives-grid {
    grid-template-columns: 1fr;
  }

  .mission-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .hero-stats {
    gap: 2rem;
  }

  .donation-content {
    gap: 3rem;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-header h2 {
    font-size: 3rem;
  }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.focus-visible:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .navbar,
  .hero-buttons,
  .social-links,
  .donate-btn {
    display: none !important;
  }

  .hero {
    background: white !important;
    color: black !important;
    min-height: auto !important;
  }

  .section-header h2::after {
    background: black !important;
  }

  a {
    text-decoration: underline !important;
  }

  .btn {
    border: 1px solid black !important;
    background: white !important;
    color: black !important;
  }
}
