/* ===== RFQ CARD ===== */
.rfq-card{
  max-width:900px;
  margin:60px auto;
  background:#fff;
  border-radius:18px;
  padding:48px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.rfq-card h1{
  font-size:32px;
  margin-bottom:8px;
}

.rfq-sub{
  color:#6b7280;
  margin-bottom:32px;
}

/* ===== FORM GRID ===== */
.rfq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-bottom:18px;
}

.rfq-form input,
.rfq-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  font-size:15px;
  transition:0.2s ease;
}

.rfq-form textarea{
  min-height:120px;
  resize:vertical;
}

.rfq-form input:focus,
.rfq-form textarea:focus{
  outline:none;
  border-color:#b87333;
  box-shadow:0 0 0 3px rgba(184,115,51,0.15);
}

/* ===== ACTION ===== */
.rfq-action{
  margin-top:26px;
  text-align:right;
}

.rfq-action button{
  background:#b87333;
  color:#fff;
  border:none;
  padding:14px 28px;
  border-radius:10px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.25s ease;
}

.rfq-action button:hover{
  background:#a7652d;
  transform:translateY(-2px);
}

/* ===== CONTACT STRIP ===== */
/* ===== CONTACT STRIP (OEM PREMIUM) ===== */
.contact-strip{
  max-width:900px;
  margin:50px auto 30px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
  padding-bottom:26px;
  border-bottom:1px solid #e5e7eb;
}

/* Contact strip background fix */
.contact-strip,
.contact-info,
.contact-bar {
  background-color: #FFFFFF !important;
}


/* Contact item */
.contact-item{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;        /* 🔴 removes underline */
  color:#111827;               /* 🔴 removes blue */
  transition:all 0.3s ease;
}

/* Icon */
.contact-icon{
  font-size:26px;
  line-height:1;
}

/* Text */
.contact-text{
  text-align:left;
}

.contact-title{
  display:block;
  font-size:18px;
  font-weight:600;
  color:#b87333;
}

.contact-info{
  display:block;
  font-size:15px;
  color:#6b7280;
}

/* Divider */
.contact-divider{
  width:1px;
  height:52px;
  background:#e5e7eb;
}

/* Hover (subtle OEM feel) */
.contact-item:hover{
  transform:translateY(-2px);
}

.contact-item:hover .contact-title{
  color:var(--copper);
}
/* ===== FOOTER ===== */
.site-footer{
  background:#fde6e2;
  padding:40px 0 20px;
  font-size:14px;
  color:#2b2b2b;
}

.footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer-logo{
  height:42px;
}

.footer-nav{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
}

.footer-nav a{
  text-decoration:none;
  color:#2b2b2b;
  font-weight:500;
}

.footer-nav a.highlight{
  color:#c4552d;
}

.footer-divider{
  border:none;
  border-top:1px solid rgba(0,0,0,0.1);
  margin:26px 0;
}

/* Middle */
.footer-content{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer-column h4{
  font-size:18px;
  margin-bottom:14px;
}

.footer-column p{
  line-height:1.6;
}

.footer-contact{
  margin-top:12px;
  color:#a03d1c;
}

/* Social */
.social-icons{
  display:flex;
  gap:18px;
  font-size:20px;
}

.social-icons a{
  color:#000;
  text-decoration:none;
}

/* Bottom */
.footer-bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  font-size:13px;
  opacity:0.8;
}

/* Floating Buttons */
.floating{
  position:fixed;
  right:20px;
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.whatsapp{
  bottom:90px;
  background:#25d366;
}

.view360{
  bottom:30px;
  background:#ff7a00;
}

/* Responsive */
@media(max-width:900px){
  .footer-content{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .footer-content{
    grid-template-columns:1fr;
  }
  .footer-bottom{
    gap:10px;
  }
}
/* ===== Social Icon Copper Hover ===== */
.social-icons a{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  background:#fff;
  transition:all 0.35s ease;
  box-shadow:0 6px 16px rgba(0,0,0,0.12);
}

.social-icons a:hover{
  background:linear-gradient(135deg,#ff9a6a,#b87333);
  color:#fff;
  transform:translateY(-4px) scale(1.08);
  box-shadow:0 14px 30px rgba(184,115,51,0.45);
}

/* Mobile */
@media(max-width:768px){
  .contact-strip{
    flex-direction:column;
    gap:22px;
  }
  .contact-divider{
    width:60%;
    height:1px;
  }
}
/* Reveal animation (footer safe) */
.reveal{
  opacity:0;
  transform:translateY(60px);
  transition:all 0.9s ease;
}

.reveal.active{
  opacity:1;
  transform:none;
}

.footer-map{
  width:100%;
  height:140px;
  border:none;
  border-radius:14px;
  margin-top:14px;
  filter:grayscale(100%) contrast(1.05);
  transition:all 0.4s ease;
}

.footer-map:hover{
  filter:grayscale(0%);
}
.section.light{
  padding-top:120px;
  padding-bottom:80px;
}


/* ===== MOBILE ===== */
@media(max-width:768px){
  .rfq-grid{
    grid-template-columns:1fr;
  }
  .rfq-card{
    padding:28px;
  }
}
