* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    width: 100%;
    background: black;
    font-family: 'Fredoka', sans-serif;
    overflow-x: hidden;
  }
  
  /* Scrolling container */
  body {
    overflow-y: auto;
    position: relative;
  }
  
  /* Fullscreen Contact Content */
  .contact-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 10px 100px; /* leave space for footer */
    position: relative;
    z-index: 1;
  }
  
  /* Fixed background */
  .animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../../images/smak-tech-computers/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(0px);
    z-index: -2;
  }
  
  .animated-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }
  
  .content {
    text-align: center;
    color: white;
    max-width: 700px;
    width: 90%;
    padding: 20px;
    z-index: 2;
  }
  
  .logo {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  
  .company-name-img {
    display: block;
    margin: 20px auto;
    max-width: 90%;
    height: auto;
  }
  
  .tagline {
    font-size: 1.1rem;
    margin-top: 10px;
    line-height: 1.5;
  }
  
  .services {
    font-size: 0.95rem;
    color: #ccc;
  }
  
  /* Contact Grid */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .contact-grid a {
    font-size: 22px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    background: rgb(248, 193, 40);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-weight: bold; */
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .contact-grid a:hover {
    background: rgb(255, 255, 255);
    transform: scale(1.1);
  }
  
  .icon {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .logo { width: 140px; height: 140px; }
    .contact-grid { grid-template-columns: 1fr; }
  }
  
  @media (max-width: 480px) {
    .logo { width: 120px; height: 120px; }
    .contact-grid a {
      font-size: 20px;
      padding: 12px;
    }
  }
  
 /* Common for both floating menus */
.floating-menu {
  position: fixed;
  bottom: 60px;
  z-index: 1000;
}

/* Left menu */
.left-menu {
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Right menu */
.right-menu {
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Options hidden by default */
.floating-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

/* Options when shown */
.floating-options.show {
  max-height: 300px;
  opacity: 1;
  pointer-events: auto;
}

/* Buttons inside floating menus */
.float-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: white;
  border-radius: 30px;
  text-decoration: none;
  color: black;
  min-width: 160px;
  gap: 10px;
  transition: transform 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.float-btn:hover {
  transform: scale(1.05);
}

/* Avatar Image */
.float-btn img {
  width: 70px;
  height: 70px;
  border-radius: 5%;
  object-fit: fill;
}

/* Text */
.float-btn .name {
  flex: 1;
  /* font-weight: bold; */
  font-size: 14px;
  text-align: left;
}

/* Main Button */
.main-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #00ff04;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.main-button img {
  width: 40px;
  height: 40px;
}

  
  /* Base footer styles */
  .footer {
    position: fixed; /* Make it fixed */
    bottom: 0; /* Stick to bottom */
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    color: #ffffff;
    font-size: 0.9rem;
    z-index: 100; /* Above most elements */
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    padding: 10px 0; /* Some vertical spacing */
  }
  
  
  /* Normal state of footer links */
  .footer a {
    color: #ffffff; /* Default text color */
    text-decoration: none; /* No underline by default */
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  /* Hover state for footer links */
  .footer a:hover {
    color: #00a6ff; /* Change to bright blue on hover */
    text-decoration: underline;
    transform: scale(1.1); /* Slight zoom effect */
  }
  
  /* Animated flashing effect for mobile view */
  @keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
  }
  
  /* Mobile-specific styles */
  @media (max-width: 767px) {
    .footer a {
      animation: flash 1s infinite; /* Flashing animation every 1 second */
    }
  }
  
  .footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff; /* Color of the underline */
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .footer a:hover::after {
    transform: scaleX(1); /* Show underline on hover */
  }