/* ================= RESET & GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 8%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-menu a {
  font-size: 17px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ff6b6b;
}

/* CONTACT BUTTON */
.btn-contact {
  font-size: 16px;
  padding: 10px 22px;
  border-radius: 20px;
  background: #ff6b6b;
  color: #fff !important;
}

/* ================= HERO ================= */
.about-hero {
  position: relative;
  height: 70vh;
  background: url("https://images.unsplash.com/photo-1552733407-5d5c46c3bb3b")
    center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.about-hero-content {
  position: relative;
  max-width: 500px;
  z-index: 2;
}

.subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.about-hero h1 {
  font-size: 48px;
  margin: 10px 0;
}

.about-hero p {
  font-size: 16px;
  line-height: 1.6;
}

/* WAVE */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  fill: #fff;
}

/* ================= CONTENT ================= */
.about-content {
  padding: 80px 8%;
  background: #fff;
}

.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.tag {
  color: #ff6b6b;
  font-size: 14px;
  font-weight: 600;
}

.about-content h2 {
  font-size: 36px;
  margin: 10px 0 20px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.features {
  display: grid;
  gap: 20px;
}

.feature h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.feature p {
  font-size: 14px;
}

.image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ================= FOOTER ================= */
.info-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: #fff;
    padding: 40px 30px;
    margin: -80px auto 60px; 
    max-width: 1100px;
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    position: relative;
    z-index: 20;
}

.info-item { text-align: center; }
.info-item .icon i { font-size: 40px; color: #ff7a00; margin-bottom: 15px; }
.info-item h4 { color: #222; margin-bottom: 10px; font-weight: 700; }
.info-item p { color: #666; font-size: 0.9rem; line-height: 1.6; }
.footer { background: #e96532; color: #fff; padding: 80px 8% 20px; }

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-box h4 { margin-bottom: 20px; letter-spacing: 1px; }
.footer-contact-list a { color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-map iframe { width: 100%; height: 180px; border-radius: 12px; border: none; }

.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons a { 
    width: 40px; height: 40px; background: #fff; color: #e96532; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
}

.floating-wa-icon {
    position: fixed;
    bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: #25D366; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; z-index: 9999;
}

/* ================= FLOATING WHATSAPP ================= */
.floating-wa-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.floating-wa-icon img {
  width: 34px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .nav-menu {
    gap: 20px;
  }
}
