* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", "snas-serif";
}
body {
  margin: 0px;
  padding: 0px;
}
.navbar {
  position: fixed;
  z-index: 999;
  width: 100%;
}
nav {
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav img {
  max-width: 120px;
}
nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li {
  height: 80px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
}
nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: rgb(218, 165, 32);
}
nav a:hover {
  color: rgb(235, 42, 84);
}
nav li:first-child {
  margin-right: auto;
}
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgb(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li {
  width: 100%;
}
.sidebar a {
  width: 100%;
}
.menu-button {
  display: none;
}
.slide img {
  width: 100%;
  height: 100%;
}

.gold-recovery-section {
  padding: 60px 20px;
  background: #fffaf5;
}

.content-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #8b6b2e;
}

.sub-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #444;
}

.tagline {
  font-size: 18px;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.features {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.features li {
  font-size: 16px;
  margin: 8px 0;
  color: #333;
}

.about-section {
  padding: 70px 20px;
  background: #fffaf5;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Left Image */
.about-image {
  flex: 1;
}

.about-image img {
  width: 90%;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Right Content */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  color: #8b6b2e;
  margin-bottom: 10px;
}

.about-content h4 {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.about-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.about-content ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content ul {
    text-align: left;
    display: inline-block;
  }
}


/* Container replacement */
.container-fliud {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Margin & padding utilities replacement */
.mt-4 {
  margin-top: 1.5rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

/* Flex replacement */
.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Text alignment */
.text-center {
  text-align: center;
}

.text-md-start {
  text-align: left;
}

/* Typography */
.mb-0 {
  margin-bottom: 0;
}

.me-3 {
  margin-right: 1rem;
}

.fw-bold {
  font-weight: 700;
}

/* Footer text styling */
.sitename {
  font-weight: 700;
}

/* Credits section */
.credits p {
  font-size: 14px;
  color: #374151;
}

.credits a {
  text-decoration: none;
  font-weight: 700;
}

.text-dark {
  color: #111827;
}

.text-info {
  color: #2563eb;
}

/* Responsive behavior (Bootstrap md replacement) */
@media (max-width: 768px) {
  .text-md-start {
    text-align: center;
  }

  .justify-content-between {
    justify-content: center;
    gap: 15px;
  }
}

.service-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-top: 8px;
}

.p-box-text {
  padding: 15px;
}

.process-section {
  background: #fafafa;
  padding: 70px 20px;
}

.process-container {
  max-width: 1100px;
  margin: auto;
}

.process-header {
  text-align: center;
  margin-bottom: 50px;
}

.process-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
}

.process-header p {
  font-size: 16px;
  color: #6b7280;
  margin-top: 10px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-content h4 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4b5563;
}

.trust-section {
  background: #f9fafb;
  padding: 80px 20px;
}

.trust-container {
  max-width: 1200px;
  margin: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.trust-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.trust-subtitle {
  font-size: 14.5px;
  color: #6b7280;
  margin-bottom: 20px;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {
  font-size: 14.5px;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.5;
}

.trust-note {
  margin-top: 18px;
  font-size: 14px;
  color: #4b5563;
  font-style: italic;
}

/* Highlight card */
.trust-card.highlight {
  background: linear-gradient(135deg, #fff7e6, #ffffff);
  border: 1px solid #f0d48a;
}

.trust-quote {
  margin-top: 20px;
  padding-left: 15px;
  border-left: 4px solid #d4af37;
  font-size: 14.5px;
  color: #374151;
  font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.cta-contact-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #fff7e6, #f9fafb);
}

.cta-contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.cta-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 15px;
}

.cta-badge {
  display: inline-block;
  background: #d4af37;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 18px;
}

.cta-text {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.btn-primary {
  background: #d4af37;
  color: #111;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

.cta-brand h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-brand p {
  font-size: 14px;
  color: #6b7280;
}

/* RIGHT FORM */
.cta-right {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cta-right h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111827;
}

.form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.btn-submit {
  width: 100%;
  background: #111827;
  color: #fff;
  padding: 15px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-contact-container {
    grid-template-columns: 1fr;
  }

  .cta-left h2 {
    font-size: 30px;
  }
}
.testimonial-section {
  background: #f9fafb;
  padding: 90px 20px;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
}

.testimonial-header p {
  font-size: 16px;
  color: #6b7280;
  margin-top: 8px;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.stars {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 14px;
}

.client {
  font-size: 13.5px;
  font-weight: 600;
  color: #6b7280;
}

/* Promise */
.testimonial-promise {
  margin-top: 80px;
  text-align: center;
}

.testimonial-promise h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
}

.testimonial-promise blockquote {
  font-size: 18px;
  font-style: italic;
  color: #374151;
  margin-bottom: 30px;
  border-left: 4px solid #d4af37;
  display: inline-block;
  padding-left: 16px;
}

.promise-points {
  display: flex;
  justify-content: center;
  gap: 25px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.promise-points li {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-header h2 {
    font-size: 30px;
  }
}


/*================================================ Hero Slide Show =====================================================*/
.container {
  width: 100%;
  height: 90vh;
  padding: 80px 0;
  margin-bottom: 150px;
  background-color: #140b0b;
}
.swiper {
  width: 100%;
  height: 90vh;
}
.swiper-slide img {
  width: 100%;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  color: #bababa;
}
.swiper .swiper-pagination-bullet-active {
  background: #fff;
}
/*===================================================== Headline ========================================================*/
.title_one {
  display: flex;
  justify-content: center;
}
.headline_one {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  column-gap: 1.6rem;
  color: #e4b613;
}
.headline_one::before,
.headline_one::after {
  content: "";
  height: 2px;
  background-color: #e4b613;
  display: block;
}
/*======================================================= Slider-1 =======================================================*/
.p-slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  margin-bottom: 70px;
  width: 95%;
}
.product-box {
  display: flex;
  flex-direction: column;
  width: 300px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  margin: 0px 10px;
  position: relative;
}
.p-img-container {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}
.p-img a,
.p-img {
  width: 100%;
  height: 300px;
  display: flex;
}
.p-img a img {
  width: 100%;
  height: 100%;
  object-position: center;
  border-radius: 20px;
  animation: fade 0.6s;
}
.p-img-back {
  display: none;
}
.p-img-container:hover .p-img-back {
  display: block;
}
.p-img-container:hover .p-img-front {
  display: none;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-box-text {
  margin-top: 5px;
  width: 100%;
}
.product-category {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.product-category span {
  color: #acacac;
  font-size: 0.9rem;
  margin: 5px 0px;
}
.product-title {
  color: #333333;
  font-weight: 600;
  text-decoration: none;
  transition: all ease 0.3s;
}
.product-title:hover {
  color: #111111;
  opacity: 0.7;
  transition: all ease 0.3s;
}
.price-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.price-buy .p-price {
  font-size: 1.3rem;
  color: #333333;
  font-weight: 700;
}
a {
  text-decoration: none;
}
.price-buy .p-buy-btn {
  color: #e63b3b;
  margin: 0px 5px;
  font-weight: 600;
}
.price-buy .p-buy-btn:hover {
  text-decoration: underline;
}
.p-discount {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 65px;
  height: 24px;
  color: #e63b3b;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 1px;
  z-index: 100;
  border-radius: 3px;
}
.slider-btns {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 30px auto 10px auto;
  padding: 0px 10px;
}
.slider-btns button {
  position: static !important;
  transform: translate(0, 0);
  background-color: #f3f3f3;
  width: 80px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
}
.slider-btns button span {
  font-weight: bold;
  padding: 10px 15px 10px 10px;
  position: relative;
  text-decoration: none;
}
.slider-btns button span::before,
.slider-btns button span::after {
  border-right: 2px solid;
  display: block;
  height: 8px;
  margin-top: -6px;
  position: absolute;
  transform: rotate(135deg);
  right: 10px;
  top: 50%;
  width: 0;
  content: "";
}
.slider-btns button span::after {
  margin-top: -1px;
  transform: rotate(45deg);
}
.slider-btns .glider-prev span {
  transform: rotate(-180deg);
}
/*======================================================= (Grid) =====================================================*/
.grid {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}
.column {
  flex: 25%;
  max-width: 100%;
  padding: 0 4px;
}
.column img {
  margin-top: 6px;
  vertical-align: middle;
  width: 100%;
}
/*====================================================== (Grid-6) ===================================================*/
.container-gallery {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 8%;
  margin-bottom: 20px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 30px;
}
.gallery img {
  width: 100%;
  border-radius: 10%;
}
/*====================================================== Video ==========================================================*/
.video {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80vh;
  padding-bottom: 35px;
}
.back-video {
  width: 95%;
  object-fit: cover;
  border-radius: 30px;
}
/*====================================================== Footer ========================================================*/
footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 1px 100px;
  background: #000;
}
footer .container {
  height: 40vh;
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
.container .sec {
  margin-bottom: 10vh;
}
footer .container .sec h2 {
  position: relative;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}
footer .container .sec p {
  color: #fff;
}
footer .container .sci {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 50px);
}
footer .container .sci li {
  list-style: none;
}
footer .container .sci li a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #333;
  display: grid;
  align-content: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10%;
}
footer .container .sci li a i {
  color: #fff;
  font-size: 20px;
}
footer .container .quicklinks {
  position: relative;
}
footer .container .quicklinks ul li {
  list-style: none;
}
footer .container .quicklinks ul li a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
footer .container .contact .info li {
  position: relative;
}
footer .container .contact .info li {
  display: grid;
  grid-template-columns: 30px 1fr;
  margin-bottom: 16px;
}
footer .container .contact .info li span {
  color: #fff;
  font-size: 20px;
}
footer .container .contact .info li a {
  color: #fff;
  text-decoration: none;
}
.col-2 {
  margin-bottom: 20px;
}
footer .col-2 h3 {
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px 0;
  text-align: center;
}
form {
  display: block;
  text-align: center;
  padding: 10px;
}
footer .col-2 input {
  text-align: center;
  width: 400px;
  height: 45px;
  border-radius: 4px;
}
form button {
  background: #fff;
  border: 2px solid #dadadd;
  color: #000;
  font-weight: 500;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 15px;
  cursor: pointer;
}
.copyrightText {
  width: 100%;
  background: #fff;
  padding: 20px 100px 30px;
  text-align: center;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
/* WhatsApp */
.whatsapp_float{
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.whatsapp_float img{
  width: 65px;
}
/*===================================================== Mobile  =======================================================*/
@media (max-width: 800px) {
  /* svg img 3 */
  nav .cart{
    display: none;
  }
  nav .icon{
    width: 90%;
    display: flex;
  }
  nav .mobile-cart a{
    padding: 0px 50px;
  }
  /* Navbar */
  nav li {
    height: 60px;
  }
  nav a {
    padding: 0 15px;
    color: #000;
  }
  nav img {
    max-width: 80px;
  }
  .hideOnMobile {
    display: none;
  }
  .menu-button {
    display: block;
  }
  /* Hero Slider */
  .container {
    height: 31vh;
    padding: 60px 0;
    margin-bottom: 1px;
  }
  .swiper {
    height: 25vh;
  }
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    display: none;
  }
  /* headline-one */
  .headline_one {
    font-size: 10px;
  }
  .headline_one::before,
  .headline_one::after {
    height: 1px;
  }
  /* Slider 1 */
  .product-box {
    margin: 0px 10px;
    padding: 10px 20px;
  }
  .p-slider {
    width: 100%;
    margin-bottom: 30px;
  }
  .p-img a,
  .p-img {
    height: 400px;
  }
  .p-img a img {
    border-radius: 30px;
  }
  .price-buy .p-price {
    font-size: 1.1rem;
  }
  .p-img-container:hover .p-img-back {
    display: none;
  }
  .p-img-container:hover .p-img-front {
    display: block;
  }
  /* Grid */
  .grid {
    padding: 1px 0px;
    margin-top: 20px;
  }
  .column img {
    margin-top: 10px;
    width: 100%;
  }
  .column {
    flex: 100%;
    max-width: 100%;
  }
  /* Grid-6 */
  .container-gallery {
    min-height: 50vh;
    padding: 20px 8%;
    margin-top: 15px;
  }
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-gap: 30px;
  }
  .gallery img {
    border-radius: 5%;
  }
  /* Video */
  .video {
    height: 50vh;
    padding-bottom: 25px;
    margin-top: 40px;
  }
  .back-video {
    border-radius: 20px;
  }
  /* footer */
  footer {
    padding: 40px;
  }
  footer .container {
    width: 100%;
    height: 150vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .copyrightText {
    padding: 20px 40px 30px;
  }
  footer .col-2 input {
    width: auto;
  }
  form button {
    margin-top: 10px;
  }
  /* WhatsApp */
.whatsapp_float{
  bottom: 50px;
}
}
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
  }
  footer .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
