.footer {
  background: transparent; /* Let FooterRippleBackground handle all coloring */
  color: white;
  padding: 0;
  margin-top: 0;
  position: relative;
  width: 100%; /* Use 100% instead of 100vw to prevent horizontal scroll */
  max-width: 100%;
  overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Preload and cache SVG assets for zero-load flicker */
.fish,
.plant {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  /* Force hardware acceleration for smooth animations */
}

/* Subtle Water Light Ripple Effect - Applied to Wave Section */
.footer-wave::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/ripple-texture.png') repeat;
  background-size: 300px 300px;
  mix-blend-mode: screen;
  opacity: 0.4;
  animation: rippleFlow 25s linear infinite;
  z-index: 1;
  pointer-events: none;
  will-change: background-position;
  transform: translateZ(0);
  /* Hardware acceleration for smooth animation */
}

/* Subtle Water Light Ripple Effect - Applied to Footer Background */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    url('/assets/images/ripple-texture.png') repeat,
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255,255,255,0.1) 0%, transparent 50%);
  background-size: 300px 300px, 200px 200px, 150px 150px, 180px 180px;
  mix-blend-mode: overlay;
  opacity: 0.3;
  animation: rippleFlow 30s linear infinite reverse;
  z-index: 1;
  pointer-events: none;
  will-change: background-position;
  transform: translateZ(0);
  /* Hardware acceleration for smooth animation */
}

@keyframes rippleFlow {
  0% { background-position: 0 0; }
  100% { background-position: 300px 300px; }
}


/* Wavy Divider - Enhanced with Smooth Curves and Gradient Fill */
.footer-wave {
  position: absolute;
  bottom: calc(100% - 20px); /* sit at top of footer */
  left: 0;
  width: 100%; /* Use 100% to prevent horizontal overflow */
  height: 200px; /* slightly taller for smoother crest */
  overflow: hidden; /* clip to prevent horizontal scroll */
  transform: rotate(180deg);
  z-index: 2;
  pointer-events: none;
}

.footer-wave-svg {
  width: 100%;
  height: 100%;
  animation: waveContainerFloat 10s ease-in-out infinite;
  min-width: 100%;
}

@keyframes waveContainerFloat {
  0%, 100% {
    transform: rotate(180deg) translateY(0px);
  }
  50% {
    transform: rotate(180deg) translateY(-6px);
  }
}

/* Individual wave motion */
.wave {
  transform-origin: center;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.wave-back {
  opacity: 1.0;
  animation: waveMove1 14s linear infinite;
}

.wave-mid {
  opacity: 1.0;
  animation: waveMove2 10s linear infinite;
}

.wave-front {
  opacity: 1.0;
  animation: waveMove3 8s linear infinite;
}

/* Gentle horizontal "flow" for natural water movement */
@keyframes waveMove1 {
  0% {
    transform: translateX(0) translateY(2px);
  }
  50% {
    transform: translateX(-30px) translateY(-2px);
  }
  100% {
    transform: translateX(0) translateY(2px);
  }
}

@keyframes waveMove2 {
  0% {
    transform: translateX(0) translateY(-1px);
  }
  50% {
    transform: translateX(30px) translateY(3px);
  }
  100% {
    transform: translateX(0) translateY(-1px);
  }
}

@keyframes waveMove3 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-60px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Optional: on hover, make it more dynamic */
.footer-wave:hover .wave {
  animation-duration: 5s;
}

/* Wave reflection effect */
.wave-reflection {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0,231,255,0.25), transparent 70%);
  filter: blur(12px);
  animation: reflectionMove 12s ease-in-out infinite;
}

@keyframes reflectionMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(40px);
  }
}

/* Cloud Reflection Layer */
.cloud-reflection {
  position: absolute;
  top: 10px;
  left: 0;
  width: 200%;
  height: 100px;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 35%),
    radial-gradient(ellipse at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
    radial-gradient(ellipse at 90% 20%, rgba(255, 255, 255, 0.07) 0%, transparent 45%);
  animation: cloudsMove 120s linear infinite;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

@keyframes cloudsMove {
  from { 
    transform: translateX(0); 
  }
  to { 
    transform: translateX(-50%); 
  }
}

/* Animated Bubbles Container */
.bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: rise 6s linear infinite;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

@keyframes rise {
  0% { 
    transform: translateY(0) scale(1); 
    opacity: 1; 
  }
  100% { 
    transform: translateY(-300px) scale(1.5); 
    opacity: 0; 
  }
}

/* Swimming Fish Layer */
.footer-fish-layer {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

/* Fish Bubble Animations */
.fish-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.bubble {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.3) 70%, transparent 100%);
  border-radius: 50%;
  animation: bubbleFloat 3s ease-out infinite;
}

.bubble-left {
  left: 15%;
  bottom: 88px;
  animation-delay: 0s;
}

.bubble-left:nth-child(2) {
  animation-delay: 1.5s;
}

.bubble-left:nth-child(3) {
  animation-delay: 3s;
}

.bubble-right {
  right: 15%;
  bottom: 80px;
  animation-delay: 0.8s;
}

.bubble-right:nth-child(5) {
  animation-delay: 2.3s;
}

.bubble-right:nth-child(6) {
  animation-delay: 3.8s;
}

.bubble-center {
  left: 50%;
  bottom: 75px;
  animation-delay: 2s;
}

.bubble-center:nth-child(8) {
  animation-delay: 3.5s;
}

.bubble-small {
  left: 30%;
  bottom: 95px;
  width: 6px;
  height: 6px;
  animation-delay: 1.2s;
}

.bubble-small:nth-child(10) {
  animation-delay: 2.8s;
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-30px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-60px) scale(1.2);
    opacity: 0;
  }
}

.fish {
  position: absolute;
  width: 60px;
  opacity: 1.0;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  filter: brightness(1);
  will-change: transform, filter;
}

.fish-left {
  bottom: 100px;
  left: 5%;
  width: 40px;
  animation: hoverLeft 3.2s ease-in-out infinite, finFlutter1 0.8s ease-in-out infinite;
}

.fish-right {
  bottom: 110px;
  right: 6%;
  width: 45px;
  animation: hoverRight 4s ease-in-out infinite, finFlutter2 0.9s ease-in-out infinite;
}

.fish-center {
  bottom: 105px;
  left: 50%; /* start from center of the screen */
  margin-left: -17.5px; /* half of width (35px) to truly center */
  width: 35px;
  animation: hoverCenter 4.8s ease-in-out infinite, finFlutter3 0.7s ease-in-out infinite;
}

.fish-small {
  bottom: 115px;
  right: 10%;
  width: 38px;
  animation: hoverSmall 4.5s ease-in-out infinite, finFlutter4 1s ease-in-out infinite;
}

/* Enhanced Fish Interaction - Change Direction on Hover */
.fish:hover {
  transform: scaleX(-1) translateX(20px) scale(1.1);
  transition: transform 0.4s ease;
  animation-play-state: paused;
  filter: brightness(1.2) contrast(1.1);
}

.fish-left:hover {
  transform: scaleX(-1) translateX(20px) scale(1.1) scaleY(-1);
}

.fish-right:hover {
  transform: scaleX(1) translateX(-20px) scale(1.1) scaleY(-1);
}

.fish-center:hover {
  transform: scaleX(-1) translateX(20px) scale(1.1) scaleY(-1);
}

.fish-small:hover {
  transform: scaleX(1) translateX(-20px) scale(1.1) scaleY(-1);
}

/* Gentle hovering animations - fish hanging around plants */
@keyframes hoverLeft {
  0%, 100% {
    transform: translate(0px, 0px) scaleX(1) scaleY(-1) rotate(0deg);
  }
  25% {
    transform: translate(8px, -5px) scaleX(1.02) scaleY(-0.98) rotate(3deg);
  }
  50% {
    transform: translate(5px, 8px) scaleX(0.98) scaleY(-1.02) rotate(-2deg);
  }
  75% {
    transform: translate(-5px, -3px) scaleX(1.01) scaleY(-0.99) rotate(2deg);
  }
}

@keyframes hoverRight {
  0%, 100% {
    transform: translate(0px, 0px) scaleX(-1) scaleY(-1) rotate(0deg);
  }
  30% {
    transform: translate(-10px, 6px) scaleX(-1.03) scaleY(-0.97) rotate(-4deg);
  }
  60% {
    transform: translate(6px, -8px) scaleX(-0.97) scaleY(-1.03) rotate(3deg);
  }
  85% {
    transform: translate(-4px, 4px) scaleX(-1.02) scaleY(-0.98) rotate(-2deg);
  }
}

@keyframes hoverCenter {
  0%, 100% {
    transform: translate(0px, 0px) scaleX(1) scaleY(-1) rotate(0deg);
  }
  20% {
    transform: translate(-6px, -8px) scaleX(1.01) scaleY(-0.99) rotate(5deg);
  }
  50% {
    transform: translate(10px, 5px) scaleX(0.99) scaleY(-1.01) rotate(-4deg);
  }
  80% {
    transform: translate(-7px, 6px) scaleX(1.02) scaleY(-0.98) rotate(3deg);
  }
}

@keyframes hoverSmall {
  0%, 100% {
    transform: translate(0px, 0px) scaleX(-1) scaleY(-1) rotate(0deg);
  }
  35% {
    transform: translate(7px, -6px) scaleX(-1.03) scaleY(-0.97) rotate(-5deg);
  }
  65% {
    transform: translate(-8px, 7px) scaleX(-0.98) scaleY(-1.02) rotate(4deg);
  }
  90% {
    transform: translate(5px, -4px) scaleX(-1.01) scaleY(-0.99) rotate(-3deg);
  }
}

/* Fin flutter animations - using filter for subtle fin movement effect */
@keyframes finFlutter1 {
  0%, 100% {
    filter: brightness(1) contrast(1) saturate(1);
  }
  25% {
    filter: brightness(1.08) contrast(1.02) saturate(1.1);
  }
  50% {
    filter: brightness(0.98) contrast(1.01) saturate(1.05);
  }
  75% {
    filter: brightness(1.05) contrast(1.03) saturate(1.08);
  }
}

@keyframes finFlutter2 {
  0%, 100% {
    filter: brightness(1) contrast(1) saturate(1);
  }
  20% {
    filter: brightness(1.06) contrast(1.03) saturate(1.08);
  }
  60% {
    filter: brightness(0.97) contrast(1.02) saturate(1.06);
  }
  80% {
    filter: brightness(1.07) contrast(1.01) saturate(1.09);
  }
}

@keyframes finFlutter3 {
  0%, 100% {
    filter: brightness(1) contrast(1) saturate(1);
  }
  30% {
    filter: brightness(1.09) contrast(1.02) saturate(1.12);
  }
  70% {
    filter: brightness(0.96) contrast(1.03) saturate(1.04);
  }
}

@keyframes finFlutter4 {
  0%, 100% {
    filter: brightness(1) contrast(1) saturate(1);
  }
  15% {
    filter: brightness(0.98) contrast(1.01) saturate(1.05);
  }
  45% {
    filter: brightness(1.1) contrast(1.03) saturate(1.1);
  }
  85% {
    filter: brightness(1.04) contrast(1.02) saturate(1.07);
  }
}








/* Responsive adjustments for fish */
@media (max-width: 768px) {
  .fish {
    width: 45px;
    opacity: 0.7;
  }
  
  .fish-left {
    bottom: 78px;
  }
  
  .fish-right {
    bottom: 60px;
  }
}

@media (max-width: 480px) {
  .fish {
    width: 35px;
    opacity: 0.6;
  }
  
  .fish-left {
    bottom: 73px;
  }
  
  .fish-right {
    bottom: 45px;
  }
}

/* Floating Plants Layer */
.footer-plants {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2; /* below fish so fish can swim around */
  pointer-events: none;
}

.footer-plants .plant-left {
  position: absolute;
  bottom: 0; /* anchored to bottom-left corner */
  left: 24px;
  width: 210px;   /* 75% bigger (was 120px) */
  opacity: 0.9;
  animation: plantFloatLeft 5s ease-in-out infinite alternate;
}

.footer-plants .plant-right {
  position: absolute;
  bottom: 0; /* anchored to bottom-right corner */
  right: 24px;
  width: 260px; /* doubled size as requested */
  opacity: 0.9;
  animation: plantFloatRight 6s ease-in-out infinite alternate;
}

/* Gentle floating animation to match waves */
@keyframes plantFloatLeft {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes plantFloatRight {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* Optional: Match the wave's motion with horizontal sway */
@keyframes plantSway {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(3px, -8px) rotate(1deg); }
  100% { transform: translate(-3px, 0px) rotate(-1deg); }
}

.footer-plants .plant-left,
.footer-plants .plant-right {
  animation: plantSway 6s ease-in-out infinite;
}

/* Responsive adjustments for plants */
@media (max-width: 768px) {
  .footer-plants {
    height: 100px;
  }
  
  .plant {
    width: 90px;
    opacity: 0.6;
  }
}

@media (max-width: 480px) {
  .footer-plants {
    height: 80px;
  }
  
  .plant {
    width: 70px;
    opacity: 0.5;
  }
}


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

/* Main Footer Content */
.footer-main {
  display: flex;
  align-items: flex-start;
  padding: 2rem 0 1rem 0;
  gap: 2rem;
  position: relative;
  z-index: 2; /* Ensure content appears above the wave but below sticky elements */
}

.footer-brand {
  flex: 1;
  min-width: 300px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.brand-line {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-year {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.brand-description {
  margin-top: 1rem;
}

.brand-description p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0.25rem 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex: 2;
}

.footer-column {
  flex: 1;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}

.footer-column h5 {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0.75rem 0 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-link:hover {
  color: white;
  transform: translateX(4px);
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 8px;
}

/* Contact Action Bar */
.footer-contact-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  gap: 2rem;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 1.3rem;
  color: white;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #3b82f6;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Footer Logo Flower */
.footer-logo-flower {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-logo-flower:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.flower-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: flowerFloat 3s ease-in-out infinite;
}

@keyframes flowerFloat {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.05);
  }
}

/* Modern Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.btn-footer {
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.footer-bottom-left p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #3b82f6;
}

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

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.social-link i {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}


/* Responsive Design */
@media (max-width: 900px) {
  .footer-wave {
    bottom: calc(100% - 40px);
    left: 50%;
    width: 160vw;
    height: 180px;
    margin-left: -80vw;
  }
  
  .footer-wave-svg {
    height: 180px;
  }
  
  .footer-main {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0 1rem 0;
  }
  
  .footer-brand {
    min-width: auto;
    text-align: center;
  }
  
  .brand-line {
    font-size: 3rem;
  }
  
  .brand-year {
    font-size: 2rem;
  }
  
  .footer-links {
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-contact-bar {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .contact-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    width: 100%;
    margin-left: 0;
    padding-top: 40px;
  }
  
  /* Mobile Performance Optimization - Hide complex animations */
  .footer-wave {
    display: block;
    width: 180vw; /* keep extra width for drift on mobile */
    margin-left: -90vw;
    height: 140px;
  }
  
  .footer-fish-layer {
    display: block;
  }
  
  .fish-bubbles {
    display: block;
  }
  
  .footer-plants {
    display: block;
  }
  
  .cloud-reflection {
    display: block;
  }
  
  .bubble-container {
    display: block;
  }
  
  /* Hide ripple effects on mobile for better performance */
  .footer::before {
    display: none !important;
  }
  
  .footer-wave::after {
    display: none !important;
  }
  
  
  .container {
    padding: 0 1rem;
  }
  
  .footer-main {
    padding: 1rem 0;
    gap: 1rem;
  }
  
  /* Minimize brand section */
  .footer-brand {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .brand-text {
    margin-bottom: 0.75rem;
  }
  
  .brand-line {
    font-size: 1.75rem;
    line-height: 1.1;
  }
  
  .brand-year {
    font-size: 1.25rem;
  }
  
  .brand-description {
    font-size: 0.85rem;
  }
  
  .brand-description p {
    margin: 0.25rem 0;
  }
  
  /* Hide most footer columns, keep only essential ones */
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  /* Hide last 3 columns on mobile */
  .footer-column:nth-child(3),
  .footer-column:nth-child(4),
  .footer-column:nth-child(5) {
    display: none;
  }
  
  .footer-column {
    min-width: auto;
  }
  
  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-column ul {
    gap: 0.5rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
    padding: 0.25rem 0;
  }
  
  /* Simplify contact bar */
  .footer-contact-bar {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  /* Hide individual contact items, keep only buttons */
  .contact-item {
    display: none;
  }
  
  .contact-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  
  .btn-footer {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Minimal footer bottom */
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .footer-bottom-left p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .social-links {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 30px;
  }
  
  .footer-main {
    padding: 0.75rem 0;
    gap: 1rem;
  }
  
  /* Even smaller brand on tiny screens */
  .brand-line {
    font-size: 1.5rem;
  }
  
  .brand-year {
    font-size: 1.1rem;
  }
  
  .brand-description {
    font-size: 0.8rem;
  }
  
  /* Stack footer columns */
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .footer-column h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-link {
    font-size: 0.8rem;
  }
  
  /* Compact contact bar */
  .footer-contact-bar {
    padding: 1.25rem 0 0.75rem;
  }
  
  .contact-actions {
    gap: 0.65rem;
  }
  
  .btn-footer {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  
  /* Minimal footer bottom */
  .footer-bottom {
    padding: 0.875rem 0 1.25rem;
  }
  
  .footer-bottom-left p {
    font-size: 0.7rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 1rem;
  }
}