/* ======================= SONIT GROUP FOOTER STYLE ======================= */
.footer {
  background: linear-gradient(135deg, #e30613 0%, #850000 100%);
  color: #fff;
  padding: 40px 20px 25px;
  font-family: 'Roboto', sans-serif;
  border-top: 3px solid #b80000;
  margin-top: 40px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

/* Layout container */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* âœ… vertically align everything */
  gap: 20px;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Left copyright text */
.footer-left {
  font-size: 0.95rem;
  opacity: 0.95;
  line-height: 1; /* âœ… keeps text vertically centered */
  flex: 1;
}

/* Right side socials */
.footer-right {
  display: flex;
  align-items: center; /* âœ… vertically center icons */
  gap: 18px;
  justify-content: flex-end;
  flex-shrink: 0;
  line-height: 1;
}

.footer-right a {
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center; /* ensures icon alignment */
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-right a:hover {
  transform: scale(1.25);
  color: #ffe0e0;
}

/* Contact Section - left aligned */
.footer-contact {
  text-align: left;
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 25px 40px;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ffeaea;
  white-space: pre-line;
}

.footer-contact h2 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

/* ======================= Responsive ======================= */

/* Tablets & smaller screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center; /* âœ… keeps icons level with text */
    padding: 0 20px;
    gap: 12px;
  }

  .footer-left,
  .footer-right {
    flex: none;
  }

  .footer-left {
    font-size: 0.9rem;
    text-align: left;
  }

  .footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
  }

  .footer-contact {
    text-align: left;
    padding: 25px 20px;
  }
}

/* Very small mobile phones */
@media (max-width: 400px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    justify-content: center;
  }

  .footer-right {
    margin-top: 6px;
  }
}
/* Hide by default */
.mobile-nav {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0;
    z-index: 9999;
  }

  .mobile-nav .nav-item {
    text-align: center;
    flex: 1;
    color: #333;
    font-size: 0.8rem;
    text-decoration: none;
  }

  .mobile-nav .nav-item .icon {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2px;
  }

  .mobile-nav .nav-item.active {
    color: #e30613; /* Sonit red */
    font-weight: 600;
  }
}

/* Hide on larger screens */
@media (min-width: 769px) {
  .mobile-nav {
    display: none;
  }
}
/* Hide by default */
.mobile-nav {
  display: none;
}

/* Hide by default */
.mobile-nav {
  display: none;
}

/* ðŸ“± Modern Mobile Login Button */
@media (max-width: 768px) {
  .floating-actions-mobile {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 14px;
    z-index: 10000;
  }

  .floating-actions-mobile .fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 16px;          /* ⬆️ bigger text */
    font-weight: 600;         /* ⬆️ bolder text */
    padding: 14px 20px;       /* ⬆️ more padding */
    border-radius: 30px;      /* slightly rounder shape */
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, background 0.2s ease;
    position: relative;
  }

  .floating-actions-mobile .fab-btn:hover {
    background: #b6050e;
    transform: scale(1.08);
  }

  .floating-actions-mobile .fab-btn i {
    font-size: 18px;          /* ⬆️ bigger icons */
  }

  .floating-actions-mobile .fab-btn .count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #fff;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  }

  .floating-bell,
  .floating-track,
  .mobile-nav {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .floating-actions-mobile {
    display: none;
  }
}
