/* Request Section Styles */
.request-section {
  padding: 80px 0;
  background: #F4EFE6;
  background-image: url('/image/contact-us.png');
  background-size: 25%;
  background-position: center right;
  background-repeat: no-repeat;
}

.request-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Form Container */
.request-form-container {
  display: flex;
  justify-content: flex-end;
  max-width: calc(37% - 20px);
  width: 100%;
}

.request-form-card {
  background: #ffffff;
  padding: 30px 20px;
  width: 100%;
  max-width: 400px;
}

.request-form-title {
  color: #000;
  font-family: Gilroy;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #FAFAFA;
  color: rgba(0, 0, 0, 0.40);
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-input:focus {
  outline: none;
  border-color: #d4a574;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-input::placeholder {
  color: #999999;
}

.request-submit-btn {
  width: 100%;
  padding: 24px 0px;
  background: #000;
  color: #ffffff;
  border: none;
  text-align: center;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.request-submit-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.request-submit-btn:active {
  transform: translateY(0);
}

/* Info Container */
.request-info-container {
  max-width: calc(55% - 20px);
  width: 100%;
  flex: 1;
}

.request-info-title {
  color: #000;
  font-family: "KyivType";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
}

.request-info-text {
  color: #000;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 30px;
  margin-bottom: 0px;
  padding: 0px;
}

/* Swatches */
.request-swatches {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.swatch-set {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.swatch-set-1 {
  transform: rotate(-5deg);
}

.swatch-set-2 {
  transform: rotate(3deg);
  margin-top: 20px;
}

.swatch {
  width: 40px;
  height: 25px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.swatch:hover {
  transform: scale(1.1);
}

/* Swatch Colors */
.swatch-dark-blue { background: #1e3a8a; }
.swatch-red { background: #dc2626; }
.swatch-light-pink { background: #f9a8d4; }
.swatch-orange { background: #ea580c; }
.swatch-dark-green { background: #166534; }
.swatch-light-blue { background: #3b82f6; }
.swatch-purple { background: #7c3aed; }
.swatch-yellow { background: #eab308; }
.swatch-navy { background: #1e40af; }
.swatch-sky-blue { background: #0ea5e9; }
.swatch-teal { background: #0d9488; }
.swatch-coral { background: #f97316; }
.swatch-lime { background: #84cc16; }
.swatch-gray { background: #6b7280; }

.swatch-label {
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.swatch-qr {
  width: 20px;
  height: 20px;
  background: #2c2c2c;
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
}

.swatch-info {
  font-family: "Gilroy", sans-serif;
  font-size: 10px;
  color: #2c2c2c;
  line-height: 1.2;
}

.swatch-info div {
  margin-bottom: 2px;
}

.swatch-info div:last-child {
  margin-bottom: 0;
}

@media(max-width: 1400px) {
  .request-section {
    background-image: unset;
  }
}

.request-form-mob-img {
  display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {

  .request-wrapper {
    gap: 60px;
  }
  
  .request-info-title {
    font-size: 32px;
  }
  
  .request-swatches {
    gap: 20px;
  }
}

@media (max-width: 990px) {

  .request-form-mob-img img {
    width: 300px;
    height: 200px;
    margin: 0 auto;
    object-fit: contain;
  }

  .request-form-mob-img {
    display: block !important;
    text-align: center;
  }

  .request-info-title {
    font-size: 30px;
  }

  .request-info-text {
    margin-top: 20px;
  }

  .request-wrapper {
    gap: 40px;
  }

  .request-form-card {
    max-width: 100%;
  }

  .request-section {
    padding: 60px 0;
  }
  
  .request-wrapper {
    flex-direction: column-reverse;
    display: flex;
  }

  .request-info-container {
    max-width: 100%;
  }
  
  .request-form-container {
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
  }
  
  .request-form-card {
    max-width: 100%;
 }
}

@media (max-width: 768px) {
  .request-form-mob-img img {
    width: 100%;
    height: 100%;
  }
}
