/* ==========================================
   UGE PREMIUM EXPORT WEBSITE
   PT. UTAMA GLOBAL EXPORTINDO
========================================== */

:root{

    --navy:#0B1F3A;
    --gold:#D4A857;
    --green:#6D8B3D;

    --light:#F8F6F0;
    --white:#FFFFFF;

    --text:#2C2C2C;

    --shadow:
    0 12px 30px rgba(0,0,0,.08);

    --shadow-hover:
    0 20px 40px rgba(0,0,0,.12);

}

/* ========================= */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;
    background:var(--light);
    color:var(--text);
    overflow-x:hidden;

}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;
    max-width:1280px;
    margin:auto;

}

.section{

    padding:120px 0;

}

.section-header{

    text-align:center;
    margin-bottom:70px;

}

.section-header span{

    color:var(--gold);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;

}

.section-header h2{

    margin-top:15px;
    font-size:48px;
    color:var(--navy);

}

.section-header p{

    margin-top:20px;
    max-width:760px;
    margin-left:auto;
    margin-right:auto;

    line-height:1.8;

}
/* ==========================================
HEADER
========================================== */

.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:rgba(11,31,58,.95);

    backdrop-filter:blur(12px);

    border-bottom:
    1px solid rgba(255,255,255,.08);

}

.header-container{

    height:100px;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo{

    display:flex;
    align-items:center;
    gap:14px;

}

.logo img{

    width:60px;

}

.logo-text h2{

    color:white;
    font-size:18px;

    font-weight:700;

}

.logo-text span{

    color:#ccc;
    font-size:12px;
    letter-spacing:1px;

}

.navbar{

    display:flex;
    gap:35px;

}

.navbar a{

    color:white;
    font-weight:600;

    transition:.3s;

}

.navbar a:hover{

    color:var(--gold);

}

.header-cta{

    background:var(--gold);

    color:var(--navy);

    padding:14px 24px;

    border-radius:10px;

    font-weight:700;

    transition:.3s;

}

.header-cta:hover{

    transform:translateY(-3px);

}
/* ==========================================
HERO
========================================== */

.hero{

    min-height:850px;
    height:100vh;

    background:
    linear-gradient(
    rgba(11,31,58,.65),
    rgba(11,31,58,.85)
    ),
    url("assets/hero-coconut.png");

    background-size:cover;
    background-position:center;

    position:relative;

    display:flex;
    align-items:center;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    radial-gradient(
    circle at left,
    rgba(212,168,87,.12),
    transparent 60%
    );

}

.hero-content{

    position:relative;
    z-index:2;

}

.hero-left{

    max-width:760px;

}

.hero-badge{

    display:inline-block;

    background:
    rgba(212,168,87,.15);

    color:var(--gold);

    padding:12px 22px;

    border-radius:999px;

    border:
    1px solid rgba(212,168,87,.4);

    margin-bottom:30px;

    font-weight:600;

}

.hero h1{

    color:white;

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    color:#ddd;

    font-size:22px;

    line-height:1.8;

    max-width:650px;

    margin-bottom:40px;

}
.hero-buttons{

    display:flex;
    gap:16px;

    margin-bottom:45px;

}

.btn-primary{

    background:var(--gold);

    color:var(--navy);

    padding:18px 34px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow-hover);

}

.btn-secondary{

    border:
    2px solid white;

    color:white;

    padding:18px 34px;

    border-radius:12px;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;
    color:var(--navy);

}
.hero-features{

    display:flex;
    gap:25px;

    flex-wrap:wrap;

}

.hero-features div{

    display:flex;
    align-items:center;

    gap:10px;

    color:white;

    font-weight:600;

}

.hero-features span{

    font-size:20px;

}
.section-mini-title{

    color:var(--gold);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}
/* ==========================================
WHY SECTION
========================================== */

.why-section{

    background:white;

}

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:white;

    padding:40px 30px;

    border-radius:24px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s ease;

    border:
    1px solid rgba(0,0,0,.05);

}

.why-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    var(--shadow-hover);

}

.why-icon{

    font-size:42px;

    margin-bottom:20px;

}

.why-card h3{

    color:var(--navy);

    margin-bottom:15px;

    font-size:22px;

}

.why-card p{

    line-height:1.8;

    color:#666;

}
/* ==========================================
PRODUCT SPECIFICATIONS
========================================== */

.specification-section{

    background:
    linear-gradient(
    to bottom,
    #f8f6f0,
    #ffffff
    );

}

.spec-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;

}

.spec-image{

    position:relative;

}

.spec-image img{

    border-radius:24px;

    box-shadow:
    var(--shadow-hover);

}

.spec-content h2{

    color:var(--navy);

    font-size:48px;

    margin-top:15px;

    margin-bottom:20px;

}

.spec-content p{

    line-height:1.8;

    margin-bottom:35px;

}

.spec-table{

    margin-bottom:40px;

}

.spec-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:
    1px solid rgba(0,0,0,.08);

}

.spec-row span{

    color:#666;

}

.spec-row strong{

    color:var(--navy);

}
/* ==========================================
EXPORT GALLERY
========================================== */

.gallery-section{

    background:white;

}

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;

}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    cursor:pointer;

}

.gallery-card img{

    width:100%;

    aspect-ratio:16/10;
    height:auto;

    object-fit:cover;

    transition:.5s ease;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:30px;

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.8)
    );

}

.gallery-overlay h3{

    color:white;

    font-size:22px;

}
/* ==========================================
IMAGE EFFECTS
========================================== */

.gallery-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,0),
    rgba(0,0,0,.08)
    );

    z-index:1;

}

.gallery-overlay{

    z-index:2;

}
/* ==========================================
FADE EFFECT PREP
========================================== */

.why-card,
.spec-image,
.spec-content,
.gallery-card{

    transition:
    all .4s ease;

}
@media(max-width:991px){

    .why-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

    .spec-grid{

        grid-template-columns:
        1fr;

        gap:50px;

    }

}
@media(max-width:768px){

    .why-grid{

        grid-template-columns:
        1fr;

    }

    .gallery-grid{

        grid-template-columns:
        1fr;

    }

    .spec-content h2{

        font-size:34px;

    }

    .gallery-card img{

        height:280px;

    }

}
/* ==========================================
EXPORT DOCUMENTATION
========================================== */

.documentation-section{

    background:
    linear-gradient(
    180deg,
    #ffffff,
    #f8f6f0
    );

}

.doc-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}

.doc-card{

    background:white;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s ease;

    border:
    1px solid rgba(0,0,0,.05);

}

.doc-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    var(--shadow-hover);

}

.doc-icon{

    font-size:48px;

    margin-bottom:20px;

}

.doc-card h3{

    color:var(--navy);

    font-size:22px;

}
/* ==========================================
MARKETS WE SERVE
========================================== */

.market-section{

    background:
    var(--navy);

    position:relative;

    overflow:hidden;

}

.market-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
    circle,
    rgba(212,168,87,.12),
    transparent 70%
    );

}

.market-section .section-header{

    position:relative;
    z-index:2;

}

.market-section .section-header h2{

    color:white;

}

.market-section .section-header p{

    color:#d6d6d6;

}

.market-grid{

    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:20px;

}

.market-card{

    background:
    rgba(255,255,255,.08);

    backdrop-filter:
    blur(8px);

    border:
    1px solid rgba(255,255,255,.1);

    color:white;

    text-align:center;

    padding:22px;

    border-radius:18px;

    font-weight:600;

    transition:.35s ease;

}

.market-card:hover{

    background:
    var(--gold);

    color:var(--navy);

    transform:
    translateY(-6px);

}
/* ==========================================
OTHER COMMODITIES
========================================== */

.commodities-section{

    background:white;

}

.commodity-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}

.commodity-card{

    background:white;

    border-radius:24px;

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s ease;

}

.commodity-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    var(--shadow-hover);

}

.commodity-icon{

    font-size:50px;

    margin-bottom:20px;

}

.commodity-card h3{

    color:var(--navy);

    margin-bottom:15px;

    font-size:24px;

}

.commodity-card p{

    color:#666;

    line-height:1.8;

}
/* ==========================================
SECTION SEPARATORS
========================================== */

.documentation-section,
.commodities-section{

    position:relative;

}

.documentation-section::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:0;

    width:120px;

    height:4px;

    background:var(--gold);

    border-radius:999px;

}
@media(max-width:991px){

    .doc-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

    .market-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

    .commodity-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}
@media(max-width:768px){

    .doc-grid{

        grid-template-columns:
        1fr;

    }

    .market-grid{

        grid-template-columns:
        1fr;

    }

    .commodity-grid{

        grid-template-columns:
        1fr;

    }

    .market-card{

        padding:18px;

    }

}
/* ==========================================
EXPORT PROCESS
========================================== */

.process-section{

    background:
    linear-gradient(
    180deg,
    #f8f6f0,
    #ffffff
    );

}

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(7,1fr);

    gap:20px;

    align-items:center;

}

.process-step{

    background:white;

    border-radius:20px;

    padding:30px 15px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s ease;

    position:relative;

    font-weight:600;

}

.process-step:hover{

    transform:
    translateY(-8px);

    box-shadow:
    var(--shadow-hover);

}

.process-step span{

    display:flex;

    justify-content:center;
    align-items:center;

    width:50px;
    height:50px;

    margin:auto auto 15px;

    border-radius:50%;

    background:var(--gold);

    color:var(--navy);

    font-weight:700;

}
/* ==========================================
CONTACT SECTION
========================================== */

.contact-section{

    background:
    var(--navy);

    color:white;

}

.contact-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:60px;

    align-items:start;

}

.contact-info span{

    color:var(--gold);

    font-weight:700;

}

.contact-info h2{

    margin-top:15px;

    font-size:48px;

    margin-bottom:25px;

}

.contact-info p{

    color:#d8d8d8;

    line-height:1.8;

    margin-bottom:25px;

}

.contact-info ul li{

    margin-bottom:18px;

    color:white;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    border:none;

    border-radius:14px;

    padding:18px;

    font-family:'Montserrat',sans-serif;

    font-size:15px;

}

.contact-form textarea{

    min-height:180px;

    resize:none;

}

.contact-form button{

    border:none;

    background:var(--gold);

    color:var(--navy);

    padding:18px;

    border-radius:14px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    transform:
    translateY(-3px);

}
/* ==========================================
FOOTER
========================================== */

.footer{

    background:#071325;

    color:white;

    text-align:center;

    padding:60px 20px;

}

.footer img{

    width:90px;

    margin:auto auto 20px;

}

.footer h3{

    margin-bottom:12px;

}

.footer p{

    color:#cfcfcf;

    margin-bottom:10px;

}
/* ==========================================
FLOATING WHATSAPP
========================================== */

.whatsapp-float{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:30px;

    z-index:99999;

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);

    transition:.3s;

}

.whatsapp-float:hover{

    transform:
    scale(1.08);

}
/* ==========================================
MOBILE MENU
========================================== */

.menu-toggle{

    display:none;

    color:white;

    font-size:30px;

    cursor:pointer;

}
.navbar.active{

    display:flex;

    flex-direction:column;

    position:absolute;

    top:90px;

    left:0;

    width:100%;

    background:var(--navy);

    padding:25px;

    gap:20px;

}
/* ==========================================
RESPONSIVE FINAL
========================================== */

@media(max-width:991px){

    .process-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

    .contact-grid{

        grid-template-columns:
        1fr;

    }

    .hero h1{

        font-size:52px;

    }

}

@media(max-width:768px){

    .navbar{

        display:none;

    }

    .header-cta{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

    .hero{

        text-align:center;

        padding-top:100px;

    }

    .hero h1{
    font-size:32px;
    line-height:1.15;
    word-break:break-word;
    }

    .hero p{

        font-size:18px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-features{

        justify-content:center;

    }

    .process-grid{

        grid-template-columns:
        1fr;

    }

    .contact-info h2{

        font-size:34px;

    }

}
/* ==========================================
REVEAL ANIMATION
========================================== */

.hidden{

    opacity:0;

    transform:
    translateY(40px);

    transition:
    all .8s ease;

}

.show{

    opacity:1;

    transform:
    translateY(0);

}


/* MOBILE FIXES */
@media(max-width:768px){
.header-container{
height:90px;
position:relative;
}
.menu-toggle{
display:block;
position:absolute;
right:15px;
top:50%;
transform:translateY(-50%);
font-size:32px;
z-index:10001;
}
.logo{
margin-left:0;
}
.logo img{
width:55px;
}
.logo-text h2{font-size:16px;}
.logo-text span{font-size:10px;}
.hero{
height:auto !important;
min-height:auto !important;
padding-top:140px !important;
padding-bottom:60px !important;
}
.hero-badge{margin-top:20px;}
.hero-features{
flex-direction:column;
align-items:center;
gap:12px;
}
.whatsapp-float{
width:58px;
height:58px;
right:15px;
bottom:15px;
}
.whatsapp-float img{
width:34px;
height:34px;
}
}
.loading-gallery img{
    transition:opacity 0.8s ease;
}
html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

.hero,
.section{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.header{
    width:100%;
    max-width:100%;
    overflow:visible;
}

.hero-content{
    width:100%;
}

.hero-left{
    max-width:100%;
}

/* FINAL MOBILE PATCH */
@media(max-width:768px){
.container{width:92%;}
.logo img{width:42px !important;}
.logo-text h2{font-size:14px !important;}
.logo-text span{font-size:9px !important;}
.hero{
height:auto !important;
min-height:auto !important;
padding-top:120px !important;
padding-bottom:40px !important;
background-position:center center !important;
}
.hero h1{font-size:28px !important;line-height:1.15 !important;}
.hero p{font-size:16px !important;}
}
html,body{overflow-x:hidden !important;width:100%;max-width:100%;}
