/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 5px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-icon img {
  width: 70px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f39c12;
}

.btn-donate {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  margin-top: 80px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 7s ease-out;
}

.hero-slide.active .slide-background img {
  transform: scale(1.1);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content .container {
  text-align: center;
  color: #fff;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-slide.active .hero-subtitle {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
}

.hero-slide.active .typing-text {
  animation: typing 2s steps(20) 0.5s forwards, fadeIn 0.1s 0.5s forwards;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
}

.hero-slide.active .hero-description {
  animation: fadeInUp 0.8s ease 1.5s forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
}

.hero-slide.active .hero-buttons {
  animation: fadeInUp 0.8s ease 2s forwards;
}

.btn {
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

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

.btn-secondary:hover {
  background: #fff;
  color: #f39c12;
  transform: translateY(-3px);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 10;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #f39c12;
  width: 40px;
  border-radius: 6px;
}

/* Grid Transition Effect */
.grid-transition {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  pointer-events: none;
  z-index: 3;
}

.grid-tile {
  background: #000;
  opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* About Section Styles */
.about-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  height: 80%;
}

.image-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 8px solid #f39c12;
  box-shadow: 20px 20px 0 rgba(243, 156, 18, 0.2);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

.about-content {
  padding: 20px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e74c3c;
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.heart-icon {
  font-size: 16px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 25px;
}

.section-description {
  font-size: 16px;
  color: #727272;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 15px;
  color: #7f8c8d;
  line-height: 1.6;
  margin: 0;
}

/* Warmth & True Support Section */
.support-section {
  padding: 100px 0;

  background: linear-gradient(180deg, #e8ecef 0%, #f8f9fa 100%);
}
.support-section .container {
  width: 90%;
}
/* Grid Layout */
.support-grid {
  gap: 80px;
}

/* Left Side - Content */
.support-content {
  padding-right: 20px;
  width: 50%;
}

.support-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.header-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.support-tagline {
  font-size: 21px;
  color: #3d3d3d;
  margin: 0;
  font-weight: 600;
}

.support-description {
  font-size: 16px;
  color: #535353;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Right Side - Action Boxes */
.action-boxes {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  /* height: fit-content; */
}

.action-box {
  padding: 70px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.action-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}

.action-box:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.action-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

/* Box Colors */
.box-orange {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.box-blue {
  background: linear-gradient(135deg, #5dade2, #3498db);
}

.box-dark-blue {
  background: linear-gradient(135deg, #5a7a9a, #34495e);
}

.box-red {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.action-box:hover {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Impact Section */
.impact-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.impact-overlay {
  display: none;
}

.impact-section .container {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 100%;
}

/* Stats Grid */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1920&h=600&fit=crop");
  background-size: cover;
  background-position: center;
}

.impact-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.stat-box {
  text-align: center;
  color: #fff;
  padding: 80px 40px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

.stat-box:hover {
  background: rgba(243, 156, 18, 0.1);
}

/* Stat Icon */
.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}

.stat-icon svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Stat Number */
.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #f39c12;
  margin-bottom: 15px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.stat-figure {
  font-size: 36px;
  font-weight: 700;
  color: #f39c12;
  margin-bottom: 15px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
/* Stat Label */
.stat-label {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
  transition: all 0.3s;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(243, 156, 18, 0.5);
}

.scroll-top-btn svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Vision & Mission Section */
.vision-mission-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.vision-mission-section .container {
  position: relative;
  z-index: 2;
}

/* Grid Layout */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Card Styling */
.vm-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Image Container */
.vm-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.vm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

/* Content Area */
.vm-content {
  padding: 35px 30px;
  background: #fff;
}

.vm-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.vm-content p {
  font-size: 15px;
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Read More Button */
.btn-read-more {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-read-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
  background: linear-gradient(135deg, #e67e22, #d35400);
}

/* Decorative Circle */
.decorative-circle {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(243, 156, 18, 0.1),
    rgba(230, 126, 34, 0.15)
  );
  z-index: 1;
  pointer-events: none;
}
/* Join Our Events Section */
.events-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}
.events-section .container {
  width: 80%;
}
/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Events Image */
.events-image {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.events-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

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

/* Events Content */
.events-content {
  padding: 20px 0;
}

.events-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.header-icon-small {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.events-tagline {
  font-size: 14px;
  color: #7f8c8d;
  margin: 0;
  font-weight: 500;
}

.events-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 25px;
  font-family: "Playfair Display", "Georgia", serif;
}

.events-description {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 35px;
}

.link-view-events {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
  position: relative;
  letter-spacing: 1px;
  padding-bottom: 8px;
}

.link-view-events::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f39c12, #e67e22);
  transition: width 0.3s;
}

.link-view-events:hover::after {
  width: 100%;
}

/* Who We Work With Section */
.work-with-section {
  padding: 40px 0;
  background: #fff;
  position: relative;
}

/* Section Header */
.work-with-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.work-with-header h2 {
  font-size: 25px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.work-with-header p {
  font-size: 17px;
  color: #3e4546;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Header Divider */
.header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: #dfe6e9;
}

.divider-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-radius: 50%;
}

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Partner Card */
.partner-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(243, 156, 18, 0.15);
  border-color: #f39c12;
}

/* Partner Icon */
.partner-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff5e6, #ffe4c4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s;
  position: relative;
}

.partner-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid #f39c12;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
}

.partner-card:hover .partner-icon::before {
  opacity: 0.3;
}

.partner-icon svg {
  stroke: #f39c12;
  transition: all 0.4s;
}

.partner-card:hover .partner-icon {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  transform: rotateY(360deg);
}

.partner-card:hover .partner-icon svg {
  stroke: #fff;
}

/* Partner Title */
.partner-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 55px;
  display: flex;
  align-items: center;
}

/* Partner Description */
.partner-card p {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.5;
  margin: 0;
}

/* Special CTA Card */
.partner-cta {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-color: #f39c12;
}

.partner-cta .partner-icon {
  background: rgba(255, 255, 255, 0.2);
}

.partner-cta .partner-icon::before {
  border-color: #fff;
}

.partner-cta .partner-icon svg {
  stroke: #fff;
}

.partner-cta h3 {
  color: #fff;
}

.partner-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.btn-partner {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #fff;
  color: #f39c12;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-partner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/* Footer */
.footer {
  background: #2c3e50;
  color: #b2bec3;
  padding-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo .logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.footer-logo .logo-text h3 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 5px 0;
}

.footer-logo .logo-text p {
  font-size: 12px;
  color: #b2bec3;
  margin: 0;
}

/* Footer About */
.footer-description {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #b2bec3;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  transition: all 0.3s;
}

.social-links a:hover {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #fff;
  transform: translateY(-3px);
}

/* Footer Column Headings */
.footer-column h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Recent Campaigns */
.campaigns-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.campaigns-list li {
  margin-bottom: 18px;
}

.campaigns-list a {
  color: #b2bec3;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  display: block;
  transition: color 0.3s;
}

.campaigns-list a:hover {
  color: #f39c12;
}

.campaigns-list span {
  color: #7f8c8d;
  font-size: 13px;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-info svg {
  color: #f39c12;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info a,
.contact-info span {
  color: #b2bec3;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #f39c12;
}

/* Map Pins Decoration */
.footer-location {
  position: relative;
}

.map-pins {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100px;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #f39c12;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
  animation: pulse 2s infinite;
}

.map-pin:nth-child(2) {
  animation-delay: 0.5s;
}

.map-pin:nth-child(3) {
  animation-delay: 1s;
}

.map-pin:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Footer Bottom */
.footer-bottom {
  background: #1e2a38;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #b2bec3;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #b2bec3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f39c12;
}
