/* ====== [Start] F O O T E R SECTION ============ */
/* #region */
.footer {
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, #8B0000, #d71e1e);
  color: white;
  overflow: hidden;
  padding-top: 60px;
}
.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 0;
  opacity: 0.3;
}
.footer-overlay {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-section {
  flex: 1;
  min-width: 220px;
  padding: 35px;
}
.footer-brand img.footer-logo-img {
  width: 80px;
  margin-bottom: 1rem;
}
.footer-brand h2 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}
.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.footer p, .footer li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: #ffe6e6;
}
.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-btn {
  padding: 0.6rem 1.2rem;
  background: white;
  color: #a30000;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.footer-btn:hover {
  background: #ffe5e5;
  transform: scale(1.05);
}
.footer-btn.line {
  background: #06c755;
  color: white;
}
.footer-map iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.footer-bottom {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}



.copy-popup {
    visibility: hidden; 
    min-width: 150px;
    background-color: #313131;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 12px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
}

.copy-popup.show {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 480px) {
    .footer-content {
        gap: 0;
    }
    .footer-buttons {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    .footer-btn {
        padding: 0.5rem 0.9rem;
        font-weight: bold;
    }
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }
    .footer-bottom p {
        font-size: 0.8rem;
    }

}

@media (min-width: 481px) and (max-width: 1024px) { 
    
    .footer-content {
        gap: 0;
    }
    .footer-buttons {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    .footer-btn {
        padding: 0.5rem 0.9rem;
        font-weight: bold;
    }
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 25px;
    }
    .footer-content > div {
        flex: 1 1 calc(50% - 1rem);
        box-sizing: border-box;
    }
    .footer-section {
        justify-content: left;
        justify-items: left;
    }
    .footer-section a {
        font-size: 16px;
    }
    .footer-section p {
        font-size: 16px;
    }

}


/* #endregion */
/* = = = = = [End] F O O T E R SECTION = = = = = */