/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

/* Reset & Dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'DM Sans', sans-serif;
  color: #000000;
  padding-top: 80px;
  background-color: #ffffff;
}
img {
  max-width: 100%;
  height: auto;
}
h1, h2, h3, p, a {
  font-family: 'DM Sans', sans-serif;
}

/* Container Centered */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Section */
.footer {
  background: #101241;
  color: white;
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}

.footer .container {
  max-width: 1000px;
  margin: auto;
  padding: 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section.contact {
  flex: 1 1 40%;
  max-width: 350px;
}
.footer-section:not(.contact) {
  flex: 1 1 20%;
  min-width: 10px;
}
.footer-section {
  flex: 1 1 40%;
  max-width:100px;
}


.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

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

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

/* App Button */
.app-buttons {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  background: #000000;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: 0.3s;
}

.app-button:hover {
  background: #ffffff;
  color: #000;
}


/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #000000;
  border-radius: 50%;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-link i {
  font-size: 15px;
}

.social-link:hover {
  background-color: #ffffff;
  color: #000000;
}


/* Logo & Copyright */
.logo-copyright {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo-copyright .logo {
  background:  rgba(16, 18, 65, 1);
  color: #101241;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.logo-copyright .copyright {
  color: #ccc;
}

.logo-copyright .copyright a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.logo-copyright .copyright a:hover {
  text-decoration: underline;
}

.logoso img{
  max-width: 100px;
  height: auto;
  margin-left: 250px;
}

.whatsapp-card {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 10px 30px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-card:hover {
  transform: translateY(-2px);
}

.whatsapp-float {
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}






@media screen and (max-width:1024px){
  .footer-bottom {
    padding-top: 20px;
}
  .social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}
.logoso img {
    width: 100px;
    height: auto;
    margin-left: 100px;
  }
.whatsapp-card {
  padding: 10px 20px;
}

.whatsapp-float {
  width: 30px;
  height: 30px;
}

}

@media screen and (max-width:768px)and (min-width:481px){
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 1rem;
}
.footer-section h3
 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}
.footer-section p{
    font-size: 0.7rem;
}

.font-section ul li a{
  font-size: 0.6px;
}
.footer-bottom{
  padding-top: 1rem;
}
  .social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}
.logoso img {
    width: 100px;
    height: auto;
    margin-left: 30px;
  }
  .logo-copyright .copyright {
    color: #ccc;
    font-size: 13px;
}

.whatsapp-card {
  padding: 10px 20px;
}

.whatsapp-float {
  width: 25px;
  height: 25px;
}

}

@media screen and (max-width:480px){
  .footer {
    padding: 1rem 0 2rem;
}
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
.footer-section.contact {
    flex: 1 1 10%;
    width: 50%;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.2rem 0.3rem;
    background: #000000;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.6rem;
    transition: 0.3s;
}
.app-button svg{
  width: 10px;
}
.app-buttons {
        flex-direction: row;
        align-items: left;
        width: 100px;
    }
.footer-section:not(.contact)
 {
    flex: 1 1 20%;
    min-width: 10px;
}
  .footer-section h3{
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}
.footer-section p{
    font-size: 0.5rem;
}
.footer-section ul{
  margin-top: 28px;
}
.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 9px;
}
.footer-bottom{
  padding-top: 2rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.social-links {
    display: flex;
    gap: 0.2rem;
}
.social-links svg {
    width: 18px;
    height: 18px;
}
.logoso img {
    width: 70%;
    height: auto;
}
.logo-copyright{
    color: #ccc;
    display: flex;
    flex-wrap: nowrap;
    font-size: 0.4rem;
    gap: 0.1rem;
    margin-top: -35px;
}
.social-link {
  width: 25px;
  height: 25px;
  margin-top: -30px;
}

.social-link i {
  font-size: 10px;
}
.logoso img {
  margin-top: 10px;
    width: 60px;
    height: auto;
    margin-left: 10px;
}

.whatsapp-card {
  padding: 5px 10px;
  right: 20px;
  bottom: 20px;
}

.whatsapp-float {
  width: 25px;
  height: 25px;
}
}
