/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&display=swap');

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
    font-size: 19px;
    color: #1E3A5F;
    background: #FFFFFF;
    line-height: 1.6;
}

.main-container {
    max-width: 1600px;
    margin: 0 auto;
    background: #fff;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: #1E3A5F;
    line-height: 1.3;
}

h1 { font-size: 38px; margin-bottom: 20px; }
h2 { font-size: 36px; margin-bottom: 30px; }
h3 { font-size: 34px; margin-bottom: 15px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #1E3A5F;
    color: white;
    font-size: 12px;
    padding: 8px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.company-name-small {
    font-size: 12px !important;
    font-weight: 400;
    color: white;
    margin: 0;
}

.lang-flags {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-flags img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.2s;
}

.lang-flags img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px #03a8d3;
}

.hotline-top {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.hotline-top:hover {
    color: #03a8d3;
}

/* ===== HEADER MENU ===== */
.header-menu {
    background: #1E3A5F;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.desktop-menu {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.logo-home img {
    width: 48px;
    height: 48px;
    display: block;
}

.desktop-menu .menu-item {
    color: white;
    text-decoration: none;
    font-size: 17px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.desktop-menu .menu-item:hover {
    color: #03a8d3;
    border-bottom-color: #03a8d3;
}

/* ===== HAMBURGER MOBILE ===== */
.hamburger {
    display: none;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
}

.hamburger .logo-mobile img {
    width: 48px;
    height: 48px;
    display: block;
}

#hamburger-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0 10px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #1E3A5F;
    width: 100%;
}

.mobile-nav.active {
    display: flex;
}

.lang-mobile {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 5px 0 15px 0;
    padding: 8px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 40px;
    flex-wrap: wrap;
}

.lang-mobile img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
}

.lang-mobile img:hover {
    transform: scale(1.1);
}

.mobile-nav .menu-item {
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-nav .menu-item:last-child {
    border-bottom: none;
}

/* ===== SLIDESHOW ===== */
.slideshow-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
    max-height: 70vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 25s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }

@keyframes fade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    25% { opacity: 1; }
    35% { opacity: 0; }
    100% { opacity: 0; }
}

.slide-text {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 58, 95, 0.8);
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    max-width: 800px;
    backdrop-filter: blur(5px);
}

.slide-text h2 {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: white;
    font-size: 36px;
    margin-bottom: 10px;
}

.slide-text p {
    color: white;
    font-size: 22px;
    margin: 0;
}

.slide-buttons {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 20px;
}

.btn-slide {
    background: #03a8d3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 19px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-slide:hover {
    background: #1E3A5F;
    transform: translateY(-2px);
}

/* ===== PRODUK ===== */
.section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

.produk-section {
    background: #F5F9FC;
}

.produk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.produk-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.produk-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.produk-card h3 {
    padding: 20px 20px 10px;
    font-size: 34px;
}

.produk-card p {
    padding: 0 20px 30px;
    color: #6B7280;
    font-size: 19px;
}

/* ===== ORDER SECTION 2 KOLOM ===== */
.order-section {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://demolobsterexporter.wordpresswebsitelatenmaken.my.id/imags/slide3.webp') center/cover fixed;
}

.order-2kol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* FORM TETAP SEPERTI SEMULA */
.form-col input,
.form-col select,
.form-col button {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    font-size: 19px;
    border: 2px solid #6B7280;
    border-radius: 5px;
    font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
}

.form-col input:focus,
.form-col select:focus {
    outline: none;
    border-color: #03a8d3;
}

.form-col button {
    background: #03a8d3;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 19px;
    transition: background 0.2s;
}

.form-col button:hover {
    background: #1E3A5F;
}

.checkbox-group {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.checkbox-group label:first-child {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #1E3A5F;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 19px;
    color: #1E3A5F;
}

/* STOCK BADGE */
.stock-badge {
    background: #03a8d3;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; transform: scale(1.02); }
    100% { opacity: 1; }
}

/* FORM INTRO */
.form-intro {
    background: #E6F2F5;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 18px;
    color: #1E3A5F;
    border-left: 4px solid #03a8d3;
}

/* PRIVACY NOTE */
.privacy-note {
    font-size: 14px;
    color: #6B7280;
    margin-top: 15px;
    text-align: center;
}

/* GAMBAR FORM - LEBAR 450PX, TENGAH DI KOLOM 2 */
.image-col {
    display: flex;
    justify-content: center; /* Rata tengah horizontal */
    align-items: center;     /* Rata tengah vertikal */
    height: 100%;
    width: 100%;
}

.image-col img {
    width: 450px;           /* Lebar tetap 450px */
    height: auto;           /* Tinggi mengikuti proporsi */
    max-width: 100%;        /* Tetap responsif jika layar kecil */
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: block;
}

/* ===== PROFIL 2 KOLOM ===== */
.profil-section {
    background: #E6F2F5;
}

.profil-2kol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

/* GAMBAR PROFIL */
.profil-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
}

.profil-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* PARAGRAF PROFIL */
.profil-text p {
    color: #1E3A5F;
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .image-col img {
        width: 350px; /* Lebih kecil di tablet */
    }
}

@media (max-width: 800px) {
    .order-2kol,
    .profil-2kol {
        grid-template-columns: 1fr;
    }
    
    /* Di mobile, gambar tetap tengah */
    .image-col,
    .profil-image {
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .image-col img {
        width: 350px; /* Tetap 350px di mobile */
        max-width: 90%; /* Tapi responsif jika layar sangat kecil */
    }
    
    .profil-image img {
        max-height: 400px;
        margin: 0 auto;
    }
    
    /* Form tetap normal di mobile */
    .form-col input,
    .form-col select,
    .form-col button {
        font-size: 16px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .image-col img {
        width: 280px; /* Lebih kecil di HP */
    }
    
    .profil-image img {
        max-height: 300px;
    }
}

/* ===== STOCK BADGE ===== */
.stock-badge {
    background: #03a8d3;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; transform: scale(1.02); }
    100% { opacity: 1; }
}

/* ===== FORM INTRO ===== */
.form-intro {
    background: #E6F2F5;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 18px;
    color: #1E3A5F;
    border-left: 4px solid #03a8d3;
}

/* ===== PRIVACY NOTE ===== */
.privacy-note {
    font-size: 14px;
    color: #6B7280;
    margin-top: 15px;
    text-align: center;
}

/* ===== PROFIL 2 KOLOM ===== */
.profil-section {
    background: #E6F2F5;
}

.profil-2kol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center; /* Rata tengah vertikal */
}

/* GAMBAR PROFIL - LEBAR 450PX, TENGAH DI KOLOM 1 */
.profil-image {
    display: flex;
    justify-content: center; /* Rata tengah horizontal */
    align-items: center;     /* Rata tengah vertikal */
    height: 100%;
    width: 100%;
}

.profil-image img {
    width: 450px;           /* Lebar tetap 450px */
    height: auto;           /* Tinggi mengikuti proporsi */
    max-width: 100%;        /* Responsif */
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: block;
}

/* PARAGRAF PROFIL - DIPERPANJANG */
.profil-text p {
    color: #1E3A5F;
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 1.8;
}

.profil-text p:first-child {
    margin-top: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .profil-image img {
        width: 350px; /* Lebih kecil di tablet */
    }
}

@media (max-width: 800px) {
    .profil-2kol {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Di mobile, gambar tetap tengah */
    .profil-image {
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .profil-image img {
        width: 350px;
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .profil-image img {
        width: 280px; /* Lebih kecil di HP */
    }
}

/* ===== TESTIMONI ===== */
.testimoni-section {
    background: #F5F9FC;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimoni-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-bottom: 3px solid #03a8d3;
}

.quote {
    font-size: 48px;
    margin-bottom: 10px;
    color: #03a8d3;
}

.testimoni-text {
    font-size: 19px;
    color: #1E3A5F;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimoni-name {
    font-size: 17px;
    color: #6B7280;
    text-align: right;
}

/* ===== TRUST BADGES ===== */
.trust-section {
    background: white;
    padding: 40px 20px;
}

.trust-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F5F9FC;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trust-icon {
    font-size: 28px;
}

.trust-text {
    font-size: 17px;
    color: #1E3A5F;
    font-weight: 500;
}

/* ===== GALLERY ===== */
.gallery-section {
    background: white;
    overflow: hidden;
}

.carousel-horizontal {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #03a8d3 #F0F0F0;
    margin-top: 20px;
    padding: 10px 0;
}

.carousel-horizontal::-webkit-scrollbar {
    height: 8px;
}

.carousel-horizontal::-webkit-scrollbar-track {
    background: #F0F0F0;
}

.carousel-horizontal::-webkit-scrollbar-thumb {
    background: #03a8d3;
    border-radius: 4px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-track img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

/* ===== KONTAK ===== */
.kontak-section {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://demolobsterexporter.wordpresswebsitelatenmaken.my.id/imags/gal3.webp') center/cover fixed;
}

.kontak-2kol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
}

.kontak-info h3 {
    margin-bottom: 20px;
    font-size: 34px;
}

.kontak-info p {
    margin-bottom: 15px;
    font-size: 19px;
}

.kontak-info a {
    color: #03a8d3;
    text-decoration: none;
}

.map-container {
    height: 250px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 5px;
}

/* ===== FOOTER ===== */
footer {
    background: #1E3A5F;
    color: white;
    text-align: center;
    padding: 40px 20px 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.social-icons a {
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain;
}

.copyright {
    font-size: 16px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
}

.copyright a {
    color: #03a8d3;
    text-decoration: none;
}

/* ===== STICKY BUTTONS ===== */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.sticky-buttons.visible {
    opacity: 1;
    pointer-events: all;
}

.wa-float {
    background: #25D366;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-float img {
    width: 30px;
    height: 30px;
}

.scrollup {
    background: #1E3A5F;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-order {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 12px 15px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 2px solid #03a8d3;
}

.btn-form-mobile {
    width: 100%;
    text-align: center;
    padding: 14px 10px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    background: #03a8d3;
    color: white;
    display: block;
    transition: all 0.2s;
}

.btn-form-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    .produk-grid,
    .testimoni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .desktop-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .sticky-buttons {
        display: none; /* Sembunyikan di mobile */
    }
    
    .mobile-sticky-order {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .order-2kol,
    .profil-2kol,
    .kontak-2kol {
        grid-template-columns: 1fr;
    }
    
    .produk-grid,
    .testimoni-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .trust-container {
        gap: 15px;
    }
    
    .trust-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .slideshow-container {
        height: 500px;
    }
    
    .slide-text {
        padding: 15px 20px;
        width: 90%;
        bottom: 25%;
    }
    
    .slide-text h2 {
        font-size: 28px;
    }
    
    .slide-text p {
        font-size: 18px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
        width: 80%;
    }
    
    .btn-slide {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    .lang-flags {
        gap: 8px;
    }
    
    .lang-flags img {
        width: 18px;
        height: 12px;
    }
    
    .slideshow-container {
        height: 400px;
    }
    
    .slide-text h2 {
        font-size: 22px;
    }
    
    .slide-text p {
        font-size: 16px;
    }
    
    .lang-mobile {
        gap: 12px;
        padding: 8px 12px;
    }
    
    .lang-mobile img {
        width: 24px;
        height: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    
    .trust-item {
        max-width: 250px;
        padding: 12px 15px;
    }
    
    .trust-icon {
        font-size: 24px;
    }
    
    .trust-text {
        font-size: 15px;
    }
    
    .testimoni-card {
        padding: 20px;
    }
    
    .quote {
        font-size: 36px;
    }
    
    .testimoni-text {
        font-size: 16px;
    }
    
    .mobile-sticky-order {
        padding: 8px 10px;
    }
    
    .btn-form-mobile {
        padding: 10px 8px;
        font-size: 15px;
    }
    
    body {
        padding-bottom: 60px;
    }
}