* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* HEADER */
.navbar {
  height: 60px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 29px;
  position: fixed; 
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 60px;
  object-fit: contain;
}


.logo {
  font-weight: bold;
  font-size: 20px;
}

/* HAMBURGER */
.hamburger {
    width: 30px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #000;
    margin: 6px 0;
}

/* ================= POPUP MENU ================= */
.menu-popup {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: 0.4s ease;
    z-index: 999;
}

/* ISI MENU */
.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    background: #ffffff;
    padding: 40px 25px;
}

/* LINK MENU */
.menu-content a {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    margin-bottom: 25px;
}

/* TOMBOL CLOSE */
.close-btn {
    font-size: 30px;
    cursor: pointer;
    display: block;
    text-align: right;
    margin-bottom: 40px;
}
/* SECTION */
.contact {
  min-height: 100vh;
  padding: 60px;
  background: linear-gradient(135deg, #e5a3a3, #3b2a5a);
}

/* GRID UTAMA */
.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}


/* FORM AREA */
.contact-form-area h2 {
  margin-top: 30px;
  padding-top: 30px;
  position: relative;
  top: 30px;
  display: flex;
  align-items: flex-end;
}

.contact-form-area p {
  color: #eee;
  margin-top: 20px;
  padding-top: 20px;
  position: relative;
  top: 20px;
  display: flex;
  height: 50px;
  font-size: 20px;
}

.contact-form-area h3 {
  margin-bottom: 12px;
  margin-top: 20px;
  padding-top: 20px;
  position: relative;
  top: 20px;
  line-height: 30px;
  color: #eee;

  
}

.contact-form-area form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-top: 20px;
  padding-top: 20px;


}

/* FORM */
/* Baris form */
.form-row {
    display: flex;
    gap: 14px;              /* jarak diperkecil */
    margin-bottom: 14px;
}

/* Grup */
.form-group {
    flex: 1;
    min-width: 0;           /* PENTING: cegah kolom turun */
}

/* Label lebih kecil */
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 13px;
    color: #333;
}

/* Input lebih ramping */
.form-control {
    width: 100%;
    height: 38px;           /* tinggi diperkecil */
    padding: 6px 10px;      /* padding diperkecil */
    font-size: 13px;
    border-radius: 6px;     /* lebih kecil */
    border: 1px solid #ccc;
    background-color: #fff;
    box-sizing: border-box; /* WAJIB */
    transition: all 0.2s ease;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row > select,
.form-row > .form-group {
  flex: 1;
}

/* Styling agar konsisten */
.form-row select,
.form-row input {
  width: 100%;
  height: 48px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

/* Biar label email sejajar atas */
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.form-row select {
    background-color: #fff;
    cursor: pointer;
}

/* Container input */
.form-group {
    margin-bottom: 20px;
}

/* Label */
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

/* Textarea Pesan */
.form-control.pesan {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #fafafa;
    resize: vertical;
    transition: all 0.3s ease;
}

/* Efek saat diklik */
.form-control.pesan:focus {
    outline: none;
    border-color: #e63946;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

/* Placeholder */
.form-control.pesan::placeholder {
    color: #aaa;
    font-style: italic;
}

button {
  width: 100%;
  padding: 14px;
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* RIGHT */
.contact-info {
  background:  #ffffff;
  margin-top: 50px;
  padding: 25px;
  border-radius: 12px;
}

.footer {
  background: #f5f7fb;
  padding: 60px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.footer-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

/* Tautan Cepat */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Informasi Kontak */
.footer-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-item small {
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

.footer-item p {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.5;
}

.icon {
  font-size: 18px;
  line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .bottom-info {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 30px 20px;
  }
}
