/*==================================================
                HYT GASMIN WEBSITE
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

:root{

    --primary:#1F4E79;
    --secondary:#F5A623;
    --success:#28a745;
    --white:#ffffff;
    --black:#222;
    --gray:#666;
    --light:#f7f9fc;
    --shadow:0 10px 30px rgba(0,0,0,.08);

}

body{

    background:var(--light);
    color:var(--black);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

section{

    padding:90px 8%;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title span{

    color:var(--secondary);
    font-weight:600;
    letter-spacing:2px;

}

.section-title h2{

    font-size:40px;
    color:var(--primary);
    margin:10px 0;

}

.section-title p{

    max-width:650px;
    margin:auto;
    color:#666;
    line-height:28px;

}

/*=========================
        NAVBAR
=========================*/

header{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    z-index:999;

}

.navbar{

    width:90%;
    margin:auto;
    height:85px;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo img{

    width:65px;

}

.logo h2{

    color:var(--primary);

}

.nav-menu{

    display:flex;
    gap:35px;
    list-style:none;

}

.nav-menu a{

    color:#444;
    font-weight:500;
    transition:.3s;

}

.nav-menu a:hover{

    color:var(--secondary);

}

.active{

    color:var(--secondary)!important;

}

.btn-wa{

    background:#25D366;
    color:white;
    padding:12px 22px;
    border-radius:30px;
    transition:.3s;

}

.btn-wa:hover{

    transform:translateY(-3px);

}

/*=========================
            HERO
=========================*/

.hero{

    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    padding-top:120px;

}

.badge{

    background:#EAF4FF;
    color:var(--primary);
    padding:10px 18px;
    border-radius:30px;
    display:inline-block;
    font-weight:600;
    margin-bottom:20px;

}

.hero h1{

    font-size:55px;
    line-height:70px;
    margin-bottom:20px;

}

.hero h1 span{

    color:var(--secondary);

}

.hero p{

    color:#666;
    line-height:30px;
    margin-bottom:35px;

}

.hero-button{

    display:flex;
    gap:20px;

}

.btn-primary{

    background:var(--primary);
    color:white;
    padding:15px 35px;
    border-radius:30px;
    transition:.3s;

}

.btn-primary:hover{

    background:var(--secondary);

}

.btn-secondary{

    border:2px solid var(--primary);
    color:var(--primary);
    padding:15px 35px;
    border-radius:30px;

}

.btn-secondary:hover{

    background:var(--primary);
    color:white;

}

.hero-image img{

    border-radius:25px;
    box-shadow:var(--shadow);

}

/*=========================
          ABOUT
=========================*/

.about-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.about-image img{

    border-radius:25px;
    box-shadow:var(--shadow);

}

.about-content h3{

    font-size:35px;
    color:var(--primary);
    margin-bottom:20px;

}

.about-content p{

    color:#666;
    line-height:30px;
    margin-bottom:30px;

}

/*=========================
        FEATURE
=========================*/

.feature{

    background:white;

}

.feature-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.feature-card{

    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card i{

    font-size:50px;
    color:var(--secondary);
    margin-bottom:20px;

}

.feature-card h3{

    margin-bottom:15px;
    color:var(--primary);

}

.feature-card p{

    color:#666;
    line-height:28px;

}

/*=========================
        COUNTER
=========================*/

.counter{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.counter-card{

    background:white;
    text-align:center;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.3s;

}

.counter-card:hover{

    transform:translateY(-10px);

}

.counter-card h2{

    color:var(--secondary);
    font-size:45px;
    margin-bottom:10px;

}

.counter-card p{

    color:#666;
    font-weight:500;

}


/*=========================
        PRODUCT
=========================*/

.product{

    background:white;

}

.product-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;

}

.product-card{

    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;

}

.product-card:hover{

    transform:translateY(-12px);

}

.product-card img{

    width:100%;
    height:280px;
    object-fit:cover;

}

.product-content{

    padding:25px;

}

.product-content h3{

    color:var(--primary);
    margin-bottom:15px;
    font-size:26px;

}

.price{

    display:block;
    color:var(--secondary);
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;

}

.stock{

    display:inline-block;
    background:#EAF8ED;
    color:var(--success);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;

}

.product-content p{

    color:#666;
    line-height:28px;
    margin-bottom:25px;

}

.btn-detail{

    display:inline-block;
    background:var(--primary);
    color:white;
    padding:12px 28px;
    border-radius:30px;
    transition:.3s;

}

.btn-detail:hover{

    background:var(--secondary);

}


/*=========================
          GALERI
=========================*/

.gallery-preview{

    background:var(--light);

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:40px;

}

.gallery-grid img{

    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:18px;
    cursor:pointer;
    transition:.35s;
    box-shadow:var(--shadow);

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

.center{

    text-align:center;

}


/*=========================
             CTA
=========================*/

.cta{

    background:linear-gradient(135deg,#1F4E79,#2A6DA8);
    color:white;
    text-align:center;
    border-radius:30px;
    margin:80px 8%;

}

.cta h2{

    font-size:42px;
    margin-bottom:20px;

}

.cta p{

    max-width:700px;
    margin:auto;
    line-height:30px;
    margin-bottom:35px;

}

.cta .btn-wa{

    display:inline-block;

}


/*=========================
            FOOTER
=========================*/

footer{

    background:#163550;
    color:white;
    padding-top:70px;

}

.footer-container{

    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;

}

.footer-box h3{

    margin-bottom:20px;
    color:#F5A623;

}

.footer-box p{

    line-height:30px;
    color:#ddd;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:15px;

}

.footer-box ul li a{

    color:#ddd;
    transition:.3s;

}

.footer-box ul li a:hover{

    color:#F5A623;

}

.copyright{

    margin-top:50px;
    padding:20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);

}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:992px){

.hero,
.about-container{

grid-template-columns:1fr;

}

.hero-image{

order:-1;

}

.feature-grid,
.counter{

grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-container{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.navbar{

flex-direction:column;
height:auto;
padding:20px;

}

.nav-menu{

flex-wrap:wrap;
justify-content:center;
margin:20px 0;

}

.hero h1{

font-size:38px;
line-height:50px;

}

.section-title h2{

font-size:30px;

}

.feature-grid,
.counter,
.product-grid,
.gallery-grid{

grid-template-columns:1fr;

}

.hero-button{

flex-direction:column;

}

.btn-primary,
.btn-secondary,
.btn-wa{

text-align:center;

}

section{

padding:70px 5%;

}

}

/*=========================
        STICKY NAVBAR
=========================*/

header.sticky{

background:white;
box-shadow:0 5px 20px rgba(0,0,0,.15);
transition:.3s;

}


/*=========================
      SCROLL EFFECT
=========================*/

.hidden{

opacity:0;
transform:translateY(60px);
transition:1s;

}

.show{

opacity:1;
transform:translateY(0);

}


/*=========================
      BACK TO TOP
=========================*/

.backToTop{

position:fixed;
right:30px;
bottom:30px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#1F4E79;
color:white;
font-size:22px;
cursor:pointer;
opacity:0;
pointer-events:none;
transition:.3s;
box-shadow:0 5px 15px rgba(0,0,0,.2);

}

.backToTop.show{

opacity:1;
pointer-events:auto;

}

.backToTop:hover{

background:#F5A623;

}


/*=========================
      GALLERY POPUP
=========================*/

.overlay{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.85);
display:flex;
justify-content:center;
align-items:center;
z-index:9999;

}

.overlay img{

max-width:80%;
max-height:80%;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.4);

}

/*=========================
      PAGE HEADER
=========================*/

.page-header{

margin-top:85px;
padding:120px 8% 70px;
background:linear-gradient(135deg,#1F4E79,#2E6DA4);
color:white;
text-align:center;

}

.page-header h1{

font-size:52px;
margin-bottom:15px;

}

.page-header p{

font-size:18px;
opacity:.9;

}

/*=========================
        VISION
=========================*/

.vision{

background:white;

}

.vision-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:35px;

}

.vision-card{

background:#fff;
padding:35px;
border-radius:20px;
box-shadow:var(--shadow);
transition:.3s;

}

.vision-card:hover{

transform:translateY(-8px);

}

.vision-card i{

font-size:55px;
color:var(--secondary);
margin-bottom:20px;

}

.vision-card h3{

margin-bottom:20px;
color:var(--primary);

}

.vision-card ul{

padding-left:20px;
line-height:32px;
color:#666;

}

.vision-card p{

line-height:30px;
color:#666;

}

.rating{
    color:#F5A623;
    margin:10px 0;
    font-size:18px;
}

.stock{
    display:inline-block;
    padding:8px 18px;
    border-radius:25px;
    margin:15px 0;
    font-size:14px;
    font-weight:600;
}

.stock.tersedia{
    background:#EAF8ED;
    color:#28A745;
}

.stock.hampir{
    background:#FFF4D6;
    color:#D48806;
}

/*=========================
      DETAIL PRODUK
=========================*/

.detail-product{

background:white;

}

.detail-container{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.detail-image img{

width:100%;
border-radius:20px;
box-shadow:var(--shadow);

}

.detail-info h2{

font-size:42px;
color:var(--primary);
margin-bottom:15px;

}

.detail-info p{

line-height:30px;
margin:20px 0;
color:#666;

}

.detail-table{

width:100%;
border-collapse:collapse;
margin:25px 0;

}

.detail-table th{

background:var(--primary);
color:white;
padding:15px;

}

.detail-table td{

padding:15px;
border:1px solid #ddd;

}

.specification{

background:#f7f9fc;

}

.spec-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;

}

.spec-card{

background:white;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:var(--shadow);
transition:.3s;

}

.spec-card:hover{

transform:translateY(-10px);

}

.spec-card i{

font-size:45px;
color:var(--secondary);
margin-bottom:20px;

}

.spec-card h3{

margin-bottom:15px;
color:var(--primary);

}

/*=========================
        GALLERY PAGE
=========================*/

.gallery-page{

background:#f7f9fc;

}

.gallery-page .gallery-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
gap:30px;

}

.gallery-item{

background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:var(--shadow);
transition:.35s;
cursor:pointer;

}

.gallery-item:hover{

transform:translateY(-10px);

}

.gallery-item img{

width:100%;
height:260px;
object-fit:cover;
transition:.4s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-info{

padding:25px;

}

.gallery-info h3{

color:var(--primary);
margin-bottom:12px;

}

.gallery-info p{

color:#666;
line-height:28px;

}

/*=========================
        CONTACT
=========================*/

.contact{

background:white;

}

.contact-container{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:start;

}

.contact-info h2,
.contact-form h2{

margin-bottom:25px;
color:var(--primary);

}

.info-card{

display:flex;
align-items:flex-start;
gap:20px;
background:#fff;
padding:20px;
margin-bottom:20px;
border-radius:15px;
box-shadow:var(--shadow);

}

.info-card i{

font-size:28px;
color:var(--secondary);
margin-top:5px;

}

.contact-form{

background:#fff;
padding:30px;
border-radius:20px;
box-shadow:var(--shadow);

}

.contact-form form{

display:flex;
flex-direction:column;
gap:18px;

}

.contact-form input,
.contact-form textarea{

padding:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:15px;
outline:none;
transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

border-color:var(--primary);

}

.contact-form button{

border:none;
cursor:pointer;

}

.maps{

padding:70px 8%;
background:#f7f9fc;

}

.maps h2{

text-align:center;
margin-bottom:30px;
color:var(--primary);

}

.maps iframe{

width:100%;
height:450px;
border:none;
border-radius:20px;
box-shadow:var(--shadow);

}

/*=========================
        SERVICE
=========================*/

.service{

background:#fff;

}

.service-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;

}

.service-card{

background:white;
padding:35px;
text-align:center;
border-radius:20px;
box-shadow:var(--shadow);
transition:.3s;

}

.service-card:hover{

transform:translateY(-10px);

}

.service-card i{

font-size:55px;
color:var(--secondary);
margin-bottom:20px;

}

.service-card h3{

margin-bottom:15px;
color:var(--primary);

}

.service-card p{

line-height:28px;
color:#666;

}


/*=========================
      PROCESS
=========================*/

.process{

background:#f7f9fc;

}

.process-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;

}

.step{

background:white;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:var(--shadow);

}

.number{

width:60px;
height:60px;
margin:auto;
background:var(--secondary);
color:white;
font-size:25px;
font-weight:bold;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin-bottom:20px;

}

.step h3{

margin-bottom:15px;
color:var(--primary);

}

.step p{

line-height:28px;
color:#666;

}

/*=========================
            FAQ
=========================*/

.faq-section{

background:#f7f9fc;

}

.faq-container{

max-width:900px;
margin:auto;

}

.faq-item{

background:white;
margin-bottom:20px;
border-radius:15px;
box-shadow:var(--shadow);
overflow:hidden;

}

.faq-question{

width:100%;
padding:22px 25px;
display:flex;
justify-content:space-between;
align-items:center;
background:white;
border:none;
cursor:pointer;
font-size:18px;
font-weight:600;
color:var(--primary);

}

.faq-question i{

transition:.3s;

}

.faq-answer{

max-height:0;
overflow:hidden;
transition:.4s;

}

.faq-answer p{

padding:0 25px 25px;
line-height:30px;
color:#666;

}

.faq-item.active .faq-answer{

max-height:200px;

}

.faq-item.active i{

transform:rotate(45deg);

}
.admin-link{

margin-top:25px;
text-align:center;

}

.admin-link a{

color:white;
text-decoration:none;
opacity:.8;
transition:.3s;

}

.admin-link a:hover{

opacity:1;
color:#F5A623;

}
/*====================
    LOGIN ADMIN
=====================*/

.admin-login{

margin-top:35px;
text-align:center;

}

.admin-login a{

display:inline-flex;
align-items:center;
gap:8px;
padding:12px 22px;
background:#1F4E79;
color:#fff;
border-radius:10px;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.admin-login a:hover{

background:#F5A623;
transform:translateY(-3px);

}