/* ===========================
        GOOGLE FONT
=========================== */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");

/* ===========================
        RESET CSS
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Manrope", sans-serif;
  background-color: #f8fafc;
  overflow-x: hidden;
}

/* ===========================
        GLOBAL SYSTEM
=========================== */
.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===========================
        NAVBAR
=========================== */
.logo img {
  width: 300px;
  height: auto;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: transparent;
  backdrop-filter: blur(15px);
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h2 {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  color: #163d73;
}

.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-menu a {
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #1f6aec;
}

.contact-button a {
  background-color: #090909;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  transition: 0.3s;
}

.contact-button a:hover {
  background-color: #1f6aec;
}

.navbar.active {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

/* ===========================
        HERO SECTION
=========================== */
.hero {
  width: 100%;
  min-height: 90vh;
  padding-top: 140px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/images/about.png") no-repeat center center/cover;
  position: relative;
}

.hero .container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.hero-content {
  text-align: center;
  background: rgba(15, 23, 42, 0.95);
  padding: 35px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  max-width: 850px;
  margin: auto;
}

.hero-subtitle {
  display: block;
  color: #38bdf8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 20px auto;
}

.hero-button {
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.hero-card-btn {
  background-color: #0284c7;
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.hero-card-btn-2 {
  background-color: #1fec0c;
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.hero-card-btn:hover {
  background-color: #0369a1;
  transform: translateY(-3px);
}

.hero-card-btn-2:hover {
  background-color: #1cb80e;
  transform: translateY(-3px);
}

.scroll-down {
  margin-top: 15px;
  color: #cbd5e1;
}

.scroll-down span {
  font-size: 30px;
  display: block;
  margin-bottom: 5px;
  color: #0284c7;
}

.scroll-down p {
  font-size: 14px;
  letter-spacing: 2px;
}

/* TRUST INDICATOR */
.trust-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 100px 0 80px 0;
  text-align: center;
}

.trust-item h2 {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 14px;
  color: #050606;
  letter-spacing: 2px;
}

/* ===========================
        ABOUT US
=========================== */
.about {
  padding: 100px 0;
  text-align: center;
  background: #0f172a;
}

.about span {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #88aded;
}

.about h2 {
  font-size: 48px;
  line-height: 1.4;
  margin-top: 25px;
  color: white;
  font-weight: 700;
}

.about p {
  max-width: 750px;
  width: 90%;
  margin: 25px auto;
  font-size: 22px;
  line-height: 1.8;
  color: white;
  font-weight: 400;
}

.about-btn {
  padding: 18px 35px;
  border-radius: 12px;
  font-size: 18px;
  color: #94a3b8;
}

/* ===========================
   ABOUT PAGE
=========================== */

.back-home {
    display: inline-block;
    margin: 110px 8% 20px;
    color: #0284c7;
    font-weight: 600;
    font-size: 16px;
}

.about-hero {
    width: 90%;
    max-width: 1100px;
    margin: 20px auto 50px;
    padding: 80px 50px;
    text-align: center;
    background: #0f172a;
    border-radius: 25px;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.about-hero span {
    color: #38bdf8;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
}

.about-hero h1 {
    margin: 20px 0;
    font-size: 50px;
    line-height: 1.2;
}

.about-hero p {
    max-width: 750px;
    margin: auto;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.8;
}

.about-image {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 70px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.company-profile,
.vision-mission,
.our-values {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.company-profile h2,
.vision-mission h2,
.our-values h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #0f172a;
}

.company-profile p,
.vision-mission p,
.vision-mission li {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision,
.mission {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission ul {
    padding-left: 20px;
}

.mission li {
    list-style: disc;
    margin-bottom: 10px;
}

.our-values {
    text-align: center;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    padding: 35px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card h3 {
    margin-bottom: 15px;
    color: #0284c7;
    font-size: 22px;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

.contact-cta {
    width: 90%;
    max-width: 1000px;
    margin: 100px auto;
    padding: 70px 40px;
    text-align: center;
    background: #0f172a;
    border-radius: 25px;
    color: white;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-cta p {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #1fec0c;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: #1cb80e;
}


/* ===========================
   ABOUT MOBILE
=========================== */

@media (max-width: 768px) {

    .about-hero {
        padding: 50px 25px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero p {
        font-size: 15px;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .values-container {
        grid-template-columns: 1fr;
    }

    .company-profile h2,
    .vision-mission h2,
    .our-values h2 {
        font-size: 28px;
    }

    .company-profile p,
    .vision-mission p,
    .vision-mission li {
        font-size: 15px;
    }

    .contact-cta {
        padding: 50px 25px;
    }

    .contact-cta h2 {
        font-size: 27px;
    }
}

.why-title {
  text-align: center;
}

.why-title span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #1f6aec;
}

.why-title h2 {
  font-size: 52px;
  font-weight: 700;
  margin-top: 25px;
  line-height: 1.4;
  color: black;
}

.why-title p {
  max-width: 750px;
  width: 90%;
  margin: 25px auto 80px;
  font-size: 22px;
  line-height: 1.8;
  color: black;
}

/* ===========================
        WHY CHOOSE US
=========================== */
.why-us {
  max-width: 1200px;
  margin: auto;
  padding: 140px 30px;
  text-align: center;
}

.why-us span {
  color: #1f6aec;
  font-size: 28px;
  letter-spacing: 5px;
  font-weight: 600;
}

.why-us h2 {
  font-size: 55px;
  margin: 25px 0;
}

.why-us > p {
  max-width: 850px;
  width: 90%;
  margin: auto;
  font-size: 22px;
  line-height: 1.8;
  color: #666;
}

.why-us-container {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.why-card {
  padding: 50px 40px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.438);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.677);
}

.why-card i {
  font-size: 40px;
  color: black;
  margin-bottom: 25px;
}

.why-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.why-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* ===========================
        SERVICES
=========================== */
.services {
  padding: 120px 30px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services span {
  font-size: 28px;
  letter-spacing: 5px;
  color: #1f6aec;
  font-weight: 600;
}

.services h2 {
  font-size: 55px;
  margin: 30px 0;
  line-height: 1.3;
}

.services p {
  max-width: 800px;
  width: 90%;
  margin: auto;
  font-size: 22px;
  line-height: 1.8;
  color: #666;
}

.services-container {
  margin-top: 100px;
}

.service-box {
  padding: 50px 0;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
}

.service-box span {
  font-size: 22px;
  color: #1f6aec;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 38px;
  margin-bottom: 25px;
  line-height: 1.4;
}

.service-box p {
  max-width: 700px;
  line-height: 1.9;
  color: #666;
  margin: 0;
  display: block;
  text-align: left;
  padding-bottom: 20px;
  border-bottom: 2px solid #97aab3;
}

/* ===========================
        PORTFOLIO
=========================== */
.portfolio {
  width: 100%;
  margin: auto;
  padding: 120px 30px;
  text-align: center;
  background: #0f172a;
}

.portfolio span {
  color: #88aded;
  letter-spacing: 5px;
  font-size: 25px;
  font-weight: 600;
}

.portfolio h2 {
  font-size: 55px;
  margin: 30px 0;
  color: white;
}

.portfolio p {
  max-width: 800px;
  width: 90%;
  margin: auto;
  font-size: 22px;
  line-height: 1.8;
  color: white;
}

.portfolio-box {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.portfolio-box img {
  width: 50%;
  border-radius: 25px;
  object-fit: cover;
}

.portfolio-content {
  width: 50%;
}

.portfolio-content h3 {
  font-size: 42px;
  margin-bottom: 30px;
}

.portfolio-content p {
  font-size: 20px;
  line-height: 1.9;
  color: #666;
}

/* ===========================
        GALLERY SECTION
=========================== */
.gallery-section {
    padding: 100px 0;
    text-align: center;
    
}

.gallery-section span {
    color: #38bdf8;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 12px;
}

.gallery-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gallery-section .section-description {
    max-width: 650px;
    width: 90%;
    margin: 0 auto 40px;
    color: #050506;
    font-size: 18px;
    line-height: 1.6;
}

/* TOMBOL FILTER MODERN */
.gallery-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: #38bdf8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.2);
}

.gallery-btn.active {
    background: #0284c7;
    border-color: #0284c7;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(2, 132, 199, 0.4);
}

/* GRID FOTO GALLERY */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.gallery-image {
    overflow: hidden;
    border-radius: 16px;
}

.gallery-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* RESPONSIVE HP (MOBILE) */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 15px;
    }

    .gallery-section h2 {
        font-size: 26px;
    }

    .gallery-section .section-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .gallery-menu {
        gap: 8px;
        margin-bottom: 30px;
    }

    .gallery-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-image img {
        height: 220px;
    }
}

/* ===========================
        CLIENTS & LOCATION
=========================== */
.clients-header {
  width: 100%;
  background-color: #0f172a;
  margin: auto;
  padding: 140px 30px;
  text-align: center;
}

.clients-header span {
  color: #38bdf8;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: 2px;
}

.clients-header h2 {
  color: #ffffff;
  font-size: 36px;
  margin-top: 10px;
}

.clients-image {
  width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 60px auto 0;

    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(5, 5, 5, 0.20);
}

.clients-image-new {
     width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 30px auto 0;


    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(5, 5, 5, 0.20);
}
.location-section {
  padding: 100px 0 60px 0;
  text-align: center;
  background-color: #0f172a;
}

.location-section span {
  color: #38bdf8;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
}

.location-section h2 {
  font-size: 55px;
  margin: 20px 0;
  color: #ffffff;
}

.location-section p {
  max-width: 650px;
  width: 90%;
  margin: 0 auto 60px;
  color: #cbd5e1;
  line-height: 1.8;
}

.map-container {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 100px auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

/* ===========================
        CONTACT
=========================== */

.contact {
  max-width: 1200px;
  margin: auto;
  padding: 120px 30px;
  text-align: center;
}

.contact span {
  color: #1f6aec;
  letter-spacing: 5px;
  font-size: 28px;
  font-weight: 600;
}

.contact h2 {
  font-size: 48px;
  margin: 30px 0;
  line-height: 1.4;
}

.contact p {
  max-width: 800px;
  margin: auto;
  font-size: 20px;
  line-height: 1.9;
  color: #666;
}

.contact-information {
  margin-top: 45px;
  line-height: 2.3;
}

.contact-information h4 {
  font-size: 24px;
  font-weight: 600;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 20px 45px;
  background: rgb(3, 243, 3);
  color: white;
  text-decoration: none;
  border-radius: 15px;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: translateY(-5px);
  background: #44e435;
}

/* ===========================
        FOOTER
=========================== */
.footer {
  background: #0f172a;
  color: white;
  padding: 80px 0 30px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 350px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #cbd5e1;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #1f6aec;
}

.footer-bottom {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 14px;
}

/* ================================
   LANGUAGE SELECTOR
================================ */

.language-selector {
    position: relative;
    margin-left: 10px;
}

#languageBtn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

#languageBtn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;

    display: none;
    flex-direction: column;

    min-width: 150px;

    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;

    padding: 6px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    z-index: 9999;
}

.language-menu.active {
    display: flex;
}

.language-menu button {
    width: 100%;

    background: transparent;
    border: none;

    color: white;

    padding: 10px 12px;

    text-align: left;

    border-radius: 6px;

    font-size: 14px;

    cursor: pointer;

    transition: 0.2s ease;
}

.language-menu button:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* =========================
   HIDE GOOGLE TRANSLATE UI
========================= */

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

body {
    top: 0 !important;
    position: static !important;
}

html {
    margin-top: 0 !important;
}

/* ===================================================
   RESPONSIVE MOBILE BREAKPOINT (KHUSUS LAYAR HP <= 768px)
====================================================== */
@media (max-width: 768px) {
  /* --- RESET OVERFLOW HP --- */
  body {
    overflow-x: hidden;
  }

  .container {
    width: 92%;
  }

  /* --- NAVBAR MOBILE --- */
  .logo img {
    width: 180px !important; /* Perkecil logo di HP */
  }

  .nav-menu {
    display: none; /* Sembunyikan menu mendatar di HP biar gak numpuk */
  }

  /* --- HERO MOBILE --- */
  .hero {
    padding-top: 110px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-content {
    padding: 20px 15px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .hero-button {
    flex-direction: column;
    gap: 10px;
  }

  .hero-card-btn,
  .hero-card-btn-2 {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
  }

  /* --- TRUST INDICATOR (STATISTIK) --- */
  .trust-indicator {
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
  }

  .trust-item h2 {
    font-size: 32px;
  }

  /* --- SECTIONS TITLE & PARAGRAPH --- */
  .about,
  .why-us,
  .services,
  .portfolio,
  .contact,
  .location-section {
    padding: 50px 15px;
  }

  .about h2,
  .why-title h2,
  .why-us h2,
  .services h2,
  .portfolio h2,
  .location-section h2 {
    font-size: 26px;
  }

  .about p,
  .why-title p,
  .why-us > p,
  .services p,
  .portfolio p {
    width: 100% !important;
    font-size: 15px;
    line-height: 1.6;
  }

  /* --- WHY US MOBILE (1 KOLOM) --- */
  .why-us-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .why-card {
    padding: 25px 20px;
  }

  /* --- SERVICES MOBILE --- */
  .services-container {
    margin-top: 40px;
  }

  .service-box h3 {
    font-size: 24px;
  }

  /* --- PORTFOLIO MOBILE --- */
  .portfolio-box {
    flex-direction: column;
    gap: 25px;
    margin: 40px auto;
    padding: 0;
  }

  .portfolio-box img,
  .portfolio-content {
    width: 100% !important;
  }

  .portfolio-content h3 {
    font-size: 24px;
  }

  .portfolio-content p {
    font-size: 14px;
  }

  /* --- GALLERY MOBILE --- */
  .gallery-container {
    grid-template-columns: 1fr;
  }

  /* --- MAP MOBILE --- */
  .map-container iframe {
    height: 300px;
  }

  /* --- FOOTER MOBILE --- */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand p,
  .footer-brand img {
    margin: 0 auto 15px;
  }
}

/* ===========================
    HAMBURGER MENU STYLING
=========================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Pengaturan Tampilan di HP */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Tampilkan icon garis 3 di HP */
    }

    .nav-menu {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        padding: 20px 0;
        gap: 20px;
        text-align: center;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    /* Saat Hamburger Diklik / Aktif */
    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}