
/* ================= GLOBAL ================= */

body{
  font-family: 'Segoe UI', sans-serif;
  background: #f1f5f9;
  color: #0f172a;
}

/* ================= NAVBAR ================= */

.custom-navbar{
  background: #ffffff;
  padding: 18px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.logo{
  height: 45px;
}

.brand-text{
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-text .accent{
  color: #2563eb;
}

.navbar-nav{
  gap: 30px;
}

.nav-link{
  font-weight: 500;
  color: #334155 !important;
  position: relative;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active{
  color: #2563eb !important;
}

.nav-link::after{
  content:"";
  position:absolute;
  width:0;
  height:2px;
  bottom:-6px;
  left:0;
  background:#2563eb;
  transition:0.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
  width:100%;
}

.nav-icons i{
  font-size: 20px;
  margin-left: 20px;
  color: #334155;
  transition: 0.3s;
}

.nav-icons i:hover{
  color: #2563eb;
}

/* ================= HERO ================= */

.hero-section{
  min-height: 80vh;
  background: linear-gradient(135deg, #e0f2fe, #ffffff);
  display:flex;
  align-items:center;
  padding-top:100px;
}

.hero-title{
  font-size:3rem;
  font-weight:700;
}

.hero-title span{
  color:#2563eb;
}

.hero-quote{
  color:#475569;
  margin:20px 0 30px;
}

.search-box{
  max-width:600px;
}

.search-box input{
  padding:15px;
  border-radius:30px 0 0 30px;
  border:1px solid #cbd5e1;
}

.search-btn{
  background:#2563eb;
  color:white;
  border:none;
  padding:0 25px;
  border-radius:0 30px 30px 0;
  transition:0.3s;
}

.search-btn:hover{
  background:#1d4ed8;
}

.result-card{
  background:white;
  padding:12px 20px;
  border-radius:10px;
  margin-top:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* ================= PRODUCT SECTION ================= */

.product-section{
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding:120px 0;
}

.section-title{
  font-size:2.7rem;
  font-weight:700;
}

.section-title span{
  color:#0ea5a4;
}

.section-subtitle{
  color:#64748b;
}

/* ================= PRODUCT CARD ================= */

.product-card{
  background:#ffffff;
  border-radius:25px;
  padding:25px;
  text-align:center;
  position:relative;
  overflow:hidden;
  transition:0.4s ease;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.product-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.product-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:linear-gradient(90deg,#2563eb,#0ea5a4);
}

.product-img{
  background:#f8fafc;
  padding:20px;
  border-radius:18px;
  margin-bottom:15px;
}

.product-img img{
  width:100%;
  height:190px;
  object-fit:contain;
  transition:0.4s;
}

.product-card:hover .product-img img{
  transform:scale(1.1);
}

.product-title{
  font-weight:600;
  font-size:1rem;
  color:#0f172a;
}

/* ================= HOVER PANEL ================= */

.product-hover{
  position:absolute;
  bottom:-100%;
  left:0;
  width:100%;
  background:#ffffff;
  padding:25px;
  transition:0.5s ease;
  border-top-left-radius:25px;
  border-top-right-radius:25px;
  box-shadow:0 -15px 40px rgba(0,0,0,0.08);
}

.product-card:hover .product-hover{
  bottom:0;
}

.product-hover h6{
  color:#0ea5a4;
  font-weight:600;
  margin-bottom:15px;
}

.hover-box{
  background:#f1f5f9;
  border-radius:12px;
  padding:12px 15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.hover-box span{
  font-weight:600;
  font-size:0.85rem;
}

.hover-box input{
  width:65px;
  padding:6px;
  border-radius:8px;
  border:1px solid #cbd5e1;
  text-align:center;
}

/* ================= BUTTON ================= */

.whatsapp-btn{
  background:linear-gradient(135deg,#0ea5a4,#14b8a6);
  border:none;
  color:white;
  padding:10px 22px;
  border-radius:30px;
  font-weight:600;
  transition:0.3s;
}

.whatsapp-btn:hover{
  transform:scale(1.05);
  box-shadow:0 12px 30px rgba(20,184,166,0.4);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
  .product-img img{
    height:160px;
  }
}





/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.footer-brand h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.footer-brand span {
  color: #00d4ff;
}

.footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfd8dc;
}

.footer h5 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #cfd8dc;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #00d4ff;
  padding-left: 6px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin-right: 8px;
  color: #fff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #00d4ff;
  transform: translateY(-5px);
  color: #000;
}

.footer hr {
  border-color: rgba(255,255,255,0.1);
  margin: 40px 0 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #b0bec5;
}