/* =========================================
   RESET & BASE STYLES
   ========================================= */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;      /* WARNA LATAR BELAKANG BODY  */
  color: #4b2506;           /* WARNA TEKS UTAMA BODY */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================================
   NAVBAR — DESKTOP
   ========================================= */

.navbar {
  width: 100%;
  background: #fff;             /* WARNA LATAR NAVBAR */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.navbar-content {
  width: 90%;
  max-width: 1300px;
  height: 75px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-area img {
  width: 45px;
  height: 45px;
  object-fit: cover;
}

.logo-text {
  font-size: 22px;              /* UKURAN FONT NAMA LOGO NAVBAR */
  font-weight: 700;
  color: #8B3F0A;               /* WARNA TEKS NAMA LOGO NAVBAR */
  white-space: nowrap;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 30px;
  margin-right: auto;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: #222;                  /* WARNA TEKS MENU NAVBAR */
  font-size: 14px;              /* UKURAN FONT MENU NAVBAR */
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}

.menu a:hover { color: #D96B00; }  /* WARNA MENU SAAT DI-HOVER */

.menu a.active {
  color: #D96B00;               /* WARNA MENU AKTIF (halaman saat ini) */
  font-weight: 600;
  border-bottom: 2px solid #D96B00; /* WARNA GARIS BAWAH MENU AKTIF */
  padding-bottom: 3px;
}

.btn-daftar {
  background: #D96B00;          /* WARNA TOMBOL DAFTAR DI NAVBAR */
  color: #fff;                  /* WARNA TEKS TOMBOL DAFTAR */
  text-decoration: none;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;              /* UKURAN FONT TOMBOL DAFTAR */
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-daftar:hover { background: #b85d00; } /* WARNA TOMBOL DAFTAR SAAT HOVER */

/* =========================================
   HERO SECTION — PERBAIKAN UTAMA
   ========================================= */

.hero {
  width: 100%;
  height: 100vh;
  background: url('foto/hero.jpg') center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
}

/* OVERLAY - untuk efek terang */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.55); /* KECERAHAN OVERLAY HERO — angka 0.55 = 55% putih, ubah 0.0–1.0 */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  width: 100%;
  padding: 20px;
}

.hero-content h1 {
  font-size: 58px;              /* UKURAN FONT JUDUL BESAR DI HERO */
  color: #8b3200;               /* WARNA JUDUL BESAR DI HERO */
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 17px;              /* UKURAN FONT PARAGRAF DI HERO */
  color: #444;                  /* WARNA PARAGRAF DI HERO */
  line-height: 1.8;
  margin-bottom: 30px;
}

/* =========================================
   HERO BUTTONS
   ========================================= */

.hero-btn,
.hero-button {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-orange {
  background: #c96410;          /* WARNA TOMBOL UTAMA (Explore Portfolio) */
  color: #fff;                  /* WARNA TEKS TOMBOL UTAMA */
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;              /* UKURAN FONT TOMBOL UTAMA */
  transition: background 0.3s;
}

.btn-primary:hover,
.btn-orange:hover { background: #a85200; } /* WARNA TOMBOL UTAMA SAAT HOVER */

.btn-secondary,
.btn-outline {
  background: transparent;
  border: 1.5px solid #8b3200; /* WARNA BORDER TOMBOL OUTLINE */
  color: #8b3200;               /* WARNA TEKS TOMBOL OUTLINE */
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;              /* UKURAN FONT TOMBOL OUTLINE */
  transition: 0.3s;
}

.btn-secondary:hover,
.btn-outline:hover {
  background: #8b3200;          /* WARNA BACKGROUND TOMBOL OUTLINE SAAT HOVER */
  color: #fff;
}

/* =========================================
   BUTTONS UMUM
   ========================================= */

.btn-wa {
  background: #10c910;
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-wa:hover { background: #0ca50c; }

.btn-order {
  background: #c35a00;
  color: #fff;
  border: none;
  padding: 13px 40px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-order:hover { background: #a04900; }

/* =========================================
   SECTION UMUM
   ========================================= */

.section { padding: 60px 5%; }

.section-title {
  font-size: 38px;              /* UKURAN FONT JUDUL SECTION JASA */
  color: #8b3200;               /* WARNA JUDUL SECTION JASA */
  margin-bottom: 35px;
}

/* =========================================
   TENTANG
   ========================================= */

.tentang {
  width: 90%;
  max-width: 1200px;
  margin: 110px auto 80px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.tentang-img {
  flex: 1;
  text-align: center;
}

.tentang-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}

.tentang-text { flex: 1; }

.tentang-text h2 {
  font-size: 40px;              /* UKURAN FONT JUDUL TENTANG — ganti di sini */
  color: #8b3200;               /* WARNA JUDUL TENTANG — ganti di sini */
  margin-bottom: 20px;
}

.tentang-text p {
  font-size: 16px;              /* UKURAN FONT PARAGRAF TENTANG */
  line-height: 1.9;
  color: #555;                  /* WARNA TEKS PARAGRAF TENTANG */
  margin-bottom: 14px;
}

.tentang-banner-section { margin-top: 75px; }

.banner-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.tentang-section { padding: 100px 0; }

.tentang-title {
  font-size: 48px;
  color: #8B3F0A;
  margin-bottom: 30px;
}

.tentang-box { margin-top: 60px; }

.tentang-box h2 {
  font-size: 36px;
  color: #8B3F0A;
  margin-bottom: 18px;
}

.tentang-box p,
.tentang-box li {
  font-size: 16px;
  line-height: 2;
  color: #555;
}

.tentang-box ol { margin-left: 25px; }

/* =========================================
   PORTFOLIO
   ========================================= */

.portfolio,
.portfolio-section {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0 100px;
  text-align: center;
}


.sub-title {
  letter-spacing: 10px;
  color: #d7b9a2;
  margin-bottom: 10px;
  font-size: 16px;
}

.big-text {
  text-align: center;
  color: #d7b7a4;
  letter-spacing: 10px;
  margin-bottom: 25px;
  font-size: 38px;
}

.portfolio h2,
.portfolio-title {
  font-size: 42px;              /* UKURAN FONT JUDUL PORTFOLIO */
  color: #8b3200;               /* WARNA JUDUL PORTFOLIO */
  margin-bottom: 50px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.portfolio-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.portfolio-card:hover { transform: translateY(-8px); }

.portfolio-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
}

.portfolio-info { padding: 20px; }

.portfolio-info span {
  color: #d96d00;               /* WARNA LABEL KATEGORI CARD PORTFOLIO */
  font-size: 13px;              /* UKURAN FONT LABEL KATEGORI PORTFOLIO */
  font-weight: 600;
}

.portfolio-info h3 {
  margin: 8px 0;
  font-size: 20px;              /* UKURAN FONT JUDUL CARD PORTFOLIO */
  color: #5c2400;               /* WARNA JUDUL CARD PORTFOLIO */
}

.portfolio-info p {
  font-size: 14px;              /* UKURAN FONT DESKRIPSI CARD PORTFOLIO */
  line-height: 1.7;
  color: #555;                  /* WARNA TEKS DESKRIPSI CARD PORTFOLIO */
}

.title-area h2 {
  font-size: 42px;
  color: #8b3200;
}

.line {
  width: 200px;
  height: 3px;
  background: #8b3200;
  margin: 16px 0;
}

.title-area p {
  width: 75%;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 40px;
  color: #555;
}

/* =========================================
   JASA / CARD GRID — PERBAIKAN UTAMA
   ========================================= */

/* ========================================= */
/* CARD JASA */
/* ========================================= */

.card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:28px;
}

.card{
    background:#fff;

    border-radius:10px;

    padding:15px;

    box-shadow:0 2px 10px rgba(0,0,0,0.08);

    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    width:100%;
    height:210px;

    object-fit:cover;

    border-radius:8px;

    margin-bottom:15px;
}

.card h3{
    font-size:19px;             /* UKURAN FONT JUDUL CARD JASA */

    margin-bottom:12px;

    color:#222;                 /* WARNA JUDUL CARD JASA */
}

.card ul{
    padding-left:18px;

    margin-bottom:15px;
}

.card ul li{
    font-size:13px;

    line-height:1.8;

    color:#555;
}

.harga{
    font-size:13px;             /* UKURAN FONT LABEL "Estimasi Harga" */

    color:#d46d00;              /* WARNA LABEL "Estimasi Harga" */

    font-weight:600;

    margin-bottom:5px;
}

.nominal{
    font-size:21px;             /* UKURAN FONT ANGKA HARGA */

    font-weight:700;

    margin-bottom:15px;
}

/* ========================================= */
/* BUTTON CARD */
/* ========================================= */

.btn{
    width:100%;

    border:none;

    padding:11px;

    border-radius:5px;

    font-size:13px;
    font-weight:600;

    cursor:pointer;

    margin-bottom:10px;

    transition:0.3s;
}

.btn-admin{
    background:#00bf00;
    color:#fff;
}

.btn-admin:hover{
    background:#009f00;
}

.btn-pesan{
    background:#d46d00;
    color:#fff;
}

.btn-pesan:hover{
    background:#b95d00;
}

/* =========================================
   KEGIATAN
   ========================================= */

.kegiatan,
.kegiatan-section {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 80px;
}

.kegiatan h2,
.kegiatan-section h2 {
  font-size: 40px;              /* UKURAN FONT JUDUL SECTION KEGIATAN */
  color: #8b3200;               /* WARNA JUDUL SECTION KEGIATAN */
  margin-bottom: 40px;
}

.kegiatan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.kegiatan-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.kegiatan-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.kegiatan-body { 
  padding: 22px; 
}

.kegiatan-body h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.kegiatan-body p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.kegiatan-body a {
  color: #c96410;
  text-decoration: none;
  font-weight: 500;
}

/* Halaman kegiatan.html */
.kegiatan-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.kegiatan-item img {
  width: 400px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.kegiatan-content h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 18px;
}

.kegiatan-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.kegiatan-content a {
  text-decoration: none;
  color: #d96d00;
  font-weight: 600;
  transition: 0.3s;
}

.kegiatan-content a:hover { color: #8b3200; }

/* =========================================
   CTA SECTION
   ========================================= */

.cta {
  min-height: 420px;
  background: url('images/cta.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 700px;
}

.cta-content h2 {
  font-size: 48px;              /* UKURAN FONT JUDUL CTA (ajakan hubungi)*/
  margin: 16px 0 24px;
}

.cta-content a {
  background: #fff;
  color: #111;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.cta-content a:hover { background: #f0e0d0; }

/* =========================================
   TEAM
   ========================================= */

.team-section { padding: 80px 0; }

.team-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.team-text { flex: 1; }

.team-text h2 {
  font-size: 42px;
  color: #8B3F0A;
  margin-bottom: 20px;
}

.team-text p {
  font-size: 16px;
  line-height: 2;
  color: #555;
}

.team-img {
  width: 420px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
}

.leader {
  text-align: center;
  margin-bottom: 80px;
}

.leader h2 {
  font-size: 42px;
  color: #8B3F0A;
}

.leader h3 {
  margin: 16px 0;
  font-size: 22px;
  color: #555;
}

.leader img {
  width: 350px;
  border-radius: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.team-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-card h2 {
  color: #8B3F0A;
  font-size: 32px;
}

.team-card h3 {
  margin: 14px 0 22px;
  color: #555;
  font-size: 20px;
}

.team-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.divisi {
  background: white;
  padding: 50px;
  border-radius: 20px;
}

.divisi h2 {
  color: #8B3F0A;
  font-size: 38px;
  margin-bottom: 28px;
}

.divisi ul { margin-left: 20px; }

.divisi li {
  font-size: 16px;
  line-height: 2;
  color: #555;
}

/* =========================================
   DETAIL JASA
   ========================================= */

.back-home {
  width: 80%;
  max-width: 900px;
  margin: 40px auto 0;
}

.back-home a {
  text-decoration: none;
  color: #c35a00;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.back-home a:hover { color: #8f3f00; }

.detail {
  width: 80%;
  max-width: 900px;
  margin: 60px auto;
}

.detail h2 {
  font-size: 46px;
  margin-bottom: 14px;
  color: #1f1f1f;
}

.detail-top {
  display: flex;
  gap: 30px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.detail-top span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
}

.detail-top i { color: #d81b60; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input-box { display: flex; flex-direction: column; }

.input-box label {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.input-box input,
.input-box textarea,
.input-box select {
  width: 100%;
  padding: 13px 15px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #f4f4f4;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.input-box input:focus,
.input-box textarea:focus,
.input-box select:focus {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(201,100,16,0.25);
}

.input-box textarea { resize: vertical; min-height: 110px; }

.full { grid-column: 1 / 3; }

.syarat-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 5px;
}

.syarat-box p { font-size: 14px; line-height: 1.6; }

.syarat-box a {
  color: #c35a00;
  text-decoration: none;
  font-weight: 600;
}

.btn-container {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

/* =========================================
   FORM DAFTAR
   ========================================= */

.form-section {
  width: 90%;
  max-width: 860px;
  margin: 80px auto;
  background: #fff;
  padding: 45px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-logo { text-align: center; margin-bottom: 30px; }

.form-logo img { width: 80px; margin-bottom: 14px; }

.form-logo h1 {
  font-size: 36px;              /* UKURAN FONT JUDUL HALAMAN DAFTAR */
  color: #FF5C00;               /* WARNA JUDUL HALAMAN DAFTAR */
  line-height: 1.3;
}

.judul-form {
  text-align: center;
  font-size: 22px;
  color: #d96d00;
  margin-bottom: 40px;
}

.input-group { margin-bottom: 22px; display: flex; flex-direction: column; }

.input-group label {
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 600;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  background: #fafafa;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.input-group textarea { min-height: 110px; resize: vertical; }

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: #d96d00;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(217,109,0,0.12);
}

.divisi-box,
.wa-box,
.payment-box {
  padding: 22px;
  border-radius: 10px;
  margin-bottom: 26px;
}

.divisi-box { background: #fff5eb; border-left: 5px solid #d96d00; }
.wa-box { background: #eafff1; border-left: 5px solid #00b35c; }
.payment-box { background: #fff8eb; border-left: 5px solid #ff9900; }

.divisi-box h3, .wa-box h3, .payment-box h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.divisi-box p, .wa-box p, .payment-box p {
  line-height: 1.8;
  color: #555;
  font-size: 14px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.checkbox-group input { width: 17px; height: 17px; flex-shrink: 0; }

.submit-btn {
  width: 100%;
  background: #d96d00;          /* WARNA TOMBOL KIRIM PENDAFTARAN */
  color: #fff;                  /* WARNA TEKS TOMBOL KIRIM */
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 15px;              /* UKURAN FONT TOMBOL KIRIM */
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover { background: #b85d00; } /* WARNA TOMBOL KIRIM SAAT HOVER */

/* =========================================
   MAP
   ========================================= */

.map-section {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.map-section iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: #FF5C00;          /* WARNA BACKGROUND FOOTER */
  color: #fff;                  /* WARNA TEKS FOOTER */
  padding: 60px 5% 24px;
  margin-top: 80px;
}

.footer-container,
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo img,
.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.footer-logo h1,
.footer-logo h2,
.footer-brand h2 { font-size: 26px; } /* UKURAN FONT NAMA LOGO DI FOOTER */

.footer h3 {
  margin-bottom: 16px;
  font-size: 18px;              /* UKURAN FONT JUDUL KOLOM FOOTER */
}

.footer p {
  line-height: 1.8;
  font-size: 14px;              /* UKURAN FONT TEKS ISI FOOTER */
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }

.footer ul li a,
.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer ul li a:hover,
.footer-menu a:hover { opacity: 0.8; }

.footer-space { margin-top: 12px; }

.bank-img { width: 160px; margin-top: 12px; }

.copyright,
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  opacity: 0.85;
}

/* =========================================
   RESPONSIVE — TABLET (max 1100px)
   ========================================= */

@media (max-width: 1100px) {

  /* Grid: 4 kolom → 2 kolom */
  .jasa-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-flex { flex-direction: column; }
  .team-img { width: 100%; max-width: 420px; }
  .team-grid { grid-template-columns: 1fr; }

  .kegiatan-item { flex-direction: column; }
  .kegiatan-item img { width: 100%; height: 240px; }

  .tentang { flex-direction: column; gap: 24px; }

  .menu { gap: 16px; }
  .menu a { font-size: 13px; }

}

/* =========================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================= */

@media (max-width: 768px) {

  /* --- NAVBAR --- */
  .navbar { padding: 0; }

  .navbar-content {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 4% 0;
  }

  .logo-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: calc(100% - 100px);
  }

  .logo-area img { width: 34px; height: 34px; }
  .logo-text { font-size: 16px; }

  .btn-daftar {
    position: absolute;
    top: 12px;
    right: 4%;
    font-size: 12px;
    padding: 8px 14px;
    width: auto;
    margin: 0;
  }

  /* Menu scrollable horizontal */
  .menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    gap: 0;
    margin: 10px 0 0;
    padding: 8px 0 8px;
    border-top: 1px solid #f0e0d0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .menu::-webkit-scrollbar { display: none; }

  .menu a {
    font-size: 12px;
    padding: 4px 10px;
    white-space: nowrap;
    width: auto;
    display: inline-block;
    flex-shrink: 0;
    border-bottom: none;
  }

  /* --- HERO --- */
  .hero {
    min-height: 100vh;
    padding: 130px 20px 60px;
  }

  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 14px; }

  .hero-btn,
  .hero-button {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-orange,
  .btn-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* --- TENTANG --- */
  .tentang {
    flex-direction: column;
    margin: 90px auto 50px;
    gap: 24px;
  }

  .tentang-img {
    order: 1;
    text-align: center;
  }

  .tentang-img img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    max-width: none;
  }

  .tentang-text { order: 2; }
  .tentang-text h2 {
    font-size: 26px;
    text-align: center;
  }

  .banner-img { height: 220px; }

  /* --- PORTFOLIO & JASA --- */
  .portfolio-grid,
  .jasa-container,
  .card-grid { grid-template-columns: 1fr; }

  .big-text { font-size: 20px; letter-spacing: 4px; }
  .title-area p { width: 100%; font-size: 14px; }

  .title-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  /* --- KEGIATAN --- */
  .kegiatan-grid { grid-template-columns: 1fr; }

  .kegiatan-item {
    flex-direction: column;
  }

  .kegiatan-item img { width: 100%; height: 200px; }

  /* --- CTA --- */
  .cta { min-height: 300px; padding: 50px 20px; }
  .cta-content h2 { font-size: 28px; }

  /* --- TEAM --- */
  .team-flex { flex-direction: column; gap: 28px; }
  .team-img { width: 100%; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card img { height: 260px; }
  .leader img { width: 100%; max-width: 260px; }

  .divisi { padding: 24px 18px; }
  .tentang-title { font-size: 32px; }
  .team-text h2,
  .leader h2,
  .divisi h2 { font-size: 28px; }

  /* --- DETAIL JASA --- */
  .detail { width: 94%; margin: 50px auto; }
  .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
  .btn-container { flex-direction: column; }
  .btn-wa,
  .btn-order { width: 100%; justify-content: center; }
  .detail-top { flex-direction: column; gap: 12px; }

  /* --- FORM DAFTAR --- */
  .form-section { margin: 50px 4%; padding: 28px 18px; }
  .form-logo h1 { font-size: 26px; }

  /* --- MAP --- */
  .map-section { width: 95%; margin: 40px auto; }
  .map-section iframe { height: 300px; }

  /* --- FOOTER --- */
  .footer-container,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer { padding: 50px 5% 20px; margin-top: 60px; }

  /* --- SECTION --- */
  .section { padding: 40px 5%; }
  .kegiatan-section { padding: 40px 5% 60px; }
  .kegiatan-section h2 { font-size: 28px; }

}

/* =========================================
   RESPONSIVE — SMALL MOBILE (max 400px)
   ========================================= */

@media (max-width: 400px) {

  .hero-content h1 { font-size: 26px; }
  .logo-text { font-size: 14px; }
  .logo-area img { width: 28px; height: 28px; }
  .menu a { font-size: 11px; padding: 4px 7px; }
  .btn-daftar { font-size: 11px; padding: 7px 11px; }

}

/* BANNER SECTION */
.tentang-banner-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY PUTIH */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.55);
    z-index: 1;
}

.pesan-sekarang {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background-color: #FF9800;    /*WARNA TOMBOL PESAN SEKARANG  */
  color: white;                 /* WARNA TEKS TOMBOL PESAN SEKARANG */
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;              /* UKURAN FONT TOMBOL PESAN SEKARANG */
  margin-top: 10px;
}

.pesan-sekarang:hover {
  background-color: #E68900;    /* WARNA TOMBOL PESAN SEKARANG SAAT HOVER */
}