/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 0px; /* Add padding to the left and right sides */
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}














/* all button design */
.custom-butto {
    display: inline-block;
    font-size: 18px; /* Default font size */
    font-weight: 549; /* Default font weight */
    color: #000000; /* Default text color */
    background-color: #ffffff; /* Default background color */
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Remove underline from link */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    padding: 8px 25px;
    border: 2px solid #A37E2D; /* Add a border on hover */
}

.custom-butto:hover {
    background-color: #A37E2D; /* Slightly darker on hover */
    color: #ffffff; /* Change text color on hover */
    border: 2px solid #7DA908; /* Add a border on hover */
}


















/* nacnad product / blocks & accessories page */
/* heading */
.fitness-hero {
  position: relative;
  width: 85%;
  min-height: 250px;
  height: 250px;
  background: url('img/sasaa.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 auto 20px; /* Centering the element horizontally */
  margin-top: 20px;
}

.fitness-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, 0.53);
  z-index: 1;
}

.fitness-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fitness-hero__title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  font-family: 'Poppins', Arial, sans-serif;
}



/* Responsive Design */
@media (max-width: 700px) {
  .fitness-hero {
    min-height: 240px;
    height: 240px;
  }
  .fitness-hero__title {
    font-size: 1.5rem;
  }
  
}


















/* nacnad product / blocks & accessories page */
/* video & explanation  */
.nacnad_products-hero-wrapper {
  margin: 0 20px;
}

.nacnad_products-hero {
  background: rgba(51, 51, 51, 0.6);
  width: 100%;
  text-align: center;
  padding: 0 0 56px 0;
  position: relative;
  overflow-x: hidden;
  border-radius: 30px;
}

.nacnad_products-top-label {
  margin-top: 36px;
  margin-bottom: 12px;
}

.nacnad_products-top100 {
  color: #fff;
  line-height: 25px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.2px;
  background: transparent;
  padding: 4px 20px;
  text-transform: uppercase;
}

/* 🟢 Responsive video container */
/* --- Video container --- */
.nacnad_products-hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 32px auto;
  background: #A37E2D;
  border-radius: 22px;
  padding: 0;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.5);
  border: 4px solid #7DA908;
  overflow: hidden;
}

/* --- Make video scale correctly --- */
.nacnad_products-hero-video {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 18px;
  background: #000;
  object-fit: contain; /* Ensures full video is visible */
}

/* --- Force perfect scaling on mobile --- */
@media (max-width: 768px) {
  .nacnad_products-hero-image-frame {
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    margin: 0 auto 24px auto;
  }

  .nacnad_products-hero-video {
    width: 100vw; /* fill full viewport width */
    height: auto;
    border-radius: 0;
    object-fit: contain; /* prevent cropping */
  }
}


.nacnad_products-title {
  font-size: 25px;
  padding: 0 50px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px 0;
  letter-spacing: 1px;
  line-height: 30px;
}

.nacnad_products-desc {
  color: #ffffff;
  font-size: 25px;
  margin: 0 auto 20px auto;
  max-width: 650px;
  line-height: 1.1;
}

.fitness-hero__desc {
  color: #000000;
  font-size: 18px;
  margin: 20px auto;
  max-width: 1000px;
  line-height: 28px;
}

.button-container {
  margin-top: 24px;
}

.custom-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #7DA908;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.custom-button:hover {
  background-color: #648a06;
}

/* 🟡 Tablet screens */
@media (max-width: 900px) {
  .nacnad_products-hero {
    padding-bottom: 30px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nacnad_products-title {
    font-size: 1.8rem;
    padding: 0;
  }

  .nacnad_products-desc {
    font-size: 1rem;
    max-width: 92vw;
  }

  .nacnad_products-hero-image-frame {
    max-width: 95vw;
    padding: 5px;
  }
}

/* 🔵 Mobile screens */
@media (max-width: 600px) {
  .nacnad_products-hero {
    border-radius: 18px;
    padding-bottom: 30px;
  }

  .nacnad_products-title {
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 0 10px;
  }

  .nacnad_products-desc {
    font-size: 1rem;
    padding: 0 8px;
  }

  /* Hide this text on small screens */
  .fitness-hero__desc {
    display: none;
  }

}













/* nacnad product / blocks & accessories page */
/* categories */
.nacnad_products {
    display: flex;
    justify-content: center;
    gap: 36px;
    padding: 30px 0;
    background: #fff;
    flex-wrap: wrap;
}

.nacnad_products__item {
    width: 500px; 
    height: 300px;
    display: flex;
    justify-content: center;
}

.nacnad_products__imgwrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    background: #f2f2f2;
    box-shadow: 0 3px 18px 0 rgba(125,169,8,0.7);
    cursor: pointer;
    transition: box-shadow 0.25s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.nacnad_products__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s;
}

.nacnad_products__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(66, 66, 66, 0.5);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    opacity: 1;
    transition: background 0.25s, opacity 0.25s;
    padding-bottom: 24px;
    pointer-events: none;
}

.nacnad_products__name {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 8px;
    text-align: center;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.13);
    opacity: 1;
    transition: font-size 0.22s;
}

.nacnad_products__desc {
    display: none;
}

.nacnad_products__imgwrap:hover .nacnad_products__overlay,
.nacnad_products__imgwrap:focus .nacnad_products__overlay {
    background: rgba(163, 126, 45, 0.4);
    justify-content: center;
    align-items: center;
    opacity: 1;
    flex-direction: column;
    padding-bottom: 0;
    pointer-events: auto;
}

.nacnad_products__imgwrap:hover .nacnad_products__img,
.nacnad_products__imgwrap:focus .nacnad_products__img {
    transform: scale(1.04);
}

.nacnad_products__imgwrap:hover .nacnad_products__name,
.nacnad_products__imgwrap:focus .nacnad_products__name {
    font-size:30px;
    margin-bottom: 10px;
}

.nacnad_products__imgwrap:hover .nacnad_products__desc,
.nacnad_products__imgwrap:focus .nacnad_products__desc,
.nacnad_products__imgwrap:hover .nacnad_products__btn,
.nacnad_products__imgwrap:focus .nacnad_products__btn {
    display: block;
}

.nacnad_products__desc {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 22px;
    text-align: center;
    max-width: 210px;
    opacity: 1;
}

@media (max-width: 990px) {
    .nacnad_products {
        gap: 20px;
    }
    .nacnad_products__item {
        width: 280px; /* Increased from 230px for tablets */
    }
}

@media (max-width: 700px) {
    .nacnad_products {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
    }
    .nacnad_products__item {
        width: 98vw;
        max-width: 380px; /* Increased from 350px for mobile consistency */
    }
    .nacnad_products__imgwrap {
        max-width: 98vw;
    }
}







































/* nacnad product / blocks & accessories page */
/* faq */
.nacnad_faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 0 20px;
  text-align: center;
}

.nacnad_faq__header {
  margin-bottom: 32px;
}

.nacnad_faq__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #000;
}

.nacnad_faq__subtitle {
  font-size: 1.1rem;
  color: #333;
  font-weight: 400;
}

.nacnad_faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 45px;
  text-align: left;
  margin-top: 14px;
}

.nacnad_faq__item {
  border-bottom: 1px solid #7DA908;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  background: transparent;
  position: relative;
}

.nacnad_faq__toggle {
  display: none;
}

.nacnad_faq__questionwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 18px 0 14px 0;
  transition: background 0.15s ease;
}

.nacnad_faq__question {
  flex: 1;
  line-height: 1.4;
}

.nacnad_faq__arrow {
  font-size: 28px;
  color: #A37E2D;
  margin-left: 15px;
  font-weight: bold;
  transition: color 0.15s, transform 0.2s;
}

.nacnad_faq__item:hover .nacnad_faq__arrow,
.nacnad_faq__toggle:checked + .nacnad_faq__questionwrap .nacnad_faq__arrow {
  color: #000;
}

.nacnad_faq__toggle:checked + .nacnad_faq__questionwrap .nacnad_faq__arrow {
  transform: rotate(90deg);
}

.nacnad_faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #333;
  background: #f9f9f9;
  padding: 0 0 0 0;
  border-radius: 6px;
}

.nacnad_faq__toggle:checked ~ .nacnad_faq__answer {
  max-height: 400px;
  opacity: 1;
  padding: 0 0 16px 0;
}

/* ✅ Mobile Responsiveness */
@media (max-width: 900px) {
  .nacnad_faq__grid {
    grid-template-columns: 1fr;
    gap: 12px 0;
  }

  .nacnad_faq {
    padding: 30px 12px 0 12px;
  }

  .nacnad_faq__title {
    font-size: 1.8rem;
  }

  .nacnad_faq__subtitle {
    font-size: 0.95rem;
  }

  .nacnad_faq__questionwrap {
    padding: 16px 4px;
  }

  .nacnad_faq__question {
    font-size: 1rem;
  }

  .nacnad_faq__arrow {
    font-size: 24px;
  }

  .nacnad_faq__answer {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 0 12px 0;
  }
}














/* custom furniture page  */
/* introduction */
.furniture_process-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 20px 0 0 0;
}

.furniture_process-card {
  background: #ffffff;
  color: #000000;
  border: 4px solid #7DA908;
  box-sizing: border-box;
  width: 300px;
  text-align: center;
  padding: 32px 20px 24px 20px;
  box-shadow: 0 4px 10px #A37E2D;
  position: relative;
  z-index: 2;
  margin-bottom: -100px;
}

.furniture_process-card-title {
  margin: 0 0 18px 0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

.furniture_process-card-desc {
  font-size: 18px;
  margin: 0 0 18px 0;
  color: #000000;
}

.furniture_process-discount-section {
  padding-top: 100px;
  background: url('img/pic03.jpg');
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 0;
}

.furniture_process-discount-section::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.furniture_process-discount-content {
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 30px;
}

.furniture_process-discount-title {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 28px;
  letter-spacing: 2px;
}

.butt{
  margin-top: 20px;
}

@media (max-width: 1000px) {
  .furniture_process-cards-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
  }
  .furniture_process-card {
      margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .furniture_process-discount-section {
    padding: 60px 0;
    min-height: auto;
  }

  .furniture_process-discount-content {
    padding: 0 20px;
  }

  .furniture_process-discount-title {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 1px;
  }
}






























/* custom furniture page  */
/* our process */
.title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-top: 10px;
  color: #000000;
}

.furniture_process-jobs-wrapper {
  background: #f5f5f5;
  max-width: 100%;
  padding-bottom: 50px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.furniture_process-job-card {
  background: #fff;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 7px;
  box-shadow: 0 3px 16px rgba(125, 169, 8, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 28px 28px 28px;
  gap: 18px;
  transition: box-shadow 0.2s;
}

.furniture_process-job-card:hover {
  box-shadow: 0 6px 24px rgba(163, 126, 45, 0.5);
}

.furniture_process-job-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.furniture_process-job-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 6px;
  background: #f3f3f3;
  margin-right: 15px;
}

.furniture_process-job-title {
  font-size: 1.21rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.furniture_process-job-meta {
  display: flex;
  gap: 18px;
  font-size: 0.98rem;
  color: #555;
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
  .furniture_process-jobs-wrapper {
    margin: 20px auto;
    padding: 0 10px 30px 10px;
  }
  
  .furniture_process-job-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
  }

  .furniture_process-job-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .furniture_process-job-logo {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .furniture_process-job-title {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .furniture_process-job-meta {
    flex-direction: column;
    gap: 10px;
  }
}




































/* custom furniture page  */
/* faq */
.furniture_process-main-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  padding: 40px 0 0 0;
  max-width: 1200px;
  margin: 50px auto;
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 50px;
}

.furniture_process-faq-section {
  width: 45%;
}

.furniture_process-faq-title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.furniture_process-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.furniture_process-faq-item {
  border: 1px solid #7DA908;
  border-radius: 2px;
  background: #f5f5f5;
  overflow: hidden;
}

.furniture_process-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 15px 18px 15px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  position: relative;
  transition: background 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.furniture_process-faq-question:hover {
  background: #ffffff;
}

.furniture_process-faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.furniture_process-faq-answer {
  display: none;
  padding: 0 20px 16px 20px;
  font-size: 16px;
  color: #333;
  background: #ffffff;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .furniture_process-main-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
    margin: 20px auto;
  }
  
  .furniture_process-faq-section {
    width: 100%;
  }

  .furniture_process-faq-title {
    font-size: 28px;
    text-align: center;
  }
}





















/* custom furniture page  */
/* form */
.furniture_process-appointment-section {
  width: 50%;
}

.furniture_process-appointment-title {
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.furniture_process-bold {
  font-weight: bold;
}

.furniture_process-appointment-form {
  width: 100%;
}

.furniture_process-form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.furniture_process-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #7DA908;
  border-radius: 2px;
  font-size: 1rem;
  background: #f5f5f5;
  outline: none;
  transition: border 0.2s;
}
.furniture_process-input:focus {
  border: 1px solid #000000;
}


.furniture_process-input-file {
  margin-top: 6px;
}

.furniture_process-input::placeholder { 
  color: #333; 
  font-weight: normal; 
}

.furniture_process-message {
  margin-top: 20px;
  min-height: 110px;
  resize: vertical;
  margin-bottom: 10px;
}

/* apload container */
.apload_doc-form {
  margin: 20px;
  max-width: 800px;
}

.apload_doc-label {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.apload_doc-box {
  border: 2px solid #7DA908;
  border-radius: 3px;
  background: #f5f5f5;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile styles */
@media (max-width: 768px) {
  .furniture_process-appointment-section {
    width: 100%;
    padding: 0 20px;
  }
  
  .furniture_process-appointment-title {
    font-size: 28px;
    text-align: center;
  }

  .furniture_process-form-row {
    flex-direction: column;
    gap: 0;
  }

  .furniture_process-input {
    margin-bottom: 18px;
  }

  .apload_doc-form {
    margin: 20px 0;
  }

  .custom-button {
    width: 100%;
  }
}





















/* furniture repair and trade in */
/* heading */
.furniture_repair_header {
  position: relative;
  width: 100%;
  min-height: 450px;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.furniture_repair_header__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.furniture_repair_header__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 420px;
  padding-right: 7%;
}

.furniture_repair_header__card {
  background: #A37E2D;
  color: #fff;
  padding: 40px 48px 32px 48px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 32px rgba(44,44,44,0.13);
  position: relative;
  max-width: 410px;
  min-width: 340px;
}

.furniture_repair_header__decor {
  position: absolute;
  width: 56px;
  height: 28px;
  background: transparent;
  z-index: 2;
}

.furniture_repair_header__decor--top {
  top: -14px;
  right: -14px;
  border-top: 5px solid #7DA908;
  border-right: 5px solid #7DA908;
  border-radius: 0 7px 0 0;
}

.furniture_repair_header__title {
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 18px 0;
  letter-spacing: 1px;
}

.furniture_repair_header__desc {
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 26px 0;
  line-height: 1.5;
  max-width: 320px;
}

@media (max-width: 900px) {
  .furniture_repair_header__content {
      padding-right: 0;
      justify-content: center;
  }
  .furniture_repair_header__card {
      padding: 26px 12px 22px 18px;
      min-width: 0;
      max-width: 98vw;
  }
}






































/* furniture repair and trade in */
/* CONTENT */
.furniture_repair_content {
  background: linear-gradient(to bottom, #f5f5f5, #fff);
  color: #000000;
  padding: 48px 24px 64px 24px;
}

.furniture_repair_content__header {
  margin-bottom: 36px;
  text-align: center;
}

.furniture_repair_content__subtitle {
  color: #7DA908;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.furniture_repair_content__title {
  font-size: 2.15rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0 0 8px 0;
  font-weight: 500;
}

.furniture_repair_content__title-underline {
  display: block;
  width: 80%; /* Adjusted for mobile responsiveness */
  max-width: 450px;
  height: 3px;
  background: #A37E2D;
  margin: 8px auto 0 auto;
  border-radius: 2px;
}

.furniture_repair_content__project-row {
  max-width: 1080px;
  margin: 0 auto 58px auto;
  display: flex;
  flex-direction: column; /* Stacks items on mobile */
  align-items: center;
  gap: 44px;
  text-align: center;
}

.furniture_repair_content__project-row--reverse {
  flex-direction: column;
}

.furniture_repair_content__img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.furniture_repair_content__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  box-shadow: 0 3px 18px rgba(0,0,0,0.16);
}

.furniture_repair_content__img-corner {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 92px;
  height: 52px;
  border-top: 5px solid #7DA908;
  border-right: 5px solid #7DA908;
  border-radius: 0 8px 0 0;
  z-index: 2;
}

.furniture_repair_content__project-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 10px;
  padding: 0 16px;
}

/* Adjusting for mobile alignment */
.furniture_repair_content__date {
  border-left: none;
  padding-left: 0;
  margin-bottom: 10px;
}

.furniture_repair_content__date::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: #7DA908;
  margin: 8px auto 0;
}

.furniture_repair_content__project-title {
  font-size: 22px;
  font-weight: 500;
  margin: 6px 0 11px 0;
}

.furniture_repair_content__desc {
  font-size: 16px;
  color: #333;
  margin-bottom: 22px;
  line-height: 1.5;
  max-width: 550px;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .furniture_repair_content__project-row {
      flex-direction: row; /* Desktop layout */
  }

  .furniture_repair_content__project-row--reverse {
      flex-direction: row-reverse;
  }

  .furniture_repair_content__project-info {
      text-align: left;
      padding: 0;
  }

  .furniture_repair_content__date {
      border-left: 3px solid #7DA908;
      padding-left: 8px;
      margin-bottom: 5px;
  }
  
  .furniture_repair_content__date::after {
      display: none;
  }
  
  .furniture_repair_content__header {
      text-align: left;
      margin-left: 8%;
  }
}

























/* furniture repair and trade in */
/* contact us */
.furniture_trade_in {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 24px;
}

.furniture_trade_in::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.furniture_trade_in__form {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 450px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.furniture_trade_in__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #ffffff;
  letter-spacing: 1px;
}

.furniture_trade_in__btn {
  margin-top: 20px;
  background: #A37E2D;
  color: #fff;
  border: 2px solid #7DA908;
  padding: 12px 0;
  font-size: 16px;
  letter-spacing: 1.5px;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.furniture_trade_in__btn:hover {
  background: #7DA908;
  border-color: #A37E2D;
  transform: translateY(-2px);
}

.form-outline {
  margin-bottom: 15px;
  width: 100%;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease-in-out;
  font-size: 16px;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
  border-color: #7DA908;
  box-shadow: 0 0 0 3px rgba(125, 169, 8, 0.3);
}

.form-control.select-with-arrow {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.form-control option {
  background: #333;
  color: #fff;
}
















/* contacts page */
/* order support */
.orderaa{
  background-color: #f5f5f5; 
  padding: 50px 0; 
  font-family: Arial, sans-serif;
}
.tm-text-green {
  color: #000000; /* Green color */
  font-size: 50px;
  text-align: center;
  margin-bottom: 40px;
  align-self: center;
  align-items: center;
}

.contacts_us-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 48px 0;
  max-width: 1300px;
  margin: 0 auto;
}

.contacts_us-card {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  width: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.contacts_us-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.contacts_us-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.contacts_us-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contacts_us-card-date {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #222;
  color: #fff;
  padding: 7px 18px 6px 18px;
  border-radius: 2px;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.contacts_us-card-date-day {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1px;
}
.contacts_us-card-date-month {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}

.contacts_us-card-content {
  padding: 26px 22px 22px 22px;
  display: flex;
  flex-direction: column;
}

.contacts_us-card-title {
  font-size: 1.11rem;
  font-weight: bold;
  margin-bottom: 14px;
  line-height: 1.37;
  letter-spacing: .1px;
}

.contacts_us-card-meta {
  font-size: 0.99rem;
  color: #555;
  margin-bottom: 18px;
}

.contacts_us-card-comments {
  color: #000000; 
  text-decoration: underline; 
  transition: color 0.3s ease;
}


.contacts_us-card-comments:hover {
  color: #A37E2D; 
  text-decoration: underline; 
}

.contacts_us-card-desc {
  font-size: 1rem;
  color: #767676;
  line-height: 1.62;
}

@media (max-width: 1100px) {
  .contacts_us-cards-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 28px;
  }
  .contacts_us-card {
      width: 95%;
      max-width: 430px;
  }
}


















/* contacts page */
/* happy to help */
/* ===========================
   CONTACT SECTION MAIN STYLES
=========================== */
.contty {
  background-color: #f5f5f5;
  padding: 60px 0;
  font-family: Arial, sans-serif;
}

.contact-section {
  padding: 50px 20px;
  font-family: sans-serif;
}

.containero {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* ===========================
   LEFT COLUMN (INFO)
=========================== */
.contact-info-column {
  flex: 1 1 400px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-heading {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
}

.contact-description {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.contact-details-heading {
  font-size: 26px;
  margin-bottom: 15px;
  color: #222;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.contact-detail img {
  width: 26px;
  height: 26px;
  margin-right: 12px;
}

.contact-detail a {
  font-size: 18px;
  color: #A37E2D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: #7DA908;
  text-decoration: underline;
}

/* ===========================
   RIGHT COLUMN (FORM)
=========================== */
.contact-form-column {
  flex: 1 1 400px;
  padding-left: 20px;
}

.contact-form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-heading {
  font-size: 34px;
  color: #222;
}

.form-body .form-group {
  margin-bottom: 18px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #A37E2D;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  color: #222;
  font-size: 16px;
}

.form-control::placeholder {
  font-style: italic;
  color: #555;
  font-size: 15px;
  font-family: sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: #7DA908;
  background-color: #fff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* SELECT ARROW ICON */
select.form-control {
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%237DA908" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 1em;
  cursor: pointer;
}

/* SUBMIT BUTTON */
.button-container {
  text-align: center;
}

.custom-button {
  background-color: #A37E2D;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 17px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-button:hover {
  background-color: #7DA908;
}

/* ===========================
   RESPONSIVE STYLES
=========================== */
@media (max-width: 992px) {
  .contact-heading {
    font-size: 38px;
  }

  .form-heading {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info-column,
  .contact-form-column {
    padding: 0;
  }

  .contact-heading {
    font-size: 36px;
    text-align: center;
  }

  .contact-description {
    text-align: center;
    font-size: 16px;
  }

  .contact-details {
    text-align: center;
  }

  .contact-detail {
    justify-content: center;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-control {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contty {
    padding: 40px 0;
  }

  .contact-section {
    padding: 20px 10px;
  }

  .contact-heading {
    font-size: 28px;
  }

  .contact-description {
    font-size: 15px;
  }

  .form-heading {
    font-size: 26px;
  }

  .custom-button {
    width: 100%;
    padding: 12px;
  }
}

  

















/* contacts page */
/* google maps */
#google-map {
  width: 100%;
  padding: 20px 0; /* Add some padding around the map */
}

.map-container {
  width: 90%;
  max-width: 1200px; /* Adjust max width as needed */
  margin: 0 auto; /* Center the map container */
}

.map-container iframe {
  width: 100%;
  height: 450px; /* Set the height of the map */
  border: 0;
}

/* Optional: Add responsive adjustments */
@media (max-width: 768px) {
  #google-map {
      padding: 10px 0; /* Reduce padding on smaller screens */
  }

  .map-container {
      width: 100%; /* Make map container full-width on smaller screens */
  }

  .map-container iframe {
      height: 300px; /* Adjust map height on smaller screens */
  }
}