@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Moon Heavy';
    src: url(fonts/moon_get-Heavy.otf) format('opentype');
}

* {
    margin: 0;
    padding: 0;
    /* border: 1px solid red; */
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url(img/Background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 350px;
    background-color: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    transition: transform 0.4s ease;
}

.logo:hover img {
    transform: rotate(-10deg);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.nav-links a {
    display: block;
    padding: 30px 16px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Left to right underline animation */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 25px;
    left: 16px;
    background-color: white;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: calc(100% - 32px);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'DM Sans', sans-serif;
    text-align: left;
    max-width: 1000px;
    width: 90%;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 40px;
    margin: 0;
    margin-bottom: -10px;
    color: white;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 150px;
    font-weight: 900;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1;
}

.hero-content p {
    font-size: 25px;
    margin-top: -25px;
    line-height: 0.9;
    max-width: 800px;
}

.hero-content p span {
    color: #ff006e;
    font-weight: 600;
}

.hero-content .btn {
    color: white;
    font-weight: 900;
    text-decoration: none;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 25px;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.6px);
    -webkit-backdrop-filter: blur(3.6px);
    border: 1px solid rgba(255, 255, 255, 0.23);
    transition: all ease-in-out 0.3s;
    display: inline-block;
}

.hero-content .btn:hover {
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.6px);
    -webkit-backdrop-filter: blur(3.6px);
    border: 1px solid rgba(255, 255, 255, 0.23);
}

/* ===== PORTFOLIO SECTION ===== */
#portfolio {
    background-image: linear-gradient(0deg, #00a2ff, #e00061, #e00061dc, #e000617c, #ff2e8900);
}

.page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.section-content {
    max-width: 100%;
    margin: 0 auto;
    color: white;
    font-family: 'DM Sans', sans-serif;
    padding: 0 20px;
}

.section-title1 {
    font-size: 75px;
    font-weight: 900;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    color: white;
    text-decoration: underline;
    text-decoration-color: #ff9900;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.section-title1:hover {
    transform: scale(1.05);
}

.collab {
    text-align: center;
    font-weight: 500;
}

/* Portfolio Container */
.portfolio-container {
    width: 100%;
    margin: 0 auto;
}

.card-list {
    display: flex;
    gap: 20px;
    padding: 40px 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card Styles */
.card {
    flex: 0 0 480px;
    background-color: white;
    padding: 17px;
    border-radius: 30px;
    height: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
}

.card:hover {
    transform: scale(0.98);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.card .card-image img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 14px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.text-card1 {
    background-color: rgb(233, 233, 233);
    border-radius: 8px;
    padding: 4px;
    max-width: fit-content;
    margin-top: 3px;
    color: black;
    font-size: 14px;
}

.text-card {
    color: black;
    font-size: 28px;
    text-decoration: none;
    font-weight: 900;
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
}

.text-card:hover {
    color: #ff9900;
    transform: translateY(-3px);
}

.text-card h1 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.collabimg {
    display: block;
    width: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .card {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .section-title1 {
        font-size: 50px;
    }
    
    .card {
        flex: 0 0 450px;
        padding: 20px;
    }
    
    .text-card {
        font-size: 22px;
    }
    
    .card-list {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .section-title1 {
        font-size: 36px;
    }
    
    .card {
        flex: 0 0 320px;
        padding: 15px;
        border-radius: 20px;
    }

    .collabimg {
        width: 30px;
        padding: 5px;
    }

    .collab {
        font-size: 27px;
    }
    
    .card-list {
        gap: 20px;
        padding: 30px 0;
    }
    
    .text-card {
        font-size: 18px;
    }
    
    .text-card1 {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ===== PARTNERS SECTION ===== */
#partners {
    background-image: linear-gradient(180deg, #00a2ff, #00a2ff00);
}

.page-section1 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.section-content1 {
    max-width: 100%;
    margin: 0 auto;
    color: white;
    font-family: 'DM Sans', sans-serif;
    padding: 0 20px;
}

.section-title2 {
    font-size: 75px;
    font-weight: 900;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    color: white;
    text-decoration: underline;
    text-decoration-color: #ff006e;
    margin-bottom: 50px;
}

/* Partners Container Styling */
.partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    flex-wrap: wrap;
}

.partner-card {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: scale(1.05);
}

.partner-card img {
    width: 290px;
    height: auto;
    filter: grayscale(100%); /* Membuat gambar hitam putih */
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%); /* Mengembalikan warna asli saat hover */
}

/* ===== RESPONSIVE STYLING ===== */

/* Tablet */
@media (max-width: 1295px) {
    .section-title2 {
        font-size: 80px;
        margin-bottom: 40px;
    }

    #partners {
        background-color: #55c9ff;
    }
    
    .partners-container {
        gap: 60px;
    }
    
    .partner-card img {
        width: 200px;
    }
}

@media (max-width: 1117px) {
    .section-title2 {
        font-size: 80px;
        margin-bottom: 40px;
    }
    
    .partners-container {
        gap: 60px;
    }
    
    .partner-card img {
        width: 200px;
    }
}

@media (max-width: 1024px) {
    .section-title2 {
        font-size: 60px;
        margin-bottom: 40px;
    }
    
    .partners-container {
        gap: 60px;
    }
    
    .partner-card img {
        width: 140px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .section-title2 {
        font-size: 48px;
        margin-bottom: 30px;
    }
    
    .partners-container {
        gap: 40px;
    }

    #partners {
        background-color: #55c9ff;
    }
    
    .partner-card img {
        width: 200px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .section-title2 {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .partners-container {
        gap: 30px;
        flex-direction: column;
    }
    
    .partner-card img {
        width: 180px;
    }
    
    .section-content1 {
        padding: 0 15px;
    }
}

/* Very Small Mobile */
@media (max-width: 320px) {
    .section-title2 {
        font-size: 28px;
    }
    
    .partner-card img {
        width: 150px;
    }
}

/* ===== TESTIMONI SECTION ===== */

#testimonial {
    background-image: linear-gradient(0deg, #55c9ff, #ff358c, #ff2e8900);
}

.page-section2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between; /* Tambahkan ini */
    padding: 0 50px; /* Tambahkan padding */
}

.section-content2 {
    width: 55%;
    margin: 0 auto;
    color: white;
    font-family: 'DM Sans', sans-serif;
}

.section-title3 {
    font-size: 65px;
    font-weight: 900;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    color: white;
}

.wave-text {
    display: inline-block;
}

.wave-text span {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

/* Animasi untuk setiap huruf dengan delay bertahap */
.wave-text span:nth-child(1) { animation-delay: 0.0s; }
.wave-text span:nth-child(2) { animation-delay: 0.1s; }
.wave-text span:nth-child(3) { animation-delay: 0.2s; }
.wave-text span:nth-child(4) { animation-delay: 0.3s; }
.wave-text span:nth-child(5) { animation-delay: 0.4s; }
.wave-text span:nth-child(6) { animation-delay: 0.5s; }
.wave-text span:nth-child(7) { animation-delay: 0.6s; }
.wave-text span:nth-child(8) { animation-delay: 0.7s; }
.wave-text span:nth-child(9) { animation-delay: 0.8s; }
.wave-text span:nth-child(10) { animation-delay: 0.9s; }
.wave-text span:nth-child(11) { animation-delay: 1.0s; }
.wave-text span:nth-child(12) { animation-delay: 1.1s; }
.wave-text span:nth-child(13) { animation-delay: 1.2s; }
.wave-text span:nth-child(14) { animation-delay: 1.3s; }

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.rating {
    margin: 0;
    padding: 0;
}

/* Tambahkan style untuk container testimoni */
.testimoni-container {
    width: 80%; /* Beri width 50% */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
    gap: 20px; /* Jarak antar kotak */
}

/* Style untuk setiap kotak testimoni */
.testimoni-content1 {
    background-image: linear-gradient(180deg, rgb(255, 90, 200), rgb(255, 146, 219));
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-height: 150px;
}

/* Style untuk rating stars */
.testimoni-content1 .rating {
    color: white;
    margin-bottom: 10px;
}

.testimoni-content1 .rating i {
    margin-right: 2px;
    font-size: 19px;
}

/* Style untuk deskripsi client */
.testimoni-content1 .description-client {
    color: white;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.paragraph1 {
    margin-top: 9px;
}

/* Style untuk underline */
.testimoni-content1 .underline {
    width: 180px;
    height: 2px;
    background: white;
    margin-bottom: 10px;
}

/* Style untuk nama client */
.testimoni-content1 .client-name {
    color: white;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    display: flex; /* Tambahkan flex */
    align-items: center; /* Pusatkan vertikal */
    gap: 5px; /* Jarak antara gambar dan teks */
}

.testimoni-content1 .profile-client {
    width: 60px; /* Ukuran lebih kecil */
    height: 60px; /* Tambahkan height untuk konsistensi */
    border-radius: 50%;
    object-fit: cover; /* Pastikan gambar tidak terdistorsi */
}

/* Style untuk setiap kotak testimoni */
.testimoni-content2 {
    background-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(226, 226, 226));
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    height: fit-content;
}

/* Style untuk rating stars */
.testimoni-content2 .rating {
    color: rgb(27, 27, 27);
    margin-bottom: 10px;
}

.testimoni-content2 .rating i {
    margin-right: 2px;
    font-size: 19px;
}

/* Style untuk deskripsi client */
.testimoni-content2 .description-client {
    color: rgb(27, 27, 27);
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.paragraph2 {
    margin-top: 9px;
}

/* Style untuk underline */
.testimoni-content2 .underline {
    width: 190px;
    height: 2px;
    background: black;
    margin-bottom: 10px;
}

/* Style untuk nama client */
.testimoni-content2 .client-name {
    color: rgb(27, 27, 27);
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    display: flex; /* Tambahkan flex */
    align-items: center; /* Pusatkan vertikal */
    gap: 5px; /* Jarak antara gambar dan teks */
}

.testimoni-content2 .profile-client {
    width: 60px; /* Ukuran lebih kecil */
    height: 60px; /* Tambahkan height untuk konsistensi */
    border-radius: 50%;
    object-fit: cover; /* Pastikan gambar tidak terdistorsi */
}

/* Style untuk setiap kotak testimoni */
.testimoni-content3 {
    background-image: linear-gradient(180deg, rgb(126, 218, 255), rgb(50, 172, 253));
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    height: fit-content;
}

/* Style untuk rating stars */
.testimoni-content3 .rating {
    color: rgb(27, 27, 27);
    margin-bottom: 10px;
}

.testimoni-content3 .rating i {
    margin-right: 2px;
    font-size: 19px;
}

/* Style untuk deskripsi client */
.testimoni-content3 .description-client {
    color: rgb(27, 27, 27);
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.paragraph2 {
    margin-top: 9px;
}

/* Style untuk underline */
.testimoni-content3 .underline {
    width: 180px;
    height: 2px;
    background: black;
    margin-bottom: 10px;
}

/* Style untuk nama client */
.testimoni-content3 .client-name {
    color: rgb(27, 27, 27);
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    display: flex; /* Tambahkan flex */
    align-items: center; /* Pusatkan vertikal */
    gap: 5px; /* Jarak antara gambar dan teks */
}

.testimoni-content3 .profile-client {
    width: 60px; /* Ukuran lebih kecil */
    height: 60px; /* Tambahkan height untuk konsistensi */
    border-radius: 50%;
    object-fit: cover; /* Pastikan gambar tidak terdistorsi */
}

/* Style untuk setiap kotak testimoni */
.testimoni-content4 {
    background-image: linear-gradient(180deg, rgb(255, 129, 12), rgb(255, 176, 6));
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    height: fit-content;
}

/* Style untuk rating stars */
.testimoni-content4 .rating {
    color: white;
    margin-bottom: 10px;
}

.testimoni-content4 .rating i {
    margin-right: 2px;
    font-size: 19px;
}

/* Style untuk deskripsi client */
.testimoni-content4 .description-client {
    color: white;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.paragraph2 {
    margin-top: 9px;
}

/* Style untuk underline */
.testimoni-content4 .underline {
    width: 180px;
    height: 2px;
    background: white;
    margin-bottom: 10px;
}

/* Style untuk nama client */
.testimoni-content4 .client-name {
    color: white;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    display: flex; /* Tambahkan flex */
    align-items: center; /* Pusatkan vertikal */
    gap: 5px; /* Jarak antara gambar dan teks */
}

.testimoni-content4 .profile-client {
    width: 60px; /* Ukuran lebih kecil */
    height: 60px; /* Tambahkan height untuk konsistensi */
    border-radius: 50%;
    margin-right: 5px;
    object-fit: cover; /* Pastikan gambar tidak terdistorsi */
}

/* ===== ANIMASI HOVER UNTUK CARD TESTIMONI ===== */

.testimoni-content1,
.testimoni-content2,
.testimoni-content3,
.testimoni-content4 {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Efek hover dasar untuk semua card */
.testimoni-content1:hover,
.testimoni-content2:hover,
.testimoni-content3:hover,
.testimoni-content4:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Efek overlay elegan saat hover */
.testimoni-content1::before,
.testimoni-content2::before,
.testimoni-content3::before,
.testimoni-content4::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.testimoni-content1:hover::before,
.testimoni-content2:hover::before,
.testimoni-content3:hover::before,
.testimoni-content4:hover::before {
  left: 100%;
}

/* Animasi untuk rating stars */
.testimoni-content1:hover .rating i,
.testimoni-content2:hover .rating i,
.testimoni-content3:hover .rating i,
.testimoni-content4:hover .rating i {
  animation: starPulse 0.6s ease-in-out;
}

.testimoni-content1:hover .rating i:nth-child(2),
.testimoni-content2:hover .rating i:nth-child(2),
.testimoni-content3:hover .rating i:nth-child(2),
.testimoni-content4:hover .rating i:nth-child(2) {
  animation-delay: 0.1s;
}

.testimoni-content1:hover .rating i:nth-child(3),
.testimoni-content2:hover .rating i:nth-child(3),
.testimoni-content3:hover .rating i:nth-child(3),
.testimoni-content4:hover .rating i:nth-child(3) {
  animation-delay: 0.2s;
}

.testimoni-content1:hover .rating i:nth-child(4),
.testimoni-content2:hover .rating i:nth-child(4),
.testimoni-content3:hover .rating i:nth-child(4),
.testimoni-content4:hover .rating i:nth-child(4) {
  animation-delay: 0.3s;
}

.testimoni-content1:hover .rating i:nth-child(5),
.testimoni-content2:hover .rating i:nth-child(5),
.testimoni-content3:hover .rating i:nth-child(5),
.testimoni-content4:hover .rating i:nth-child(5) {
  animation-delay: 0.4s;
}

/* Animasi untuk underline */
.testimoni-content1:hover .underline,
.testimoni-content2:hover .underline,
.testimoni-content3:hover .underline,
.testimoni-content4:hover .underline {
  animation: underlineExpand 0.5s ease-out forwards;
}

/* Animasi untuk profile picture */
.testimoni-content1:hover .profile-client,
.testimoni-content2:hover .profile-client,
.testimoni-content3:hover .profile-client,
.testimoni-content4:hover .profile-client {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Animasi untuk teks deskripsi */
.testimoni-content1:hover .description-client,
.testimoni-content2:hover .description-client,
.testimoni-content3:hover .description-client,
.testimoni-content4:hover .description-client {
  transform: translateX(5px);
  transition: transform 0.3s ease 0.1s;
}

/* Keyframes untuk animasi */
@keyframes starPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
    color: #ffc355;
  }
}

@keyframes underlineExpand {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: var(--underline-width, 180px);
    opacity: 1;
  }
}

/* Tambahkan variabel CSS untuk width underline */
.testimoni-content1 .underline {
  --underline-width: 180px;
}

.testimoni-content2 .underline {
  --underline-width: 190px;
}

.testimoni-content3 .underline {
  --underline-width: 180px;
}

.testimoni-content4 .underline {
  --underline-width: 180px;
}

/* Efek border radius yang halus saat hover */
.testimoni-content1,
.testimoni-content2,
.testimoni-content3,
.testimoni-content4 {
  border-radius: 15px;
}

.testimoni-content1:hover,
.testimoni-content2:hover,
.testimoni-content3:hover,
.testimoni-content4:hover {
  border-radius: 20px;
}

/* Efek transisi untuk semua elemen child */
.testimoni-content1 > *,
.testimoni-content2 > *,
.testimoni-content3 > *,
.testimoni-content4 > * {
  transition: all 0.3s ease;
}

/* Tambahan efek glow untuk card tertentu */
.testimoni-content1:hover {
  box-shadow: 
    0 15px 30px rgba(255, 90, 200, 0.3),
    0 5px 15px rgba(255, 90, 200, 0.2);
}

.testimoni-content2:hover {
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.15);
}

.testimoni-content3:hover {
  box-shadow: 
    0 15px 30px rgba(50, 172, 253, 0.3),
    0 5px 15px rgba(50, 172, 253, 0.2);
}

.testimoni-content4:hover {
  box-shadow: 
    0 15px 30px rgba(255, 185, 34, 0.3),
    0 5px 15px rgba(255, 177, 10, 0.2);
}

/* Untuk layar mobile - sembunyikan seluruh section testimoni */
@media screen and (max-width: 1295px) {
    #testimonial {
        display: none !important;
    }
}

/* ===== CONTACTS SECTION ===== */

#commission {
    background-image: linear-gradient(180deg, #55c9ff, rgba(255, 28, 153, 0.616), #00000000);
}

.page-section3 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between; /* Tambahkan ini */
    padding: 0 50px; /* Tambahkan padding */
}

.section-content3 {
    width: 55%;
    margin: 0 auto;
    color: white;
    font-family: 'DM Sans', sans-serif;
}

.section-title4 {
    font-size: 55px;
    font-weight: 900;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #ff9900;
    font-family: 'DM Sans', sans-serif;
    color: white;
}

.status-comms {
    text-align: center;
    font-size: 22px;
    color: #2aff8a;
    margin-top: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 25px;
}
/* Lingkaran berkedip */
.blinking-circle {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #2aff8a;
    border-radius: 50%;
    position: relative;
    animation: blink 1.5s infinite ease-in-out;
}

/* Efek cahaya di sekitar lingkaran */
.blinking-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(42, 255, 138, 0.3);
    animation: pulse 1.5s infinite ease-in-out;
}

.btn-order {
    display: flex;
    justify-content: center;
}

.order-now {
    display: flex;
    margin-top: 15px;
    padding: 15px 35px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: white;
    text-decoration: none;
    font-size: 25px;
    background-color: #03e468;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.order-now:hover {
    background-color: rgba(3, 228, 104, 0.9);
    border-color: #40ff96;
    box-shadow: 0 0 20px #03e468a6,
                inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Animasi berkedip */
@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

/* Animasi pulse untuk efek cahaya */
@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.2);
    }
}


/* Styling untuk gambar profil */
.gusti-profile {
    width: 240px;
    display: flex;
    margin: 0 auto;
    padding: 20px;
    border-radius: 50%;
    
    /* Animasi bounce */
    animation: soft-bounce 2.5s ease-in-out infinite;
    
    /* Efek transisi halus */
    transition: all 0.3s ease;
}

/* Animasi bounce halus dan pelan */
@keyframes soft-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsif untuk perangkat mobile */
@media (max-width: 1295px) {
    .section-content3 {
        width: 80%;
    }

    .section-title4 {
        font-size: 45px;
    }

    .gusti-profile {
        width: 180px;
        padding: 18px;
    }
    
    .status-comms {
        font-size: 18px;
        padding: 14px 22px;
    }
}

@media (max-width: 768px) {
    .section-content3 {
        width: 100%;
    }

    .section-title4 {
        font-size: 35px;
    }

    .gusti-profile {
        width: 130px;
        padding: 15px;
    }
    
    .status-comms {
        font-size: 14px;
        padding: 12px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .blinking-circle {
        display: none
    }
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 4px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.footer-text {
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 20px 0;
    font-weight: 600;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .footer-text {
        background-color: transparent !important;
    }
}

/* Active state for hamburger menu */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== BLUR EFFECT FOR NAVIGATION ON SCROLL ===== */
nav.scrolled {
    background: #ffffff15 !important;
    backdrop-filter: blur(9px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav.scrolled .nav-links a {
    color: white;
}

nav.scrolled .nav-links a::after {
    background-color: white;
}

nav.scrolled .hamburger .bar {
    background-color: white;
}

/* Ensure smooth scrolling accounts for fixed nav */
html {
    scroll-padding-top: 80px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1400px) {
    nav {
        padding: 0 200px;
    }
}

@media (max-width: 1200px) {
    nav {
        padding: 0 100px;
    }
    
    .nav-links a {
        font-size: 17px;
        padding: 30px 12px;
    }
    
    .hero-content h1 {
        font-size: 120px;
    }
}

@media (max-width: 992px) {
    nav {
        padding: 0 50px;
    }
    
    .nav-links a {
        font-size: 16px;
        padding: 30px 10px;
    }
    
    .hero-content h1 {
        font-size: 100px;
    }
    
    .hero-content h2 {
        font-size: 35px;
    }
    
    .hero-content p {
        font-size: 22px;
    }
    
    .hero-content .btn {
        font-size: 22px;
    }
    
    .section-title1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
        flex-wrap: nowrap;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        height: 80px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background-color: rgba(0, 0, 0, 0.781);
        flex-direction: column;
        display: none;
        padding: 80px 0 20px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
        justify-content: flex-start;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        text-align: center;
        font-size: 24px;
        padding: 25px 16px;
        width: 100%;
        font-weight: 400;
    }

    .nav-links a::after {
        bottom: 15px;
    }

    .nav-links a:hover {
        background-color: rgba(255, 0, 110, 0.8);
    }
    
    /* Hero content mobile adjustments */
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
        padding: 120px 20px 60px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 70px;
        letter-spacing: 0px;
        line-height: 0.9;
        margin-bottom: 15px;
    }
    
    .hero-content h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .hero-content p {
        font-size: 18px;
        margin-top: -15px;
        line-height: 1.2;
        max-width: 100%;
    }
    
    .hero-content .btn {
        font-size: 18px;
        padding: 12px 30px;
        margin-top: 10px;
    }
    
    .section-spacing {
        padding-top: 60px !important;
    }
    
    html {
        scroll-padding-top: 60px;
    }
    
    nav.scrolled .nav-links {
        background-color: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
    }
}

@media (max-width: 576px) {
    nav {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 100px 15px 40px;
    }
    
    .hero-content h1 {
        font-size: 50px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-content .btn {
        font-size: 16px;
        margin-top: 7px;
        padding: 5px 15px;
    }
    
    .nav-links a {
        font-size: 20px;
        padding: 20px 16px;
    }
    
    .section-spacing {
        padding-top: 50px !important;
    }
    
    html {
        scroll-padding-top: 50px;
    }
    
    .section-title1 {
        font-size: 36px;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .logo img {
        width: 35px;
    }
}

