* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  color: #323232;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

/* NAVBAR */

.custom-navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1em 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000 !important;
}

.logo span {
  color: #5eead4;
}

.nav-link {
  color: #000 !important;
  margin-inline: 0.5rem;
}

.nav-link:hover {
  color: #5eead4 !important;
}

/* BUTTONS */

.primary-btn {
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
  color: #ffffff;
  border: none;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  font-weight: 600;
}

.primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* Enquire Modal */
.enquire-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
    padding:20px;
}

.enquire-modal.active{
    opacity:1;
    visibility:visible;
}

.enquire-box{
    background:#fff;
    width:100%;
    max-width:380px;
    border-radius:16px;
    padding:30px 25px;
    text-align:center;
    position:relative;
    animation:popup .3s ease;
}

@keyframes popup{
    from{
        transform:scale(.9);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-enquire{
    position:absolute;
    top:10px;
    right:15px;
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
}

.enquire-box h3{
    margin-bottom:10px;
    font-size:24px;
}

.enquire-box p{
    color:#666;
    margin-bottom:25px;
}

.enquire-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.enquire-actions a{
    flex:1;
    min-width:120px;
    text-decoration:none;
    padding:14px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.call-btn{
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    color:#fff;
}

.call-btn:hover{
    opacity:.9;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.whatsapp-btn:hover{
    opacity:.9;
}
/* End Enquire Modal */

/* HERO */
.hero-section {
  padding: 7em 0;
}
.hero-section h1 {
  margin-bottom: 0.5em;
  font-size: 3rem;
}
.hero-section p {
  margin-bottom: 2em;
}
.hero-section p a {
  color: #06b6d4;
  text-decoration: none;
}
.section-heading h2 {
  font-size: 2.5em;
  margin-bottom: 1rem;
}

.section-heading p {
  color: #94a3b8;
}
/* Products */
.products-section {
  padding: 5em 0;
  background-color: #f7f7f7;
}
.products-section p {
  margin-bottom: 4em;
}
.product-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image-wrapper {
  height: 20em;
  overflow: hidden;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-image-wrapper img {
  max-height: 20em;
  max-width: 100%;
}

.product-image {
  height: 100%;
  object-fit: contain;
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.2rem;
  min-height: 5em;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
}

.product-status {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.product-status.active {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.product-status.inactive {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
}

/* FOOTER */

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background-color: #000;
}
.site-footer h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff !important;
}
.site-footer a {
  color: #5eead4;
  transition: all 0.2s !important;
}
.site-footer:hover {
  color: #fff;
}
.site-footer h3 span {
  color: #5eead4;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-wrapper p {
  color: #c6cedb;
}
.footer-wrapper p span {
  color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .hero-section {
    padding-top: 140px;
    padding-bottom: 4rem;
    text-align: center !important;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
  .site-footer {
    text-align: center !important;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }
}