body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

/* =========================================
   LATAR BELAKANG MESH GRADIENT (PRESISI)
   ========================================= */
body {
    background-color: #0a0026; 
    background-image: 
        radial-gradient(circle at 5% 15%, #7100b8 0%, transparent 60%), 
        radial-gradient(circle at 45% 5%, #ea0095 0%, transparent 60%), 
        radial-gradient(circle at 95% 10%, #f69d55 0%, transparent 60%), 
        radial-gradient(circle at 100% 60%, #55b4d4 0%, transparent 60%), 
        radial-gradient(circle at 85% 100%, #003e87 0%, transparent 60%), 
        radial-gradient(circle at 15% 90%, #150040 0%, transparent 60%); 
    background-size: 200% 200%;
    animation: meshGradient 20s ease-in-out infinite alternate;
    position: relative;
}

@keyframes meshGradient {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 100%; }
}

/* =========================================
   SCROLL BEHAVIOR SETUP
   ========================================= */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar {
    display: none;
}

.page-section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    position: relative;
    box-sizing: border-box;
}

/* =========================================
   FIXED GLOBAL ELEMENTS 
   ========================================= */
.main-header {
    position: fixed;
    top: 40px; 
    left: 100px; 
    right: 100px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50; 
    pointer-events: none; 
}

.main-header > * {
    pointer-events: auto; 
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.get-in-touch-btn {
    border: 1px solid white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-in-touch-btn:hover {
    background-color: white;
    color: #4c0099;
}

#btn-get-in-touch {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

#btn-get-in-touch.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wave-pattern {
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" fill-opacity="1" d="M0,224L48,229.3C96,235,192,245,288,218.7C384,192,480,128,576,128C672,128,768,192,864,197.3C960,203,1056,149,1152,144C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path><path fill="rgba(255,255,255,0.08)" fill-opacity="1" d="M0,128L60,149.3C120,171,240,213,360,213.3C480,213,600,171,720,165.3C840,160,960,192,1080,208C1200,224,1320,224,1380,224L1440,224L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: waveMove 12s ease-in-out infinite alternate;
    z-index: 1; 
    pointer-events: none;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-shield {
    width: 120px;
    height: auto;
    margin-right: 10px;
}

.menu-icon {
    width: 45px;
    height: 45px;
    background-color: white;
    color: #4c0099;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-icon:hover {
    transform: rotate(90deg);
}

/* =========================================
   SECTION 1: HERO
   ========================================= */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 100px;
    padding-right: 100px;
    z-index: 5;
}

.hero-text-wrapper {
    position: relative;
    line-height: 1;
}

.hero-text-outline {
    font-size: 8rem;
    font-weight: 300;
    margin: 0;
    opacity: 0;
    animation: fadeInOut 2s ease-out forwards;
    -webkit-text-stroke: 1px white; 
    color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); 
}

.hero-text-solid {
    font-size: 8rem;
    font-weight: 800;
    margin: -10px 0 0 0;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.5s forwards;
    letter-spacing: -2px;
}

.hero-text-solid .text {
    position: relative;
    display: inline-block;
}

.hero-text-solid .underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 6px;
    background-color: white;
    width: 0%;
    animation: drawUnderline 1s ease-out 1.2s forwards;
}

.hero-text-plus {
    font-size: 8rem;
    font-weight: 800;
    margin: 0;
    display: inline-block;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.8s forwards;
    color: rgba(255, 255, 255, 0.9);
}

.social-icons {
    position: absolute;
    bottom: 150px; 
    z-index: 10;
    left: 100px;
    display: flex;
    gap: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out 2.2s forwards;
}

.social-icons i {
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-icons i:hover {
    transform: scale(1.3);
}

.video-widget {
    position: absolute;
    left: 100px;
    width: 150px;
    height: 100px;
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    transform: translateY(150px);
    animation: slideInUpWidget 1s ease-out 2.5s forwards;
    bottom: 20px; 
    z-index: 10;
}

.video-widget span {
    color: #333;
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.video-widget .play-icon {
    color: #8a2be2;
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    right: 15px;
}

.description-text {
    position: absolute;
    bottom: 120px;
    right: 100px;
    width: 350px;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1s ease-out 2.8s forwards;
    text-align: left;
}

/* =========================================
   SECTION 2: ABOUT US
   ========================================= */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 100px;
    z-index: 5;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin-top: -80px; 
}

.about-illustration {
    height: 300px; 
    width: auto;
    max-width: 100%;
    margin-bottom: 30px;
    object-fit: contain;
}

.about-heading {
    margin: 0 0 20px 0;
    font-size: 5rem;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.about-heading .solid {
    font-weight: 800;
    color: white;
}

.about-heading .outline {
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.about-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   SECTION 3: SERVICES
   ========================================= */
.services-section {
    background-color: #151515; 
    display: flex;
    align-items: center;
    padding: 0 100px;
    position: relative;
    overflow: hidden; 
}

.services-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
}

.services-heading {
    margin: 0 0 30px 0;
    font-size: 6.5rem; 
    line-height: 1.1;
    letter-spacing: -1px;
}

.services-heading .solid {
    font-weight: 800;
    color: white;
    display: block; 
}

.services-heading .outline {
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1.5px white; 
    display: block; 
}

.services-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
}

.floating-img {
    position: absolute;
    z-index: 5;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.top-left-img {
    top: -20px;
    left: 250px;
    width: 320px;
}

.bottom-right-img {
    bottom: 120px;
    right: 80px;
    width: 480px;
}

/* =========================================
   SECTION 4: APP DEVELOPMENT
   ========================================= */
.app-dev-section {
    background-color: #905d5c; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0; 
    padding-right: 150px; 
    position: relative;
    overflow: hidden;
}

.app-dev-images {
    position: relative;
    width: 500px;
    height: 700px;
    z-index: 10;
    flex-shrink: 0;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.phone-img-combined {
    width: 100%; 
    margin-left: 0px; 
    height: auto;
    filter: drop-shadow(-20px 30px 50px rgba(0,0,0,0.4)); 
    transition: transform 0.5s ease;
}

.phone-img-combined:hover {
    transform: translateY(-10px);
}

.app-dev-content {
    margin-left: 50px;
    max-width: 600px;
    z-index: 10;
}

.app-dev-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.95;
    margin: 0 0 25px 0;
    letter-spacing: -2px;
    color: white; 
}

.app-dev-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-see-more {
    display: inline-block;
    padding: 10px 30px;
    background-color: white;
    color: #905d5c;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.vertical-line-right {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    height: 60vh;
    width: 4px;
    background-color: white;
    border-radius: 4px;
    z-index: 5;
}

/* =========================================
   SECTION 5: SEO
   ========================================= */
.seo-section {
    background-color: #d19e39; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0; 
    padding-right: 150px; 
    position: relative;
    overflow: hidden;
}

.seo-images {
    position: relative;
    width: 500px;
    height: 700px;
    z-index: 10;
    flex-shrink: 0;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.seo-mockup-img {
    width: 70%; 
    margin-left: 0px; 
    height: auto;
    filter: drop-shadow(20px 30px 50px rgba(0,0,0,0.3)); 
    transition: transform 0.5s ease;
}

.seo-mockup-img:hover {
    transform: translateY(-10px);
}

.seo-content {
    margin-left: 50px;
    max-width: 600px;
    z-index: 10;
}

.seo-heading {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.95;
    margin: 0 0 25px 0;
    letter-spacing: -2px;
    color: white; 
}

.seo-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-see-more-seo {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #d19e39;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-see-more-seo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================================
   SECTION 5.5: CONTENT MARKETING
   ========================================= */
.content-marketing-section {
    background-color: #9cb58b; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0; 
    padding-right: 150px; 
    position: relative;
    overflow: hidden;
}

.content-marketing-images {
    position: relative;
    width: 500px;
    height: 700px;
    z-index: 10;
    flex-shrink: 0;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.content-mockup-img {
    width: 75%; 
    margin-left: 0px; 
    height: auto;
    filter: drop-shadow(20px 30px 50px rgba(0,0,0,0.2)); 
    transition: transform 0.5s ease;
}

.content-mockup-img:hover {
    transform: translateY(-10px);
}

.content-marketing-content {
    margin-left: 50px;
    max-width: 600px;
    z-index: 10;
}

.content-marketing-heading {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.95;
    margin: 0 0 25px 0;
    letter-spacing: -2px;
    color: white; 
}

.content-marketing-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-see-more-content {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #9cb58b;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-see-more-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================================
   SECTION 5.75: GRAPHIC DESIGN
   ========================================= */
.graphic-design-section {
    background-color: #8eb3a6; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0; 
    padding-right: 150px; 
    position: relative;
    overflow: hidden;
}

.graphic-design-images {
    position: relative;
    width: 500px;
    height: 700px;
    z-index: 10;
    flex-shrink: 0;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.graphic-mockup-img {
    width: 75%; 
    margin-left: 0px; 
    height: auto;
    filter: drop-shadow(20px 30px 50px rgba(0,0,0,0.2)); 
    transition: transform 0.5s ease;
}

.graphic-mockup-img:hover {
    transform: translateY(-10px);
}

.graphic-design-content {
    margin-left: 50px;
    max-width: 600px;
    z-index: 10;
}

.graphic-design-heading {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.95;
    margin: 0 0 25px 0;
    letter-spacing: -2px;
    color: white; 
}

.graphic-design-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-see-more-graphic {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #8eb3a6;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-see-more-graphic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================================
   SECTION 5.8: LOGO DESIGN
   ========================================= */
.logo-design-section {
    background-color: #98a7ba; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0; 
    padding-right: 150px; 
    position: relative;
    overflow: hidden;
}

.logo-design-images {
    position: relative;
    width: 500px;
    height: 700px;
    z-index: 10;
    flex-shrink: 0;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.logo-mockup-img {
    width: 75%; 
    margin-left: 0px; 
    height: auto;
    filter: drop-shadow(20px 30px 50px rgba(0,0,0,0.2)); 
    transition: transform 0.5s ease;
}

.logo-mockup-img:hover {
    transform: translateY(-10px);
}

.logo-design-content {
    margin-left: 50px;
    max-width: 600px;
    z-index: 10;
}

.logo-design-heading {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.95;
    margin: 0 0 25px 0;
    letter-spacing: -2px;
    color: white; 
}

.logo-design-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-see-more-logo {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #98a7ba;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-see-more-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================================
   SECTION 5.9: PRODUCTION
   ========================================= */
.production-section {
    background-color: #9a8ebf; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0; 
    padding-right: 150px; 
    position: relative;
    overflow: hidden;
}

.production-images {
    position: relative;
    width: 500px;
    height: 700px;
    z-index: 10;
    flex-shrink: 0;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.production-mockup-img {
    width: 85%; 
    margin-left: 0px; 
    height: auto;
    filter: drop-shadow(20px 30px 50px rgba(0,0,0,0.2)); 
    transition: transform 0.5s ease;
}

.production-mockup-img:hover {
    transform: translateY(-10px);
}

.production-content {
    margin-left: 50px;
    max-width: 600px;
    z-index: 10;
}

.production-heading {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.95;
    margin: 0 0 25px 0;
    letter-spacing: -2px;
    color: white; 
}

.production-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-see-more-production {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #9a8ebf;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-see-more-production:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================================
   SECTION 5.10: DIGITAL PRINTING SERVICES
   ========================================= */
.digital-printing-section {
    background-color: #ba99c2; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0; 
    padding-right: 150px; 
    position: relative;
    overflow: hidden;
}

.digital-printing-images {
    position: relative;
    width: 500px;
    height: 700px;
    z-index: 10;
    flex-shrink: 0;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.digital-printing-mockup-img {
    width: 85%; 
    margin-left: 0px; 
    height: auto;
    filter: drop-shadow(20px 30px 50px rgba(0,0,0,0.2)); 
    transition: transform 0.5s ease;
}

.digital-printing-mockup-img:hover {
    transform: translateY(-10px);
}

.digital-printing-content {
    margin-left: 50px;
    max-width: 600px;
    z-index: 10;
}

.digital-printing-heading {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.95;
    margin: 0 0 25px 0;
    letter-spacing: -2px;
    color: white; 
}

.digital-printing-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-see-more-digital-printing {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #ba99c2;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-see-more-digital-printing:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================================
   SECTION 5.11: OUR WORKS
   ========================================= */
.our-works-section {
    background-color: #bd90a4; /* Warna dusty mauve/pink yang disesuaikan dari gambar */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 100px; 
    padding-right: 150px; 
    position: relative;
    overflow: hidden;
}

.our-works-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.our-works-heading {
    margin: 0 0 30px 0;
    font-size: 7rem; 
    line-height: 1.1;
    letter-spacing: -1px;
    display: flex;
    gap: 25px;
}

.our-works-heading .solid {
    font-weight: 800;
    color: white;
}

.our-works-heading .outline {
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1.5px white; 
}

.our-works-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Mengatur posisi scroll-down agar berada di bagian kanan sesuai referensi gambar */
#our-works .scroll-down-container {
    left: auto;
    right: 120px; 
    transform: translateX(0);
    bottom: 150px; /* Diangkat ke atas sedikit agar pas */
}


/* =========================================
   SECTION 6: SOCIAL MEDIA MARKETING
   ========================================= */
.smm-section {
    background-color: #b6b894; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0; 
    padding-right: 150px; 
    position: relative;
    overflow: hidden;
}

.smm-images {
    position: relative;
    width: 500px;
    height: 700px;
    z-index: 10;
    flex-shrink: 0;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.smm-mockup-img {
    width: 60%; 
    margin-left: 0px; 
    height: auto;
    filter: drop-shadow(20px 30px 50px rgba(0,0,0,0.3)); 
    transition: transform 0.5s ease;
}

.smm-mockup-img:hover {
    transform: translateY(-10px);
}

.smm-content {
    margin-left: 50px;
    max-width: 600px;
    z-index: 10;
}

.smm-heading {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 0.95;
    margin: 0 0 25px 0;
    letter-spacing: -2px;
    color: white; 
}

.smm-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-see-more-smm {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #b6b894;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-see-more-smm:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* =========================================
   SECTION 7: WEB DEVELOPMENT
   ========================================= */
.web-dev-section {
    background-color: #b86b52; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0; 
    padding-right: 150px; 
    position: relative;
    overflow: hidden;
}

.web-dev-images {
    position: relative;
    width: 500px;
    height: 700px;
    z-index: 10;
    flex-shrink: 0;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.web-mockup-img {
    width: 100%; 
    margin-left: 0px; 
    height: auto;
    filter: drop-shadow(-20px 30px 50px rgba(0,0,0,0.4)); 
    transition: transform 0.5s ease;
}

.web-mockup-img:hover {
    transform: translateY(-10px);
}

.web-dev-content {
    margin-left: 50px;
    max-width: 600px;
    z-index: 10;
}

.web-dev-heading {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 0.95;
    margin: 0 0 25px 0;
    letter-spacing: -2px;
    color: white; 
}

.web-dev-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.btn-see-more-web {
    display: inline-block;
    padding: 10px 30px;
    background-color: white;
    color: #b86b52;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-see-more-web:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================================
   SCROLL DOWN WIDGET (NEW DESIGN)
   ========================================= */
.scroll-down-container {
    position: absolute; 
    bottom: 40px;
    left: 50%; 
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 3.1s forwards;
    z-index: 10;
}

#services .scroll-down-container {
    left: 150px;
    transform: translateX(-50%);
}

.scroll-down-text-wrapper {
    width: 120px;
    height: 120px;
    position: relative;
}

.scroll-down-text-wrapper.static-text {
    animation: none; 
}

.outline-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.9); 
    background: transparent; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-arrow-simple {
    font-size: 1.2rem;
    color: white;
    animation: pulseArrowSimple 1.5s infinite;
}

@keyframes pulseArrowSimple {
    0% { transform: translateY(-3px); }
    50% { transform: translateY(3px); }
    100% { transform: translateY(-3px); }
}


/* =========================================
   GLOBAL UTILITIES & KEYFRAMES
   ========================================= */

/* Navigasi Indikator */
.page-indicator-wrapper {
    position: absolute;
    bottom: 50px;
    right: 100px;
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards; 
    z-index: 10;
}

.page-indicators {
    display: flex;
    gap: 25px; 
}

.indicator {
    position: relative;
    width: 35px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator-icon {
    position: absolute;
    top: -30px; 
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.indicator.active {
    background-color: white;
    box-shadow: 0 0 8px rgba(255,255,255,0.5); 
}

.indicator.active .indicator-icon {
    color: white;
    transform: translateX(-50%) translateY(-5px) scale(1.15); 
}

.indicator:hover {
    background-color: white;
}

.indicator:hover .indicator-icon {
    color: white;
    animation: floatingIcon 1.2s infinite ease-in-out;
}

@keyframes floatingIcon {
    0% { 
        transform: translateX(-50%) translateY(-5px) scale(1.15); 
        text-shadow: 0 5px 10px rgba(255,255,255,0.4);
    }
    50% { 
        transform: translateX(-50%) translateY(-12px) scale(1.3); 
        text-shadow: 0 15px 25px rgba(255,255,255,0.8);
    }
    100% { 
        transform: translateX(-50%) translateY(-5px) scale(1.15); 
        text-shadow: 0 5px 10px rgba(255,255,255,0.4);
    }
}

@keyframes waveMove {
    0% { transform: scale(1.0) translate(0px, 0px); }
    50% { transform: scale(1.05) translate(-15px, 8px); }
    100% { transform: scale(1.1) translate(-30px, 0px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    30% { opacity: 0.9; }
    100% { opacity: 1; } 
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUpWidget {
    from {
        opacity: 0;
        transform: translateY(150px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawUnderline {
    to { width: 100%; }
}

/* =========================================
   STYLE UNTUK OVERLAY MENU (ANIMASI DIPERBARUI)
   ========================================= */
.menu-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #171717;
    z-index: 100;
    transition: top 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.menu-overlay.active {
    top: 0;
}

.menu-wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,224L48,229.3C96,235,192,245,288,218.7C384,192,480,128,576,128C672,128,768,192,864,197.3C960,203,1056,149,1152,144C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: waveMove 15s ease-in-out infinite alternate;
    z-index: 1;
    pointer-events: none;
}

.menu-header {
    position: absolute;
    top: 40px;
    left: 100px;
    right: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    
    /* Animasi Staggered Header */
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.6s ease;
}

.menu-overlay.active .menu-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.contact-us-btn {
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.contact-us-btn:hover {
    color: #ff66a3;
}

.menu-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 25vw;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.06);
    z-index: -1;
    pointer-events: none;
    letter-spacing: 2vw;
    white-space: nowrap;
    
    /* Animasi Staggered Watermark */
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
    transition: opacity 1s ease, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-overlay.active .menu-bg-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition-delay: 0.3s;
}

.menu-cards-container {
    display: flex;
    gap: 50px;
    position: relative; 
    z-index: 20;
    margin-top: -60px;
    width: 100%;
    max-width: 100%; 
    overflow-x: auto;
    overflow-y: hidden;
    padding: 50px 100px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch; 
    touch-action: pan-x; 
    perspective: 1500px; 
}

.menu-cards-container::-webkit-scrollbar {
    display: none;
}

.menu-card {
    position: relative;
    width: 260px;
    height: 380px;
    flex: 0 0 auto; 
    
    /* Animasi Staggered Cards (Bouncy & 3D Flip) */
    opacity: 0;
    transform: translateY(150px) scale(0.8) rotateX(-15deg);
    transform-origin: bottom center;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-overlay.active .menu-card {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
}

.card-backdrop {
    position: absolute;
    top: 50px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #2a2a2a;
    border-radius: 12px;
    z-index: -1;
}

.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    -webkit-user-drag: none; 
}

.card-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: black;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 85%;
    justify-content: space-between;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-btn:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.menu-close-btn {
    position: absolute;
    bottom: 90px;
    left: 50%; 
    width: 45px;
    height: 45px;
    background-color: white;
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    
    /* Animasi Staggered Close Button (Spin & Scale) */
    opacity: 0;
    transform: translateX(-50%) translateY(30px) rotate(-90deg) scale(0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-overlay.active .menu-close-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.7s; 
}

.menu-overlay.active .menu-close-btn:hover {
    transform: translateX(-50%) scale(1.1) rotate(90deg); 
    transition: all 0.3s ease 0s;
}

.menu-footer {
    position: absolute;
    bottom: 50px;
    left: 100px;
    right: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 50; 
    
    /* Animasi Staggered Footer */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.menu-overlay.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.footer-left .say-hello {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
}

.footer-left .email {
    font-size: 1rem;
    font-weight: 500;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-right .follow-us {
    font-size: 1rem;
    font-weight: 500;
}

.social-icons-menu {
    display: flex;
    gap: 20px;
}

.social-icons-menu i {
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.social-icons-menu i:hover {
    color: #ff66a3;
    transform: scale(1.2);
}

/* =========================================
   SECTION 5.12: GOALS APP (BACKGROUND DARI 3 POTONGAN GAMBAR)
   ========================================= */
.goals-app-section {
    background-color: #b79196; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.goals-app-images {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    min-width: 1200px; 
    z-index: 5;
}

.goals-mockup-img-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: auto;
    object-fit: cover;
    display: block; 
    opacity: 0.95; 
}

.goals-mockup-img-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: auto;
    object-fit: cover;
    display: block; 
    opacity: 0.95; 
}

.goals-mockup-img-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: auto;
    object-fit: cover;
    display: block; 
    opacity: 0.95; 
}

.goals-app-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.goals-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.goals-heading {
    font-size: 11rem; 
    font-weight: 800;
    line-height: 1;
    margin: 0;
    display: flex;
    gap: 20px;
    letter-spacing: -3px;
}

.goals-heading .solid {
    color: white;
}

.goals-heading .outline {
    color: transparent;
    -webkit-text-stroke: 2px white;
}

.goals-subheading {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    margin: 10px 0 0 8px; 
    text-transform: uppercase;
}

#goals-app .scroll-down-container {
    left: auto;
    right: 120px; 
    transform: translateX(0);
    bottom: 150px; 
}

/* =========================================
   SECTION 5.13: TESTIMONIALS (UPDATED LAYOUT)
   ========================================= */
.testimonials-section {
    background-color: #1a1a1c; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.testimonials-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin-top: 30px; /* TURUN KE BAWAH: Awalnya -60px */
}

.testimonials-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 30px 0; /* Menyesuaikan agar gallery lebih terangkat */
    display: flex;
    justify-content: center;
    gap: 20px;
    letter-spacing: -2px;
}

.testimonials-heading .solid {
    color: white;
}

.testimonials-heading .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px white;
}

.clients-gallery {
    position: relative;
    width: 100%;
    height: 300px; /* DIPERKECIL: Agar slider naik ke atas (awalnya 380px) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px; /* DIPERKECIL: Untuk menaikkan slider */
}

.main-client-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    z-index: 10;
}

.client-main {
    width: 100%; /* Disesuaikan agar memenuhi wrapper */
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: opacity 0.3s ease; /* Transisi halus untuk animasi ganti foto */
}

/* Class tambahan untuk animasi berganti foto / konten */
.fade-out {
    opacity: 0 !important;
}

.quote-mark {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-family: Georgia, serif;
    line-height: 1;
    background: linear-gradient(135deg, #4facfe 0%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 20;
}

.client-float {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-float:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Penyesuaian posisi gambar client melayang (karena tinggi container dikecilkan) */
.pos-1 { width: 70px; height: 70px; top: 80px; left: 18%; }
.pos-2 { width: 45px; height: 45px; top: 180px; left: 28%; }
.pos-3 { width: 55px; height: 55px; top: 210px; left: 10%; }
.pos-4 { width: 50px; height: 50px; top: 110px; right: 28%; }
.pos-5 { width: 65px; height: 65px; top: 40px; right: 12%; }
.pos-6 { width: 55px; height: 55px; top: 200px; right: 16%; }

.glow-green { box-shadow: 0 0 25px 5px rgba(0, 255, 128, 0.2); }
.glow-purple { box-shadow: 0 0 25px 5px rgba(138, 43, 226, 0.2); }
.glow-red { box-shadow: 0 0 25px 5px rgba(255, 50, 50, 0.2); }

.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 20; /* Agar di atas tombol scrolldown kalau berdekatan */
    margin-top: 0px; /* NAIK KE ATAS */
}

.nav-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a2be2, #4facfe);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-arrow:hover {
    transform: scale(1.1);
}

.testimonial-body {
    flex: 1;
    padding: 0 30px;
    transition: opacity 0.3s ease; /* Transisi halus untuk animasi teks */
}

.t-text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    color: white;
    margin-bottom: 15px;
}

.t-author {
    font-size: 0.8rem;
    color: #cccccc;
}

.author-name {
    color: #5c67ff;
    font-weight: 700;
}

#testimonials .scroll-down-container {
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}

/* =========================================
   SECTION 5.14: NEWSLETTER
   ========================================= */
.newsletter-section {
    background-color: #171719; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    padding-top: 80px; /* Memberikan ruang agar pas di tengah */
}

.newsletter-header-content {
    text-align: center;
    max-width: 800px;
    margin-bottom: 50px;
    z-index: 10;
}

.newsletter-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: white;
    letter-spacing: -1px;
}

.newsletter-desc {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.6;
}

.newsletter-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    z-index: 10;
    margin-bottom: 50px;
}

.newsletter-image-container {
    width: 45%;
    display: flex;
    justify-content: center;
}

.newsletter-mailbox-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.newsletter-form-container {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nl-input {
    width: 100%;
    padding: 20px 25px;
    background-color: #2c2c2c;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.nl-input::placeholder {
    color: #888;
}

.nl-input:focus {
    background-color: #3a3a3a;
    box-shadow: 0 0 0 2px #5c67ff;
}

.nl-btn {
    width: 100%;
    padding: 20px 25px;
    background-color: white;
    color: #111;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.nl-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/* =========================================
   SECTION 5.15: CONNECT
   ========================================= */
.connect-section {
    background: linear-gradient(135deg, #b000cc 0%, #ff7b00 50%, #003366 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}

.connect-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    z-index: 10;
    padding: 0 100px;
    box-sizing: border-box;
}

.connect-left {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.connect-title-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.connect-bg-text {
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 7rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.08);
    z-index: -1;
    margin: 0;
    letter-spacing: 2px;
}

.connect-heading {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0;
    color: white;
    letter-spacing: -1px;
}

.connect-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.connect-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.connect-input {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.connect-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.connect-input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.connect-btn {
    width: 100%;
    padding: 14px 25px;
    background-color: white;
    color: #111;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
    margin-top: 5px;
}

.connect-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

.connect-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.connect-character {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
    animation: floatCharacter 4s ease-in-out infinite;
}

@keyframes floatCharacter {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.connect-footer {
    position: absolute;
    bottom: 40px;
    left: 100px;
    display: flex;
    gap: 30px;
    z-index: 10;
}

.connect-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.whatsapp-float {
    position: absolute;
    bottom: 120px;
    right: 100px;
    width: 55px;
    height: 55px;
    background-color: white;
    color: #111;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 20;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================================
   SECTION 5.16: FOOTER
   ========================================= */
.footer-section {
    background-color: #171719; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.footer-content-wrapper {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    padding: 0 50px;
    z-index: 10;
    margin-top: -60px; 
}

.footer-headline {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: white;
    letter-spacing: -1px;
}

.footer-subheadline {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #aaaaaa;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    font-weight: 600;
}

.footer-subheadline .heart {
    color: #ff3b3b;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #888888;
    margin: 0 auto 50px auto;
    max-width: 800px;
}

.footer-links-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-bottom: 50px;
    text-align: left;
}

.footer-column h4 {
    font-size: 0.85rem;
    color: #777777;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-column li {
    margin-bottom: 18px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff66a3;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-social-icons i {
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
}

.footer-social-icons i:hover {
    color: #ff66a3;
    transform: scale(1.2);
}

.footer-bottom-bar {
    position: absolute;
    bottom: 50px;
    left: 100px;
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    z-index: 10;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1200px) {
    .hero-text-outline, .hero-text-solid, .hero-text-plus { font-size: 6rem; }
    .main-header, .menu-header, .menu-footer { left: 50px; right: 50px; }
    .hero-section, .about-section, .services-section, .app-dev-section, .seo-section, .content-marketing-section, .graphic-design-section, .logo-design-section, .smm-section, .web-dev-section, .production-section, .digital-printing-section, .our-works-section, .goals-app-section, .testimonials-section, .newsletter-section, .footer-section { padding-left: 50px; padding-right: 50px; }
    .app-dev-section, .seo-section, .content-marketing-section, .graphic-design-section, .logo-design-section, .smm-section, .web-dev-section, .production-section, .digital-printing-section { padding-left: 0; padding-right: 50px; }
    .social-icons, .video-widget { left: 50px; }
    .description-text, .page-indicator-wrapper { right: 50px; }
    
    .about-heading { font-size: 4rem; }
    .services-heading { font-size: 5rem; }
    .our-works-heading { font-size: 5rem; }
    .app-dev-heading, .seo-heading, .content-marketing-heading, .graphic-design-heading, .logo-design-heading, .smm-heading, .web-dev-heading, .production-heading, .digital-printing-heading { font-size: 4.5rem; }
    .goals-heading { font-size: 7rem; }
    .testimonials-heading { font-size: 4.5rem; }
    
    .app-dev-images, .seo-images, .content-marketing-images, .graphic-design-images, .logo-design-images, .smm-images, .web-dev-images, .production-images, .digital-printing-images { width: 400px; } 
    .vertical-line-right { right: 60px; }

    /* Connect Section */
    .connect-content { padding: 0 50px; }
    .connect-footer { left: 50px; }
    .whatsapp-float { right: 50px; }
    
    /* Footer Section */
    .footer-links-grid { gap: 80px; }
    .footer-bottom-bar { left: 50px; gap: 40px; }
}

@media (max-width: 1024px) {
    .hero-text-outline, .hero-text-solid, .hero-text-plus { font-size: 5rem; }
    .about-heading { font-size: 3.5rem; }
    .about-illustration { height: 250px; }
    .top-left-img { width: 250px; }
    .bottom-right-img { width: 350px; }
    
    .app-dev-section, .seo-section, .content-marketing-section, .graphic-design-section, .logo-design-section, .smm-section, .web-dev-section, .production-section, .digital-printing-section, .our-works-section, .goals-app-section, .testimonials-section, .newsletter-section { flex-direction: column; text-align: center; gap: 40px; justify-content: flex-start; padding: 150px 50px 0; }
    .app-dev-content, .seo-content, .content-marketing-content, .graphic-design-content, .logo-design-content, .smm-content, .web-dev-content, .production-content, .digital-printing-content, .our-works-content { margin-left: 0; }
    .our-works-heading { justify-content: center; }
    .goals-title-wrapper { align-items: center; }
    
    .app-dev-images, .seo-images, .content-marketing-images, .graphic-design-images, .logo-design-images, .smm-images, .web-dev-images, .production-images, .digital-printing-images { display: none; } 
    .vertical-line-right { display: none; } 

    .pos-1 { left: 10%; }
    .pos-4 { right: 10%; }

    /* Responsive untuk Newsletter */
    .newsletter-body {
        flex-direction: column;
        gap: 40px;
    }
    .newsletter-image-container, .newsletter-form-container {
        width: 80%;
    }

    /* Responsive untuk Connect */
    .connect-section { padding-top: 100px; }
    .connect-content { flex-direction: column; text-align: center; gap: 40px; padding: 0 50px; }
    .connect-right { justify-content: center; }
    .connect-bg-text { left: 50%; transform: translateX(-50%); }

    /* Responsive untuk Footer */
    .footer-headline { font-size: 3.5rem; }
    .footer-bottom-bar { flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .main-header, .menu-header, .menu-footer { top: 20px; left: 20px; right: 20px; }
    .hero-section, .about-section, .services-section, .app-dev-section, .seo-section, .content-marketing-section, .graphic-design-section, .logo-design-section, .smm-section, .web-dev-section, .production-section, .digital-printing-section, .our-works-section, .goals-app-section, .testimonials-section, .newsletter-section { padding-left: 20px; padding-right: 20px; align-items: center; text-align: center; }
    
    .hero-text-outline, .hero-text-solid, .hero-text-plus { font-size: 3.5rem; }
    .hero-text-solid { margin-top: 0; }
    .description-text { display: none; }
    
    .social-icons {
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        gap: 20px;
    }
    
    .video-widget { display: none; }
    
    .page-indicator-wrapper {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        gap: 15px;
    }
    
    .indicator { width: 25px; }
    .indicator-icon { font-size: 1rem; top: -25px; }

    .about-heading { font-size: 2.5rem; flex-wrap: wrap; }
    .about-illustration { height: 200px; }
    .about-description { font-size: 0.85rem; }

    .services-heading { font-size: 3.5rem; }
    .services-heading .solid, .services-heading .outline { display: inline-block; } 
    .top-left-img, .bottom-right-img { display: none; } 
    
    .app-dev-heading, .seo-heading, .content-marketing-heading, .graphic-design-heading, .logo-design-heading, .smm-heading, .web-dev-heading, .production-heading, .digital-printing-heading { font-size: 3.5rem; }
    
    .our-works-heading { font-size: 4rem; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .goals-heading { font-size: 4rem; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .goals-subheading { font-size: 0.9rem; padding-left: 0; margin-top: 0; align-self: center; }
    .goals-app-images { width: 120%; min-width: unset; }

    .testimonials-heading { font-size: 3rem; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .client-float { display: none; } /* Hide floating images on mobile to keep layout clean */
    .t-text { font-size: 1.1rem; }
    .main-client-wrapper { width: 200px; height: 200px; }
    .quote-mark { font-size: 6rem; bottom: -30px; }

    /* Responsive untuk Newsletter */
    .newsletter-title { font-size: 3.5rem; }
    .newsletter-image-container, .newsletter-form-container { width: 100%; }

    /* Responsive untuk Connect */
    .connect-section { padding-left: 20px; padding-right: 20px; }
    .connect-content { padding: 0 20px; }
    .connect-heading { font-size: 3.5rem; }
    .connect-bg-text { font-size: 4.5rem; }
    .connect-footer { flex-direction: column; bottom: 80px; left: 20px; gap: 10px; }
    .whatsapp-float { display: none; }

    /* Responsive untuk Footer */
    .footer-links-grid { flex-direction: column; gap: 40px; text-align: center; }
    .footer-bottom-bar { position: relative; bottom: 0; left: 0; justify-content: center; flex-direction: column; gap: 15px; margin-top: 40px; text-align: center; }
    .footer-content-wrapper { margin-top: 0; padding: 0 20px; }
    .footer-headline { font-size: 2.5rem; }

    .scroll-down-container, #our-works .scroll-down-container, #goals-app .scroll-down-container, #testimonials .scroll-down-container { display: none; }
    .logo-shield { width: 100px; }
    .get-in-touch-btn { display: none; } 
    
    /* Overlay mobile */
    .menu-cards-container { padding: 20px; gap: 20px; }
    .menu-card { width: 140px; height: 200px; }
    .menu-bg-text { font-size: 40vw; letter-spacing: 5px; }
    .menu-footer { bottom: 30px; }
    .footer-left .email { font-size: 0.95rem; }
    .menu-close-btn { bottom: 110px; } 
}

@media (max-width: 480px) {
    .hero-text-outline, .hero-text-solid, .hero-text-plus { font-size: 2.5rem; }
    .social-icons { bottom: 100px; }
    .menu-card { width: 120px; height: 180px; }
    .card-btn { padding: 8px 10px; font-size: 0.7rem; }
    .about-heading, .services-heading, .app-dev-heading, .seo-heading, .content-marketing-heading, .graphic-design-heading, .logo-design-heading, .smm-heading, .web-dev-heading, .production-heading, .digital-printing-heading { font-size: 2rem; }
    .our-works-heading { font-size: 2.5rem; }
    .goals-heading { font-size: 3rem; }
    .testimonials-heading { font-size: 2.5rem; }
    .newsletter-title { font-size: 2.5rem; }
    .connect-heading { font-size: 2.5rem; }
    .connect-bg-text { font-size: 3.5rem; }
    .footer-headline { font-size: 2rem; }
    .about-illustration { height: 160px; margin-bottom: 20px; }
}