/* ====== Footer Section ====== */
.footer {
  background: linear-gradient(135deg, #0a1828 0%, #101820 50%, #16222a 100%);
  color: #e0f2e9;
  padding: 0;
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
  min-height: auto;
}

/* Animated Background Elements */
.footer-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #2ecc40;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
  box-shadow: 0 0 6px #2ecc40;
}

.star:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.star:nth-child(2) {
  top: 20%;
  left: 80%;
  animation-delay: 0.5s;
}
.star:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}
.star:nth-child(4) {
  top: 80%;
  left: 70%;
  animation-delay: 1.5s;
}
.star:nth-child(5) {
  top: 30%;
  left: 50%;
  animation-delay: 2s;
}
.star:nth-child(6) {
  top: 70%;
  left: 90%;
  animation-delay: 2.5s;
}
.star:nth-child(7) {
  top: 40%;
  left: 5%;
  animation-delay: 3s;
}
.star:nth-child(8) {
  top: 50%;
  left: 95%;
  animation-delay: 3.5s;
}

.footer-rockets {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.rocket {
  position: absolute;
  font-size: 1.5rem;
  animation: rocket-fly 15s linear infinite;
}

.rocket-1 {
  top: 15%;
  left: -50px;
  animation-delay: 0s;
}
.rocket-2 {
  top: 45%;
  left: -50px;
  animation-delay: 5s;
}
.rocket-3 {
  top: 75%;
  left: -50px;
  animation-delay: 10s;
}

@keyframes rocket-fly {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 100px));
    opacity: 0;
  }
}

.footer-plants {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.footer-plant {
  position: absolute;
  font-size: 2.2rem;
  animation: plantSway 4s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(127, 255, 166, 0.6));
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1;
}

.footer-plant:hover {
  transform: scale(1.3) rotate(10deg);
  filter: drop-shadow(0 0 16px rgba(127, 255, 166, 0.9));
}

.plant-1 {
  left: 2%;
  top: 20%;
  animation-delay: 0s;
}
.plant-2 {
  left: 1%;
  top: 60%;
  animation-delay: 0.8s;
  animation-direction: reverse;
}
.plant-3 {
  right: 2%;
  top: 30%;
  animation-delay: 1.6s;
}
.plant-4 {
  right: 1%;
  top: 70%;
  animation-delay: 2.4s;
  animation-direction: reverse;
}
.plant-5 {
  left: 3%;
  top: 85%;
  animation-delay: 3.2s;
}

@keyframes plantSway {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.footer-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

/* Footer Hero Section */
.footer-hero {
  padding: 2.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(46, 204, 64, 0.1) 0%,
    rgba(39, 174, 96, 0.05) 100%
  );
  border-bottom: 1px solid rgba(46, 204, 64, 0.2);
}

/* =====================
   PROFESSIONAL SPACE HERO CONTENT
====================== */
.hero-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 10;
  position: relative;
  background: rgba(5, 10, 15, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(127, 255, 166, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 100px rgba(127, 255, 166, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: contentFloat 6s ease-in-out infinite alternate;
}

@keyframes contentFloat {
  0% {
    transform: translateY(0px) scale(1);
    filter: brightness(1);
  }
  100% {
    transform: translateY(-10px) scale(1.002);
    filter: brightness(1.05);
  }
}

/* Enhanced Professional Avatar */
.hero-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.hero-avatar::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(
    circle at center,
    rgba(127, 255, 166, 0.05) 0%,
    rgba(46, 204, 64, 0.03) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: avatarGlow 4s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes avatarGlow {
  0% {
    opacity: 0.3;
    transform: scale(0.9) rotate(0deg);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.1) rotate(360deg);
  }
}

.avatar-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid rgba(127, 255, 166, 0.3);
  box-shadow: 0 0 40px rgba(127, 255, 166, 0.4), 0 0 80px rgba(46, 204, 64, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.avatar-img::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(127, 255, 166, 0.1) 50%,
    transparent 70%
  );
  animation: avatarShine 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.avatar-img:hover::before {
  opacity: 1;
}

.avatar-img:hover {
  transform: scale(1.08) rotateZ(5deg);
  border-color: rgba(127, 255, 166, 0.6);
  box-shadow: 0 0 60px rgba(127, 255, 166, 0.6),
    0 0 120px rgba(46, 204, 64, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.2);
}

@keyframes avatarShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Professional Status Indicator */
.avatar-status {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(
    135deg,
    rgba(46, 204, 64, 0.15) 0%,
    rgba(127, 255, 166, 0.1) 100%
  );
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(127, 255, 166, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 40px rgba(46, 204, 64, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.avatar-status:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), 0 0 60px rgba(46, 204, 64, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #2ecc40 0%, #27ae60 100%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(46, 204, 64, 0.8),
    inset 0 0 5px rgba(255, 255, 255, 0.3);
  animation: professionalPulse 2s ease-in-out infinite;
}

@keyframes professionalPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 15px rgba(46, 204, 64, 0.8),
      inset 0 0 5px rgba(255, 255, 255, 0.3);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(46, 204, 64, 1),
      inset 0 0 8px rgba(255, 255, 255, 0.5);
  }
}

.status-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 10px rgba(127, 255, 166, 0.3);
  letter-spacing: 0.5px;
}

/* =====================
   PROFESSIONAL SPACE HERO TEXT
====================== */
.hero-text {
  text-align: left;
  position: relative;
  z-index: 10;
}

.hero-text::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: radial-gradient(
    ellipse at center,
    rgba(127, 255, 166, 0.02) 0%,
    transparent 60%
  );
  border-radius: 20px;
  z-index: -1;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #7fffa6 20%,
    #2ecc40 40%,
    #27ae60 60%,
    #7fffa6 80%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(127, 255, 166, 0.3);
  letter-spacing: -1px;
  line-height: 1.1;
  animation: titleShimmer 8s ease-in-out infinite alternate;
  position: relative;
}

.hero-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: titleSweep 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes titleShimmer {
  0% {
    filter: brightness(1) contrast(1);
    transform: translateY(0px);
  }
  100% {
    filter: brightness(1.2) contrast(1.1);
    transform: translateY(-2px);
  }
}

@keyframes titleSweep {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  font-weight: 400;
  text-shadow: 0 0 20px rgba(127, 255, 166, 0.2);
  max-width: 600px;
  letter-spacing: 0.3px;
  position: relative;
}

.hero-subtitle::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(127, 255, 166, 0.6) 20%,
    rgba(46, 204, 64, 0.8) 50%,
    rgba(127, 255, 166, 0.6) 80%,
    transparent 100%
  );
  border-radius: 2px;
  animation: subtitleAccent 3s ease-in-out infinite alternate;
}

@keyframes subtitleAccent {
  0% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  100% {
    opacity: 0.8;
    transform: scaleY(1);
  }
}

/* Professional CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.cta-primary {
  background: linear-gradient(
    135deg,
    rgba(46, 204, 64, 0.9) 0%,
    rgba(39, 174, 96, 0.9) 50%,
    rgba(127, 255, 166, 0.9) 100%
  );
  color: white;
  border-color: rgba(127, 255, 166, 0.3);
  box-shadow: 0 8px 25px rgba(46, 204, 64, 0.3),
    0 0 40px rgba(127, 255, 166, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(46, 204, 64, 0.4),
    0 0 60px rgba(127, 255, 166, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(127, 255, 166, 0.5);
}

.cta-secondary {
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.1) 0%,
    rgba(46, 204, 64, 0.05) 100%
  );
  color: rgba(127, 255, 166, 0.9);
  border-color: rgba(127, 255, 166, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 40px rgba(127, 255, 166, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-secondary:hover {
  background: linear-gradient(
    135deg,
    rgba(127, 255, 166, 0.2) 0%,
    rgba(46, 204, 64, 0.1) 100%
  );
  border-color: rgba(127, 255, 166, 0.6);
  color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), 0 0 60px rgba(127, 255, 166, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* =====================
   RESPONSIVE SPACE HERO DESIGN
====================== */

/* Large Desktop */
@media (max-width: 1400px) {
  .hero-content {
    max-width: 1200px;
    gap: 3rem;
  }

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

/* Desktop */
@media (max-width: 1200px) {
  .hero-content {
    max-width: 1000px;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

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

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

  .avatar-img {
    width: 120px;
    height: 120px;
  }
}

/* Tablet */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1rem;
    max-width: 800px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

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

  .hero-cta {
    justify-content: center;
  }

  .avatar-img {
    width: 100px;
    height: 100px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #home {
    padding: 0 1rem;
  }

  .hero-content {
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .hero-title {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .cta-primary,
  .cta-secondary {
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
  }

  .avatar-img {
    width: 80px;
    height: 80px;
  }

  .avatar-status {
    padding: 0.6rem 1rem;
    border-radius: 20px;
  }

  .status-text {
    font-size: 0.8rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-content {
    gap: 1rem;
    padding: 1rem 0.5rem;
  }

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

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

  .avatar-img {
    width: 70px;
    height: 70px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 0.8rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .avatar-img {
    width: 60px;
    height: 60px;
  }

  .avatar-status {
    padding: 0.4rem 0.8rem;
  }

  .status-dot {
    width: 6px;
    height: 6px;
  }
}

/* Footer Main Content */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Brand Column */
.footer-brand {
  grid-column: span 1;
}

.brand-header {
  margin-bottom: 1.5rem;
}

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

.logo-icon {
  font-size: 2.5rem;
  animation: planet-rotate 10s linear infinite;
}

@keyframes planet-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.logo-text h3 {
  font-size: 1.4rem;
  color: #2ecc40;
  margin: 0;
  font-weight: 700;
}

.logo-text p {
  font-size: 0.9rem;
  color: #b2f7cc;
  margin: 0;
}

.brand-description {
  color: #a0d4b5;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Links Column */
.footer-links {
  grid-column: span 1;
}

.links-title {
  font-size: 1.2rem;
  color: #2ecc40;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.group-title {
  font-size: 0.9rem;
  color: #27ae60;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.link-list li {
  margin-bottom: 0.5rem;
}

.link-list a {
  color: #b2f7cc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: block;
  padding: 0.2rem 0;
}

.link-list a:hover {
  color: #2ecc40;
  transform: translateX(5px);
}

/* Tech Column */
.footer-tech {
  grid-column: span 1;
}

.tech-title {
  font-size: 1.2rem;
  color: #2ecc40;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.tech-categories {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.tech-category {
  margin-bottom: 1rem;
}

.category-name {
  font-size: 0.9rem;
  color: #27ae60;
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(46, 204, 64, 0.1);
  color: #2ecc40;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  border: 1px solid rgba(46, 204, 64, 0.2);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(46, 204, 64, 0.2);
  transform: translateY(-1px);
}

/* Contact Column */
.footer-contact {
  grid-column: span 1;
}

.contact-title {
  font-size: 1.2rem;
  color: #2ecc40;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  padding: 0.5rem 0;
}

.contact-icon {
  font-size: 1.1rem;
  color: #2ecc40;
}

.contact-text {
  color: #b2f7cc;
  font-size: 0.9rem;
}

.social-title {
  font-size: 0.9rem;
  color: #27ae60;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  background: rgba(46, 204, 64, 0.1);
  border: 1px solid rgba(46, 204, 64, 0.2);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-item:hover {
  background: rgba(46, 204, 64, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 64, 0.3);
}

.social-icon {
  font-size: 1.1rem;
}

.social-label {
  font-size: 0.85rem;
  color: #2ecc40;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  background: transparent;
  border: none;
  padding: 0.5rem 2rem;
}

.bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.meta-item {
  font-size: 0.85rem;
  color: #2ecc40;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

/* Final Copyright Section */
.footer-copyright-final {
  background: transparent;
  border: none;
  padding: 0.5rem 2rem;
  text-align: center;
  position: relative;
  z-index: 3;
}

.copyright-content {
  max-width: 1200px;
  margin: 0 auto;
}

.copyright-content p {
  margin: 0;
  color: #a0d4b5;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
}

.copyright-content .tagline {
  color: #b2f7cc !important;
  font-style: italic;
  margin-top: 0.2rem !important;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .footer-hero {
    padding: 2rem 1.5rem;
  }

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

  .hero-cta {
    justify-content: center;
  }

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

  .bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-meta {
    justify-content: center;
  }

  .footer-copyright-final {
    padding: 0.5rem 1.5rem;
  }

  .copyright-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer-hero {
    padding: 2rem 1rem;
  }

  .footer-main {
    padding: 2rem 1rem;
  }

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

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

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .avatar-img {
    width: 100px;
    height: 100px;
  }

  .footer-copyright-final {
    padding: 1rem;
  }

  .copyright-content p {
    font-size: 0.8rem;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-plant {
    font-size: 1.8rem;
  }

  .footer-plant:hover {
    transform: scale(1.2) rotate(8deg);
  }

  .plant-1 {
    left: 1%;
    top: 25%;
  }
  .plant-2 {
    left: 0.5%;
    top: 65%;
  }
  .plant-3 {
    right: 1%;
    top: 35%;
  }
  .plant-4 {
    right: 0.5%;
    top: 75%;
  }
  .plant-5 {
    left: 2%;
    top: 90%;
  }
}

/* ====== Mobile Responsive for Footer ====== */
@media (max-width: 480px) {
  .footer {
    padding: 3rem 0 0;
  }

  .footer-content {
    padding: 0 1rem;
  }

  .footer-main {
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .footer-title {
    font-size: 1.6rem;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-bottom {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-link {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .social-text {
    display: none;
  }

  .footer-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .stat-item {
    padding: 0.8rem 0.3rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .footer-copyright {
    padding: 1.5rem 0;
  }

  .copyright-content p {
    font-size: 0.8rem;
  }

  .decoration-line {
    width: 2rem;
  }
}
