/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
  padding-top: 70px;
}

/* ========== NAVIGATION BAR ========== */
.navbar {
    background: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    margin: 0 auto;
    padding: 10px 20px 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - Left Side */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 80px;
    width: 150px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.logo a:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(2px 2px 8px rgba(255, 215, 0, 0.5));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;

    /* ⭐ ADDED → Ensures menu stays right */
    margin-left: auto;
}

.nav-item {
    position: relative;
}

/* Dropdown Menu for Home1 */
.home-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    list-style: none;
    padding: 10px 0;
    margin: 5px 0 0 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1001;
}

.home-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    background: transparent;
    color: #ffd700;
    padding-left: 25px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    display: block;
    border-radius: 25px;
    background: transparent;
}

.nav-link:hover {
    background: transparent;
    color: #ffd700;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        height: auto;
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 70px;
        width: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        margin: 5px 20px;
        border-radius: 10px;
    }

    .nav-link:hover {
        background: transparent;
        color: #ffd700;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .home-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-link {
        padding: 10px 40px;
        font-size: 14px;
    }
}
/* ========== GLOBAL RESET ========== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========== BUTTONS ========== */
.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.btn.primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
}

.btn.ghost {
  border: 2px solid #00d4ff;
  color: #00d4ff;
  background: transparent;
}

.btn.ghost:hover {
  background: #00d4ff;
  color: #fff;
}

.btn.dark {
  background: #2d3748;
  color: #fff;
}

.btn.dark:hover {
  background: #1a202c;
  transform: translateY(-3px);
}

.btn.small {
  padding: 8px 16px;
  font-size: 13px;
}
.nav-logo img {
    width: 140px;        /* bigger size for mobile */
    height: auto;
}

@media (min-width: 768px) {
    .nav-logo img {
        width: 180px;    /* normal size for tablet+ */
    }
}

@media (min-width: 1024px) {
    .nav-logo img {
        width: 200px;    /* normal size for desktop */
    }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-inner {
  position: relative;
  max-width: 650px;
  color: #fff;
}

.badge {
  display: inline-flex;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  margin-bottom: 20px;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.accent {
  color: #ff6b6b;
  text-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-size: 18px;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Floating stats */
.floating-stats {
  margin-top: 50px;
  position: relative;
}

.stats-grid {
  background: #fff;
  margin-top: 20px;
  border-radius: 12px;
  color: #333;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat {
  text-align: center;
}

.stat .big {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat .label {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.badge-square {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff9999 100%);
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 20px;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background: #e0f7ff;
  color: #0099cc;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #1a202c;
}

.about-content .lead {
  color: #555;
  margin-bottom: 15px;
  font-size: 16px;
}

.about-content p {
  color: #666;
  margin-bottom: 15px;
}

.checklist {
  list-style: none;
  margin: 20px 0;
}

.checklist li {
  margin-bottom: 12px;
  color: #555;
  padding-left: 30px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  position: absolute;
  left: 0;
  top: -2px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.actions {
  margin-top: 25px;
}

/* ========== STATS CARDS ========== */
.stats-section {
  padding: 80px 0;
}

.stats-section.light {
  background: #f8f9fa;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #00d4ff;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.stat-card .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  color: #00d4ff;
}

.stat-card .num {
  font-size: 28px;
  font-weight: 800;
  color: #00d4ff;
}

.stat-card .lbl {
  color: #666;
  margin-top: 8px;
  font-size: 14px;
}

/* ========== CAUSES SECTION ========== */
.causes {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .badge {
  background: #e0f7ff;
  color: #0099cc;
  border: none;
  display: inline-flex;
}

.section-head h2 {
  font-size: 40px;
  margin: 15px 0;
  color: #1a202c;
}

.section-head .sub {
  color: #666;
  max-width: 600px;
  margin: 15px auto 0;
  font-size: 16px;
}

.cause-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cause-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cause-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.cause-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cause-card .card-content {
  padding: 20px;
}

.cause-card .cat {
  display: inline-block;
  padding: 5px 12px;
  background: #ffe0e0;
  color: #ff6b6b;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cause-card h3 {
  font-size: 18px;
  color: #1a202c;
  margin-bottom: 10px;
}

.cause-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.progress {
  height: 8px;
  background: #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress .bar {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff 0%, #ff6b6b 100%);
  width: var(--pct);
  transition: 0.6s ease;
}

.cause-card .meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.card-actions {
  display: flex;
  gap: 10px;
}

.link {
  text-decoration: none;
  color: #0099cc;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.link:hover {
  color: #ff6b6b;
}

.center {
  text-align: center;
  margin-top: 40px;
}

/* ========== IMPACT SECTION ========== */
.how {
  padding: 80px 0;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  border-radius: 16px;
  margin-top: 40px;
  color: #fff;
}

.section-head.light {
  color: #fff;
}

.section-head.light .badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.section-head.light h2 {
  color: #fff;
}

.section-head.light .sub {
  color: rgba(255, 255, 255, 0.9);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.icon-circle {
  font-size: 48px;
  margin-bottom: 15px;
}

.impact-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.impact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 80px 0;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.test-card {
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #ff6b6b;
}

.test-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.test-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.quote {
  margin: 15px 0;
  color: #555;
  font-style: italic;
  font-size: 15px;
}

.who {
  font-weight: 600;
  color: #1a202c;
  font-size: 14px;
}

.who span {
  color: #00d4ff;
  font-weight: 500;
}

/* ========== CTA ========== */
.cta-section {
  padding: 80px 0;
}

.cta-card {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff9999 100%);
  padding: 60px 40px;
  text-align: center;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
}

.cta-card h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.cta-card p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 30px 0;
  background: #1a202c;
  color: #fff;
  margin-top: 60px;
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cause-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }

  .stat .big {
    font-size: 24px;
  }

  .about {
    padding: 50px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .badge-square {
    right: -10px;
    bottom: -10px;
    padding: 15px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .hero-title {
    font-size: 28px;
  }

  .cta-card h2 {
    font-size: 28px;
  }

  .cause-grid {
    grid-template-columns: 1fr;
  }

  .stats-cards {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    padding: 50px 0;
  }

  .causes {
    padding: 50px 0;
  }

  .how {
    padding: 50px 0;
    margin-top: 30px;
  }

  .testimonials {
    padding: 50px 0;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-actions {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .foot-grid {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .cause-card h3 {
    font-size: 16px;
  }

  .cause-card p {
    font-size: 13px;
  }

  .cta-card {
    padding: 40px 20px;
  }

  .cta-card h2 {
    font-size: 24px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero::before {
    width: 300px;
    height: 300px;
    right: -20%;
  }

  .hero::after {
    width: 200px;
    height: 200px;
    bottom: -20%;
  }
}
/* FIX: Hero Buttons Too Big on Mobile */
@media (max-width: 768px) {
  .hero-cta .btn {
    width: auto !important;      /* Stop full width */
    padding: 10px 18px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
  }

  .hero-cta {
    justify-content: center !important; /* center buttons */
    gap: 10px !important;
  }
}
/* Make hero button icons smaller */
.hero-cta .btn svg,
.hero-cta button svg {
    width: 14px !important;
    height: 14px !important;
}

/* Adjust spacing so button looks balanced */
.hero-cta .btn,
.hero-cta button {
    gap: 6px !important;
    padding: 10px 18px !important;
}
/*footer*/

.site-footer {
    background: linear-gradient(135deg, #0a0f24, #111b3b);
    color: #d9e4ff;
    padding: 70px 20px 35px;
    font-family: "Poppins", sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* BRAND SECTION */
.footer-brand {
    flex: 1.6;
    min-width: 280px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b8c7e8;
    margin-bottom: 20px;
}

/* SUBSCRIBE SECTION */
.footer-subscribe {
    margin-top: 25px;
}

.subscribe-label {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid #39466a;
    background: #1a2547;
    color: white;
    outline: none;
    transition: 0.3s;
}

.subscribe-input:focus {
    border-color: #6c92ff;
}

.subscribe-button {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #5e2bff, #3d94ff);
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
}

.subscribe-button:hover {
    transform: scale(1.06);
    background: linear-gradient(135deg, #3a20ff, #2d7aff);
}

.subscribe-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #93a3c7;
}

/* LINKS SECTION */
.footer-columns {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    min-width: 250px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1.15rem;
    position: relative;
}

.footer-column h3::after {
    content: "";
    width: 35px;
    height: 3px;
    background: #3b82ff;
    display: block;
    margin-top: 5px;
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b5c6e4;
    text-decoration: none;
    transition: 0.25s;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 6px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 45px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom-left p {
    margin: 0;
    color: #92a3ca;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.footer-legal a {
    color: #b7cbff;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1b2647;
    padding: 10px;
    transition: 0.3s;
    filter: grayscale(30%);
}

.social-icon:hover {
    transform: scale(1.15);
    background: #3b82ff;
    filter: grayscale(0%);
    box-shadow: 0px 0px 12px rgba(59, 130, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-columns {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}
