/* =========================================================================
   PREMIUM AWESOMED AESTHETIC - DR-APPS
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Accent based on logo gradient */
  --accent-base: #2DCAEE; /* Cyan/Blue */
  --accent-secondary: #FFB020; /* Orange */
  --gradient-main: linear-gradient(135deg, #00C6FF 0%, #0072FF 50%, #FF8A00 100%);
  --gradient-text: linear-gradient(to right, #00C6FF, #FF8A00);
  
  /* Core Colors */
  --bg-color: #030303;
  --bg-surface: #111111;
  --bg-glass: rgba(15, 15, 15, 0.4);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-main: #FFFFFF;
  --text-muted: #999999;
  
  /* Typography */
  --font-primary: 'Space Grotesk', sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;
  
  /* Custom Cursor */
  --cursor-size: 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-secondary);
  overflow-x: hidden;
  line-height: 1.5;
  cursor: none; /* We will use a custom JS cursor */
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ================== CUSTOM CURSOR ================== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  background-color: var(--accent-base);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100005; /* High enough to stay above the modal (10001) */
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, mix-blend-mode 0.3s;
  mix-blend-mode: exclusion;
}

.cursor-dot.hover-link {
  width: 60px;
  height: 60px;
  background-color: #fff;
  mix-blend-mode: exclusion;
}

/* ================== HEADINGS & TYPOGRAPHY ================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.giant-text {
  font-size: clamp(3rem, 10vw, 8rem);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 0.9;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-stroke {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.subtitle-block {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ================== LAYOUT & CONTAINERS ================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
}

.section {
  padding: 15vh 0;
  position: relative;
}

/* ================== NAVIGATION ================== */

/* ================== STICKY MINIMALIST HEADER ================== */

/* Keadaan Normal (Atas) */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 4%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Transisi halus */
}

/* Transisi untuk elemen yang akan sembunyi */
.logo, .header-nav {
    transition: all 0.4s ease;
    opacity: 1;
    visibility: visible;
}

/* KEADAAN SAAT DI-SCROLL (Minimalis) */
/* KEADAAN SAAT DI-SCROLL */
.header--scrolled {
    padding: 20px 4%;
    /* Hapus background rgba hitam di sini */
    background: transparent; 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Base Blur Header */


.header--scrolled .logo,
.header--scrolled .header-nav {
    opacity: 0; /* Sembunyikan */
    visibility: hidden;
    transform: translateY(-20px); /* Efek sedikit naik saat hilang */
    pointer-events: none; /* Agar tidak bisa diklik saat hilang */
}

/* Pastikan Bagian Kanan Tetap Stay */
.header--scrolled .header-right {
    margin-left: auto; /* Memastikan tombol nempel ke kanan saat navigasi hilang */
}


.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.become-client {
  font-family: var(--font-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  /* Gradient Orange ke Biru */
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-base) 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px; /* Membuat rounded sempurna */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 198, 255, 0.2);
}

.become-client:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.05); /* Efek hover premium */
  box-shadow: 0 8px 25px rgba(0, 198, 255, 0.4);
}


.header-nav { display: flex; gap: 40px; align-items: center; }
.header-nav-item { font-family: var(--font-primary); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); transition: 0.3s; }
.header-nav-item:hover { color: #fff; transform: translateY(-2px); }

.header-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Pastikan ini transparan */
  background: transparent; 
  border-bottom: none; /* Hilangkan garis bawah sesuai permintaan sebelumnya */
  
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}


.logo img {
  height: 40px;
  filter: brightness(0) invert(1); /* Ensure it's white if it's black */
}

/* Specific fix: because original logo is colored gradient but has black text, we might want to keep natural colors */
.logo.colorful img {
  filter: none;
}
/* ================== MENU BUTTON ================== */
.menu-button_button__hHosa {
  background: rgba(255, 255, 255, 0.1); /* Background abu-abu transparan (glassmorphism) */
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Membuat lingkaran sempurna */
  cursor: none;
  z-index: 10002;
  transition: all 0.3s ease;
}

.menu-button_button__hHosa:hover {
  background: rgba(255, 255, 255, 0.2); /* Sedikit lebih terang saat hover */
  transform: rotate(90deg); /* Animasi tambahan untuk estetika */
}

.menu-button_button_block__I7CmA {
  width: 30px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.menu-button_button_block__I7CmA span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-button_button_block__I7CmA span:nth-child(2) {
  width: 70%;
  align-self: flex-end;
}

.menu-button_button__hHosa.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-button_button__hHosa.active span:nth-child(2) {
  opacity: 0;
}
.menu-button_button__hHosa.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================== HERO SECTION ================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
/*  overflow: hidden;*/
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
/*  overflow: hidden;*/
}

.shape-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(45,202,238,0.15) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  filter: blur(60px);
}
.shape-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255,176,32,0.1) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-inner {
  margin-top: 10vh;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  
  /* Tambahkan ini agar konten tetap di tengah batas container */
  max-width: 1400px; /* Samakan dengan max-width container Anda */
  margin-left: auto; 
  margin-right: auto;
  padding: 0 4%; /* Samakan dengan padding container Anda */
  width: 100%;
}


.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-subtitle::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--text-muted);
}

/* Split text animation prep */
.line-wrap {
  overflow: hidden;
}
.line-wrap .line {
  transform: translateY(100%);
  opacity: 0;
}

/* ================== ABOUT / SHOWCASE ================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
  color: var(--text-muted);
}

.about-text strong {
  color: var(--text-main);
  font-weight: 500;
}

/* ================== SERVICES LIST ================== */
.service-list {
  border-top: 1px solid var(--border-color);
  margin-top: 5rem;
}

.service-item {
  display: grid;
  grid-template-columns: 100px 1fr 2fr 50px;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;left: 0;
  width: 100%; height: 100%;
  background: var(--bg-surface);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.service-item:hover::before {
  transform: translateY(0);
}

.service-item:hover {
  padding-left: 2rem;
}

.service-num {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  color: var(--text-muted);
}

.service-title {
  font-size: 2.5rem;
  font-family: var(--font-primary);
}

.service-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.service-arrow {
  font-size: 2rem;
  transform: rotate(-45deg);
  transition: transform 0.3s;
}

.service-item:hover .service-arrow {
  transform: rotate(0);
  color: var(--accent-secondary);
}


/* ================== PORTFOLIO SECTION PREMIUM (WHITE VERSION) ================== */
.section-portfolio {
    padding: 15vh 0 20vh;
    background-color: #FFFFFF; /* Latar Putih */
    color: #000000;
    
    /* Rounded di bagian bawah */
    border-radius: 0 0 80px 80px;
    
    /* Menumpuk dengan section di bawahnya jika perlu */
    position: relative;
    z-index: 5;
}

.section-portfolio .section-index,
.section-portfolio .section-title,
.section-portfolio .subtitle-block p {
    color: #000000; /* Pastikan teks hitam di bg putih */
}

.portfolio-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: flex-end;
}

.portfolio-grid-premium {
    display: grid;
    /* Gunakan 12 kolom agar pembagian 7:5 atau 8:4 lebih mudah */
    grid-template-columns: repeat(12, 1fr); 
    gap: 10px; /* Jarak dibuat kecil sesuai permintaan */
}

.portfolio-card-premium {
    position: relative;
    border-radius: 15px; /* Radius lebih kecil agar serasi dengan gap 10px */
    overflow: hidden;
    height: 650px; /* Atur tinggi konsisten */
}

/* Logika Lebar */
.card-wide {
    grid-column: span 7; /* Lebih Lebar */
}
.card-narrow {
    grid-column: span 5; /* Lebih Sempit */
}


/* Gambar */
.portfolio-media {
    width: 100%;
    height: 100%;
}
.portfolio-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-card-premium:hover img {
    transform: scale(1.05);
}

/* INFO TAMPIL LANGSUNG (Tidak Hidden) */
.portfolio-info-premium {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 2;
}
.portfolio-info-glass {
    background: rgba(255, 255, 255, 0.15); /* Putih Transparan */
    backdrop-filter: blur(15px); /* Efek Blur Kaca */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px; /* Rounded pada box info */
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.portfolio-title-premium {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000; /* Teks putih agar kontras di atas kaca */
    margin: 0;
}
.portfolio-link-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .card-wide, .card-narrow {
        grid-column: span 12; /* Full width di mobile */
    }
    .portfolio-card-premium {
        height: 350px;
    }
}

.portfolio-link-icon svg {
    width: 18px;
    transition: transform 0.4s ease;
}

/* Animasi Arrow saat hover card */
.portfolio-card-premium:hover .portfolio-link-icon {
    background: #000;
    color: #fff;
    border-color: #000;
}

.portfolio-card-premium:hover .portfolio-link-icon svg {
    transform: translateX(3px) rotate(-45deg);
}

/* TOMBOL FOOTER GELAP UNTUK KONTRAS */
.btn-full-portfolio {
    background: #000;
    color: #fff;
    border: none;
    padding: 22px 45px;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.btn-full-portfolio:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
    .portfolio-grid-premium { grid-template-columns: 1fr; }
    .portfolio-card-premium:nth-child(even) { margin-top: 0; }
}


.btn-full-portfolio {
    background: #fff;
    color: #000;
    border: none;
    padding: 20px 40px;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.btn-full-portfolio:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
    .portfolio-header { grid-template-columns: 1fr; gap: 2rem; }
    .portfolio-header-right { align-items: flex-start; text-align: left; }
    .portfolio-grid-premium { grid-template-columns: 1fr; }
}


/* ================== CLIENT MARQUEE ================== */
.marquee-wrapper {
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
  animation: scroll-x 20s linear infinite;
}

.marquee-content img, .marquee-content .client-name {
  height: 60px;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s;
}
.marquee-content .client-name {
  font-size: 2rem;
  font-family: var(--font-primary);
  text-transform: uppercase;
}

.marquee-content img:hover, .marquee-content .client-name:hover {
  filter: grayscale(0) opacity(1);
}

@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


/* ================== FOOTER PREMIUM (AWSMD STYLE) ================== */
/* ================== FOOTER PARALLAX ANIMATED ================== */
.footer-premium {
    position: relative; /* Kita gunakan GSAP untuk mengontrol pergerakan */
    width: 100%;
    background-color: var(--bg-color);
    z-index: 1; /* Pastikan di bawah section portfolio */
    
    /* Tambahkan padding top agar tidak tertutup header saat mentok ke atas */
    padding-top: 120px; 
    padding-bottom: 5vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

/* Pastikan section portfolio punya z-index tinggi untuk menutupi footer */
.section-portfolio {
    position: relative;
    z-index: 10; 
    background-color: #FFFFFF;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    margin-bottom: 0;
}

/* 3. Penataan Baris pada Footer agar pas saat Reveal */
.footer-premium .container {
    width: 100%;
    padding-bottom: 5vh;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 65px;
/*    filter: brightness(0) invert(1);*/
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.footer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

/* Left Section */
.footer-main-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.footer-subtext {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.footer-cta {
    margin-bottom: 4rem;
}

.footer-email-box {
    margin-top: 2rem;
}

.footer-mail-link {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-mail-link:hover {
    color: var(--accent-base);
}

/* Right Section (Nav Columns) */
.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-nav-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-link:hover {
    color: #fff;
    padding-left: 5px;
}

.link-underline {
    color: #fff;
    text-decoration: underline;
}

/* Bottom Area */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin: 5rem 0 3rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.link-muted {
    color: var(--text-muted);
    margin-left: 20px;
    text-decoration: none;
}

.footer-scroll-top {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: none;
}

.footer-scroll-top svg {
    width: 15px;
}

@media (max-width: 991px) {
    .footer-row { grid-template-columns: 1fr; }
    .footer-right { grid-template-columns: 1fr 1fr; gap: 3rem; }
}


/* ================== BIG FOOTER ================== */
.footer {
  padding: 10vh 0 5vh;
  position: relative;
}

.footer-big-text {
  font-size: clamp(4rem, 15vw, 15vw);
  font-family: var(--font-primary);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.05em;
  text-align: center;
  margin-bottom: 3rem;
  transition: color 0.3s;
}

.footer-big-text:hover {
  -webkit-text-stroke: 1px var(--text-main);
  color: transparent;
  cursor: none;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-color);
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent-base);
}

/* ================== MODAL OVERLAY (BLUE-PURPLE GRADIENT) ================== */
.none_modal__SWeNZ {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  /* More vibrant version requested */
  background: linear-gradient(135deg, #1A0B2E 0%, #2D1B69 50%, #10439F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.none_modal__SWeNZ.active {
  opacity: 1;
  visibility: visible;
}

.none_modal_window__KQBlG {
  width: 100%;
  max-width: 1400px;
  height: 80vh;
  position: relative;
}

.menu_menu__XFZRs {
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: 100%;
  gap: 4rem;
}

.menu_menu_left__kHQLR {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 4rem;
}

.menu_menu_logo__3JLzN {
  width: 120px;
  margin-bottom: 2rem;
}

.menu_menu_clutch_wrapper {
  margin: 2rem 0;
}

.menu-clutch_clutch__j7Fhs {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-clutch_clutch_icon__nCbXZ {
  width: 40px;
}

.menu-clutch_clutch_stars__JiIF_ i {
  color: #FFB020;
  font-size: 0.8rem;
  margin-right: 2px;
}

.menu-clutch_clutch_text__1pFDA {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.menu_menu_text__RIQzS {
  font-size: 1.5rem;
  color: #fff;
  font-family: var(--font-primary);
  max-width: 300px;
}

.menu_menu_expand__dWm8x {
  display: flex;
  flex-direction: column;
}

.menu_menu_header_title__lvi_H {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 0.9rem;
}

.menu_menu_content__p9RjY {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-grow: 1;
}

.menu_menu_content_left__namsq {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu_menu_content_link__d2DOf {
  font-family: var(--font-primary);
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  width: fit-content;
  transition: transform 0.3s;
}

.menu_menu_content_link__d2DOf::before {
  content: attr(data-index);
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent-base);
}

.menu_menu_content_link__d2DOf:hover {
  transform: translateX(20px);
  color: var(--accent-base);
  -webkit-text-stroke: 1px var(--accent-base);
}

.menu_menu_socials__llpxq {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-end;
}

.menu_menu_socials_link__DWAUg {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.menu_menu_socials_email__3Wz6n {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.menu_menu_row__5jyoj {
  margin-top: auto;
  text-align: right;
  color: var(--text-muted);
}

.modal-close-btn {
  position: absolute;
  top: -2rem;
  right: -2rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: none;
  z-index: 10003;
}

@media (max-width: 992px) {
  .menu_menu__XFZRs {
    grid-template-columns: 1fr;
  }
  .menu_menu_left__kHQLR {
    display: none;
  }
  .menu_menu_content_link__d2DOf {
    font-size: 3rem;
  }
  .menu_menu_socials__llpxq {
    align-items: flex-start;
    margin-top: 2rem;
  }
  .menu_menu_content__p9RjY {
    grid-template-columns: 1fr;
  }
}
/* ================== SERVICES GRID PREMIUM (AWSMD STYLE) ================== */
.section-white {
  background-color: #FFFFFF;
  color: #000000;
  
  /* Membuat lengkungan di bagian atas */
  border-radius: 80px 80px 0 0;
  
  margin-top : 100px;
  
  /* Memastikan layer putih berada di atas */
  position: relative;
  z-index: 5;
  
  /* Tambahkan padding top agar konten tidak terlalu mepet lengkungan */
  padding-top: 15vh;
  
  /* Hilangkan overflow agar tidak ada bocor warna di pojok */
  overflow: hidden;
}

/* Opsional: Jika Anda ingin bagian bawahnya juga rounded */
.section-white-bottom-rounded {
   border-radius: 80px;
   margin-bottom: -80px;
}


.section-index {
  font-family: var(--font-primary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0,0,0,0.4);
  margin-bottom: 2rem;
}

.subtitle-block-dark {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1.3;
  color: #000;
  max-width: 900px;
  margin-bottom: 5rem;
  font-weight: 500;
}

.awsmd-services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.awsmd-service-item-grid {
  height: 550px;
  opacity: 1;
}

.service-card-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  padding: 3rem 2rem;
  overflow: hidden;
  text-decoration: none;
  color: #000;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: none;
}

.service-card-vertical:hover {
  transform: translateY(-10px);
}

.service-card-mockup-v {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
  transform: translateY(20%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-vertical:hover .service-card-mockup-v {
  transform: translateY(10%) scale(1.05);
}

.service-card-info-v {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%; /* Important for bottom alignment */
}

.service-card-title-v {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.service-card-text-v {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.7);
  max-width: 90%;
}

.service-card-tags-v {
  margin-top: auto; /* This pins it to the bottom */
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.service-card-tags-v li {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
}

@media (max-width: 1024px) {
  .awsmd-services-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .awsmd-services-list-grid {
    grid-template-columns: 1fr;
  }
  .awsmd-service-item-grid {
    height: 500px;
  }
}

/* --- DEVELOPMENT SECTION (AWSMD STYLE) --- */
.development_dev__ZUMqF {
    position: relative;
    background-color: #0d0d0d;
    padding: 180px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.dev-line_line__aWpS_ {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.dev-line_line_svg__lTEBS {
    width: 100%;
    height: 100%;
}

.development_contentbox__UjoNa {
    position: relative;
    z-index: 5;
    width: 100%;
}

/* Marquee */
.marquee_marquee__ZFB97 {
    position: absolute;
    top: -50px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0.1;
    pointer-events: none;
}

/* 1. Aktifkan pergerakan pada Wrapper */
.marquee_marquee_wrapper__OPxaX {
    display: flex;
    white-space: nowrap;
    /* Pasang Animasi di sini */
    animation: marquee_run 60s linear infinite; 
    width: fit-content;
}

/* 2. Pastikan item mengisi ruang dengan benar */
.marquee_marquee_item__kBXsQ {
    display: flex;
    flex-shrink: 0;
}

.development_dev_marquee_text__oxpfZ {
    font-size: 12vw; /* Ukuran besar khas AWSMD */
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.05); /* Sangat tipis sebagai dekorasi background */
    margin: 0;
    padding-right: 100px; /* Jarak antar pengulangan teks */
    letter-spacing: -0.05em;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    color: transparent;
}

/* 3. Definisi Keyframes (Pastikan ini ada di akhir file CSS) */
@keyframes marquee_run {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Geser sebanyak 50% karena kita punya 2 item identik untuk seamless loop */
        transform: translateX(-50%);
    }
}


.marquee_marquee_wrapper__OPxaX {
    display: flex;
}

.marquee_marquee_item__kBXsQ {
    display: flex;
}

.development_dev_marquee_text__oxpfZ {
    font-size: 15vw;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    padding-right: 100px;
    letter-spacing: -0.05em;
}

/* Content */
.dev-content_dev_content__EguIn {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 20;
}

.dev-content_dev_title__nwp5r {
    font-size: clamp(3.5rem, 10vw, 8.5rem);
    font-weight: 800;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -0.04em;
}

.dev-content_dev_title_sd__B29dd {
    display: block;
    color: var(--accent);
}

.dev-content_dev_text__3EkeN {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 50px;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dev-content_dev_controls__wP5T_ {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-dev-white {
    background: #fff;
    color: #000;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1.1rem;
}

.btn-dev-gray {
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
}

.btn-dev-white:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255,255,255,0.1);
}

.btn-dev-gray:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

/* Phones */
.development_dev_phones__imyxO {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
}

.dev-phone-left {
    position: absolute;
    left: 5%;
    top: 15%;
    width: 25vw;
    max-width: 400px;
    transform: rotate(-10deg);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

.dev-phone-right {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 28vw;
    max-width: 450px;
    transform: rotate(15deg);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* Screens */
.development_dev_screens__CsH88 {
    position: absolute;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
    z-index: 2;
    opacity: 0.25;
}

.dev-screens_screens_list__BiiTu {
    list-style: none;
    display: flex;
    gap: 60px;
    padding: 0;
}

.dev-screens_screens_item__7a__O {
    width: 350px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.05);
}

.dev-screens_screens_item__7a__O img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hand */
.development_dev_hand_wrapper__ho2uK {
    position: absolute;
    right: 20%;
    top: 25%;
    z-index: 15;
    width: 450px;
}

.dev-hand-image {
    width: 100%;
}

.dev-video_video__oxf1k {
    position: absolute;
    top: 7%;
    left: 7.5%;
    width: 85%;
    height: 75%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), #fbbc05);
    opacity: 0.3;
}

.development_dev_screens__inline {
    margin-top: 60px;
    width: 100%;
}

.dev-screens_screens_list__inline {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.dev-screen_item__inline {
    width: 250px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.5s ease;
}

.dev-screen_item__inline:hover {
    transform: translateY(-15px) scale(1.05);
}

.dev-screen_item__inline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- CLIENTS MARQUEE V2 --- */
.clients-marquee-v2 {
    padding-bottom: 100px;
    margin-top: -200px !important;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

.marquee-container {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 100px;
    animation: marquee_run 40s linear infinite;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0; /* Penting: Ubah gap ke 0 agar garis menempel */
    animation: marquee_run 40s linear infinite;
    padding: 0; /* Pastikan padding nol agar garis atas/bawah rapi */
    
    /* Tambahkan garis atas dan bawah untuk menutup kotak */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Berikan ruang di dalam kotak */
    padding: 40px 80px;
    
    /* Garis pemisah di sebelah kanan tiap logo */
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Biar logo di paling kiri juga punya garis pembatas */
.marquee-track .marquee-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}


.client-logo-img {
    height: 70px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.4s ease;
}

.client-logo-img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
}

.client-name-premium {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.client-name-premium.stroke {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}

/* Efek Fade Halus di Pinggir */
.marquee-fade-left, .marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, #0d0d0d, transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, #0d0d0d, transparent);
}

/* ================== CONTACT MODAL STYLING ================== */
.side_modal__Lb8V1 {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10005;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    justify-content: flex-end; /* Muncul dari samping kanan */
}

.side_modal__Lb8V1.active {
    visibility: visible;
    opacity: 1;
}

.side_modal_overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.side_modal_window__nqgt8 {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: rgba(15, 15, 15, 0.95);
    height: 100%;
    padding: 60px 40px;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(255,255,255,0.1);
}

.side_modal__Lb8V1.active .side_modal_window__nqgt8 {
    transform: translateX(0);
}

/* FORM STYLING */
.client-form_client_title__CdMlw {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

.input_input__QldSr { margin-bottom: 2rem; }
.input_input_title__4Gy5G {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.input_input_input__lh80_ {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-secondary);
}

.client-form_client_cross__8ZXCT {
    position: absolute;
    top: 30px; right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: none;
}

.client-form_client_row__KdD6U { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ================== PRELOADER STYLING ================== */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #030303; /* Warna gelap solid */
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}

.preloader-inner {
    width: 100%;
    max-width: 1200px;
}

.preloader-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.preloader-label {
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.preloader-number {
    font-family: var(--font-primary);
    font-size: 8vw; /* Angka besar premium */
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.preloader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.preloader-bar-fill {
    position: absolute;
    top: 0; left: 0;
    width: 0%; /* Diatur via JS */
    height: 100%;
    background: var(--accent-base);
    transition: width 0.1s linear;
}

/* Animasi Keluar */
.preloader.fade-out {
    transform: translateY(-100%);
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}


/* Container Mockup Stack */
/* Container Stack */
.dev-screens-stack-container {
    width: 100%;
    margin-top: 50px;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    perspective: 2500px;
}

.dev-screens-stack-inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

/* Base Styles */
.stack-item {
    position: absolute;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.stack-item img {
    border-radius: 12px;
    display: block;
    width: 100%;
}

/* --- LOGIKA UKURAN & POSISI (FISHEYE EFFECT) --- */

/* --- LOGIKA UKURAN & POSISI (REVERSE STACK) --- */

/* 1. TENGAH (Paling Besar & Paling Belakang) */
.item-center {
    width: 65%; /* Lebih lebar agar terlihat di belakang */
    z-index: 8;
    transform: translateZ(0) scale(1.1);
    filter: brightness(0.8); /* Agak redup agar yang depan menonjol */
}

/* 2. LAYER TENGAH (Sedang) */
.item-left-front {
    width: 250px; /* iPhone Portrait */
    left: 10%;
    z-index: 9;
    transform: translateZ(100px) rotateY(15deg);
}
.item-right-front {
    width: 250px; /* iPhone Portrait */
    right: 10%;
    z-index: 9;
    transform: translateZ(100px) rotateY(-15deg);
}

/* 3. LAYER PALING DEPAN (Kecil & Paling Maju) */
.item-left-back {
    width: 200px; /* Lebih kecil tapi paling depan */
    left: 2%;
    top: 20%;
    z-index: 10;
    /* TranslateZ paling tinggi agar di depan sendiri */
    transform: translateZ(200px) rotateY(25deg); 
    border-color: rgba(255, 255, 255, 0.4); /* Lebih terang */
}
.item-right-back {
    width: 200px; /* Lebih kecil tapi paling depan */
    right: 2%;
    top: 20%;
    z-index: 10;
    /* TranslateZ paling tinggi agar di depan sendiri */
    transform: translateZ(200px) rotateY(-25deg);
    border-color: rgba(255, 255, 255, 0.4);
}

/* --- HOVER INTERACTION (Splayed Reveal) --- */
.dev-screens-stack-inner:hover .stack-item {
    filter: brightness(1);
}

.dev-screens-stack-inner:hover .item-center { transform: translateZ(-50px) scale(1); }
.dev-screens-stack-inner:hover .item-left-front { transform: translateX(-50px) translateZ(150px) rotateY(10deg); }
.dev-screens-stack-inner:hover .item-right-front { transform: translateX(50px) translateZ(150px) rotateY(-10deg); }
/* Saat hover, yang kecil sedikit "mengintip" ke sisi luar */
.dev-screens-stack-inner:hover .item-left-back { transform: translateX(-100px) translateZ(300px) rotateY(5deg); }
.dev-screens-stack-inner:hover .item-right-back { transform: translateX(100px) translateZ(300px) rotateY(-5deg); }


/* Responsif Mobile */
@media (max-width: 991px) {
    .dev-screens-stack-inner {
        height: auto;
        flex-direction: column;
        gap: 20px;
    }
    .stack-item {
        position: relative !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        opacity: 1 !important;
    }
}


@keyframes marquee_run {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .client-name-premium { font-size: 2rem; }
    .client-logo-img { height: 35px; }
    .marquee-track { gap: 50px; }
}


@media (max-width: 1200px) {
    .dev-phone-left, .dev-phone-right, .development_dev_hand_wrapper__ho2uK {
        width: 300px;
    }
}

@media (max-width: 991px) {
    .development_dev__ZUMqF {
        padding: 100px 0;
    }
    .dev-phone-left, .dev-phone-right, .development_dev_hand_wrapper__ho2uK, .development_dev_screens__CsH88 {
        display: none;
    }
}

/* ============================================
   MOBILE — HEADER KHUSUS (TIDAK STICKY)
   ============================================ */
@media (max-width: 768px) {
    
    /* 1. Ubah Header agar menempel di atas dan ikut tergulung (scroll) */
    .header {
        position: absolute !important; /* Mematikan efek Sticky / Fixed */
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 15px 20px !important;
        display: flex !important;
        justify-content: space-between !important; /* Logo Kiri, Tombol Kanan */
        align-items: center !important;
        background: transparent !important;
        backdrop-filter: none !important;
    }

    /* 2. Sembunyikan Hamburger Menu & Teks Navigasi */
    .header-nav,
    .menu-button_button__hHosa {
        display: none !important;
    }

    /* 3. Atur Kontainer Kanan (Tombol) */
    .header-right {
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    /* 4. Percantik Tombol Khusus Mobile */
    .header-right .become-client {
        display: inline-flex !important;
        font-size: 11px !important;
        padding: 10px 20px !important;
        margin: 0 !important;
    }

    /* 5. Paksa Logo Tidak Menghilang Saat Di-Scroll */
    .header.header--scrolled .logo {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
    }
}

/* ============================================
   PERBAIKAN MOBILE: MOCKUP 3D INOVASI DIGITAL
   ============================================ */
@media (max-width: 991px) {
    
    /* 1. Potong ruang/jarak kosong atas dan bawah yang berlebihan */
    .development_dev__ZUMqF {
        padding: 70px 0 20px 0 !important;
        min-height: auto !important;
    }
    
    /* 2. Perkecil sedikit ukuran judul raksasa di HP */
    .dev-content_dev_title__nwp5r {
        font-size: 2.8rem !important;
        margin-bottom: 20px !important;
    }
    
    .dev-content_dev_text__3EkeN {
        font-size: 1.1rem !important;
        margin-bottom: 40px !important;
        padding: 0 15px;
    }

    /* 3. Rapikan Tombol Aksi (Tumpuk Atas-Bawah & Penuh) */
    .dev-content_dev_controls__wP5T_ {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 20px !important;
    }
    
    .btn-dev-white, .btn-dev-gray {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* 4. KEMBALIKAN EFEK TUMPUKAN LAYAR 3D DI MOBILE (Miniatur) */
    .dev-screens-stack-container {
        padding: 30px 0 0 0 !important; 
        margin-top: 30px !important;
        height: 380px !important; 
        perspective: 1500px !important; /* Tingkat kemiringan 3D HP */
    }

    .dev-screens-stack-inner {
        height: 280px !important;
        flex-direction: row !important; /* Kembalikan menyamping bertumpuk */
    }

    .stack-item {
        position: absolute !important; /* Paksa agar elemen numpuk */
        margin: 0 !important;
        opacity: 1 !important;
    }

    /* Layar Komputer Utama (Di Tengah) */
    .item-center {
        width: 85% !important;
        transform: translateZ(-20px) scale(1) !important;
        z-index: 8 !important;
    }

    /* Mockup HP Depan Kiri */
    .item-left-front {
        width: 32% !important;
        left: 3% !important;
        top: auto !important;
        bottom: -30px !important;
        transform: translateZ(50px) rotateY(15deg) !important;
        z-index: 9 !important;
    }

    /* Mockup HP Depan Kanan */
    .item-right-front {
        width: 32% !important;
        right: 3% !important;
        top: auto !important;
        bottom: -30px !important;
        transform: translateZ(50px) rotateY(-15deg) !important;
        z-index: 9 !important;
    }

    /* Sembunyikan layar lapis ketiga agar desain di HP terlihat Minimalis/Clean */
    .item-left-back, .item-right-back {
        display: none !important;
    }
}

/* ============================================
   PERBAIKAN MARQUEE CLIENT MOBILE (ANTI NABRAK)
   ============================================ */
@media (max-width: 991px) {
    .clients-marquee-v2 {
        margin-top: 40px !important;  /* Membatalkan efek tarikan -200px dari desktop */
        padding-top: 10px !important; 
        padding-bottom: 60px !important; /* Mengurangi sisa spasi kosong di dasar */
    }
}

/* ============================================
   PERBAIKAN ABOUT SECTION (TUMPUK & RATA TENGAH)
   ============================================ */
@media (max-width: 768px) {
    .about-grid {
        /* 1 Kolom Atas Bawah */
        grid-template-columns: 1fr !important; 
        gap: 1.5rem !important;
        
        /* Rata Tengah */
        text-align: center !important; 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

/* ============================================
   PERBAIKAN POSISI TOMBOL CHAT DI HP
   ============================================ */
@media (max-width: 768px) {
    .ai-chat-trigger {
        bottom: 100px !important;    /* Naik ke atas menjauhi batas dasar HP / Navigation Bar */
        right: 50px !important;      /* Geser lebih ke kiri menjauh dari tepi bingkai kanan */
        z-index: 999999 !important;  /* Paksa muncul paling depan (Anti ketutupan apa pun) */
    }
    
    /* Sekalian pastikan pop-up chatnya nanti tidak menabrak tombol barunya */
    .ai-chat-container {
        bottom: 150px !important; 
    }
}

/* ============================================
   WARNA TOMBOL CHAT SESUAI LOGO ASIX
   ============================================ */
.ai-chat-trigger {
    /* Gradasi super elegan (Cyan -> Blue -> Purple) */
    background: linear-gradient(135deg, #00d2ff 0%, #0066ff 50%, #6f00ff 100%) !important;
    
    /* Ubah pancaran cahaya (Glow) di belakang tombol agar senada */
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4) !important; 
}


/* ============================================
   KOTAK CHAT TURUN (MENGISI RUANG KOSONG)
   ============================================ */
/* Efek Menghilang Lembut pada Tombol Trigger */
.ai-chat-trigger {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease !important;
}

/* Geser Turun Kotak Chat (Desktop) */
@media (min-width: 769px) {
    .ai-chat-container {
        bottom: 30px !important; /* Mengambil alih tempat tombol chat yang hilang */
    }
}

/* Geser Turun Kotak Chat (Mobile) */
@media (max-width: 768px) {
    .ai-chat-container {
        bottom: 20px !important; /* Turun mendekati dasar agar layar lega */
    }
}


