:root{
  --primary:#e02828;
  --light:#f7f8fc;
  --dark:#111;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Segoe UI',Arial,sans-serif;
  background:var(--light);
  color:#333;
}

/* ================= HEADER ================= */
header{
  background:#fff;
  padding:26px 16px;
  text-align:center;
  border-bottom:3px solid var(--primary);
}
header img{
  margin-bottom:1px;
}
header h1{
  color:var(--primary);
  margin:6px 0 4px;
}
header p{
  margin:0;
}
header small{
  display:block;
  margin-top:3px;
  color:#777;
}

/* ================= NAV ================= */
nav{
  background:var(--primary);
  padding:14px 16px;
  position:sticky;
  top:0;
  z-index:999;
  display:flex;
  justify-content:center;
  align-items:center;
}
.nav-links{
  display:flex;
  gap:24px;
}
nav a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
.hamburger{
  position:absolute;
  left:16px;
  display:none;
  font-size:26px;
  color:#fff;
  cursor:pointer;
}

/* ================= SECTION ================= */
.section{
  padding:40px 24px;   /* DIPADATKAN */
  max-width:1200px;
  margin:auto;
  text-align:center;
}
.section h2{
  color:var(--primary);
  margin-bottom:16px;
}
.section p{
  line-height:1.7;
  color:#555;
}

/* ================= GRID ================= */
.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:24px;    /* DIPADATKAN */
}

/* ================= CARD ================= */
.card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  padding-bottom:14px;
}
.card img{
  width:100%;
  height:190px;
  object-fit:cover;
}
.card h3{
  margin:12px 0 6px;
}
.card p{
  color:var(--primary);
  font-weight:600;
  margin:6px 0;
}
.card strong{
  display:block;
  margin-top:6px;
  font-size:.9rem;
}

/* INFO DALAM CARD */
.card-info{
  font-size:.85rem;
  text-align:left;
  padding:0 14px;
  color:#555;
}
.card-info p{
  display:flex;
  align-items:center;
  gap:8px;
  margin:6px 0;
}
.card-info i{
  color:#000;
  width:18px;
}

/* BUTTON */
.btn-detail{
  display:inline-block;
  margin:14px auto 0;
  padding:10px 18px;
  background:var(--primary);
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  font-size:.9rem;
}
.btn-detail:hover{
  opacity:.9;
}

/* ================= WHATSAPP FLOAT ================= */
.wa-floating{
  position:fixed;
  bottom:22px;
  right:22px;
  width:54px;
  height:54px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  z-index:999;
}

/* ================= FOOTER ================= */
footer{
  background:var(--dark);
  color:#ccc;
  padding:40px 20px 24px;   /* DIPADATKAN */
  margin-top:40px;
}
.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.5fr 1fr;
  gap:30px;
  align-items:center;
}

/* BRAND */
.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.footer-brand img{
  height:58px;
}
.footer-brand p{
  font-size:.85rem;
  line-height:1.4;
}

/* CONTACT */
.footer-contact{
  text-align:center;
  font-size:.85rem;
  line-height:1.6;
}

/* SOCIAL */
.footer-social{
  display:flex;
  justify-content:flex-end;
  gap:14px;
}
.footer-social a{
  width:36px;
  height:36px;
  border:1px solid #333;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ccc;
  position:relative;
  transition:.3s;
}
.footer-social a:hover{
  background:#fff;
}
.footer-social a.instagram:hover{color:#E1306C}
.footer-social a.facebook:hover{color:#1877F2}
.footer-social a.tiktok:hover{color:#000}

/* TOOLTIP */
.footer-social a span{
  position:absolute;
  bottom:45px;
  background:#000;
  color:#fff;
  font-size:11px;
  padding:4px 8px;
  border-radius:6px;
  opacity:0;
  transition:.3s;
  pointer-events:none;
}
.footer-social a:hover span{
  opacity:1;
}

/* FOOTER BOTTOM */
.footer-bottom{
  margin-top:26px;
  text-align:center;
  font-size:.8rem;
  color:#777;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
  .grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .hamburger{
    display:block;
  }
  .nav-links{
    position:absolute;
    top:60px;
    left:0;
    width:100%;
    background:var(--primary);
    flex-direction:column;
    display:none;
  }
  .nav-links.active{
    display:flex;
  }

  .section{
    padding:28px 16px;
  }

  .grid{
    gap:18px;
    margin-top:18px;
  }

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .footer-social{
    justify-content:center;
  }
  .footer-brand{
    justify-content:center;
  }
}

@media(max-width:480px){
  .grid{
    grid-template-columns:1fr;
  }
}
/* ==============================
   CONTACT PAGE
============================== */

/* Wrapper layout */
.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  text-align:left;
  margin-top:20px;
}

/* Judul */
.contact-wrapper h2{
  margin-bottom:18px;
  color:var(--primary);
}

/* Info kontak kiri */
.contact-info p{
  margin-bottom:16px;
  line-height:1.6;
  color:#444;
}

/* Form kanan */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  margin-bottom:14px;
  border-radius:8px;
  border:1px solid #ccc;
  font-family:inherit;
  font-size:14px;
  background:#fff;
}

.contact-form textarea{
  resize:vertical;
  min-height:120px;
}

.contact-form button{
  padding:12px 22px;
  background:var(--primary);
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s ease;
}

.contact-form button:hover{
  opacity:.9;
}

/* Map */
.contact-map{
  margin-top:0;
  padding-top:0;
}

.contact-map iframe{
  width:100%;
  height:350px;
  border:0;
  border-radius:14px;
}

/* ==============================
   RESPONSIVE CONTACT
============================== */
@media(max-width:768px){
  .contact-wrapper{
    grid-template-columns:1fr;
    gap:28px;
  }

  .contact-wrapper h2{
    text-align:center;
  }

  .contact-info,
  .contact-form{
    text-align:left;
  }
}
/* ==============================
   TRIP.COM SEARCH RESPONSIVE
============================== */
.trip-search{
  padding-top:10px;
}

.trip-iframe-wrapper{
  max-width:1000px;
  margin:0 auto;
  overflow:hidden;
  border-radius:14px;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
  background:#fff;
}

/* Desktop */
.trip-iframe-wrapper iframe{
  width:100%;
  height:200px;
  border:none;
}

/* Tablet */
@media(max-width:1024px){
  .trip-iframe-wrapper iframe{
    height:220px;
  }
}

/* Mobile */
@media(max-width:768px){
  .trip-iframe-wrapper iframe{
    height:260px;
  }
}

/* Small Mobile */
@media(max-width:480px){
  .trip-iframe-wrapper iframe{
    height:300px;
  }
}
