/* =====================================================
   PT MARINA KARYA GEMILANG
   Global Website Style
   Version 3.0
===================================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:Arial,Helvetica,sans-serif;
background:#f4f7fb;
color:#333;
line-height:1.7;

}

.container{

max-width:1400px;
margin:auto;
padding:40px 20px;

}

/* ===========================
   HEADER
=========================== */

.page-header{

background:#00184a;
color:white;
text-align:center;
padding:60px 20px;

}

.page-header h1{

font-size:56px;
margin-bottom:10px;

}

.page-header p{

font-size:22px;
color:#dbeafe;

}

/* ===========================
   SEARCH
=========================== */

.search-section{

padding:40px 0;

}

.search-section h2{

color:#002b5c;
margin-bottom:10px;

}

.search-section p{

margin-bottom:20px;
color:#666;

}

#searchInput{

width:100%;
padding:18px 22px;
border:2px solid #d9e2ef;
border-radius:14px;
font-size:18px;
outline:none;
transition:.3s;

}

#searchInput:focus{

border-color:#0ea5e9;

}

/* ===========================
   SEARCH RESULT
=========================== */

#searchResults{

margin-top:25px;

}

.result-card{

background:white;
padding:20px;
margin-bottom:18px;
border-radius:16px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
border-left:6px solid #0ea5e9;

}

.result-card h3{

color:#002b5c;
margin-bottom:10px;

}

.result-card p{

color:#666;

}

/* ===========================
   PRODUCT GRID
=========================== */

.product-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;

}

.product-card{

background:white;
padding:25px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
text-align:center;
transition:.35s;

}

.product-card:hover{

transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.product-card img{

width:100%;
height:260px;
object-fit:contain;
margin-bottom:20px;

}

.product-card h3{

color:#002b5c;
font-size:28px;
margin-bottom:15px;

}

.product-card p{

color:#666;
min-height:140px;

}

/* ===========================
   BUTTON
=========================== */

.btn{

display:inline-block;
margin-top:15px;
padding:14px 28px;
background:#0ea5e9;
color:white;
text-decoration:none;
font-weight:bold;
border-radius:10px;
transition:.3s;

}

.btn:hover{

background:#0284c7;

}

.btn-home{

display:inline-block;
margin:10px;
padding:15px 28px;
background:#002b5c;
color:white;
text-decoration:none;
font-weight:bold;
border-radius:10px;

}

.btn-home:hover{

background:#00184a;

}

.btn-wa{

display:inline-block;
margin:10px;
padding:15px 28px;
background:#25D366;
color:white;
text-decoration:none;
font-weight:bold;
border-radius:10px;

}

.btn-wa:hover{

background:#1faa52;

}

.cta{

text-align:center;
padding:50px 0;

}

/* ===========================
   FOOTER
=========================== */

footer{

margin-top:60px;
background:#00184a;
color:white;
text-align:center;
padding:30px;

}

footer p{

margin:6px 0;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

.page-header h1{

font-size:38px;

}

.page-header p{

font-size:18px;

}

.product-grid{

grid-template-columns:1fr;

}

.product-card img{

height:220px;

}

.product-card h3{

font-size:24px;

}

.btn,
.btn-home,
.btn-wa{

display:block;
width:90%;
margin:12px auto;

}

}