/* === BASE STYLES (Desktop First) === */
.quote-section {
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 60px;
}

.quote-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.quote-header {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  color: #001845;
}

.quote-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

.quote-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.quote-header p {
  width: 546px;
  max-width: 100%;
}

.quote-form {
  width: 100%;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: span 2;
}

/* === Custom Select === */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  min-width: 250px;
}

.custom-select {
  background: #faf9f6;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 16px;
  cursor: pointer;
}

.custom-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.custom-option {
  padding: 10px 12px;
  cursor: pointer;
  width: 100%;
}

.custom-option:hover {
  background: #a88340 !important;
  color: #fff !important;
}

.custom-select.open .custom-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #a88340;
}

/* === Submit Button === */
.submit-btn {
  width: 220px;
  background-color: #c29b58;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease
}

.submit-btn:hover {
  background-color: #a88340;
}

/* === Modal === */
#thank-you-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

#thank-you-modal .modal-content {
  background: white;
  padding: 30px;
  margin: 15% auto;
  width: 80%;
  max-width: 400px;
  text-align: center;
  border-radius: 8px;
}

/* === Input Styles === */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background: #faf9f6;
  transition: border 0.2s, box-shadow 0.2s;
  color: #333;
  font-family: inherit;
}

.form-group input:focus,
textarea:focus {
  border-color: #c29b58;
  box-shadow: 0 0 0 2px rgba(194, 155, 88, 0.15);
  outline: none;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #222;
  letter-spacing: 0.02em;
}

.quote-right{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision h1, .vision p{
  text-align: left;
}

.mission h1{
  text-align: left;
}

/* === TABLET: max-width 1024px === */
@media (max-width: 1024px) {
  .quote-section{
    height: max-content;
    padding: 2rem 40px;
  }

  .quote-wrapper {
    padding: 20px 60px;
  }

  .quote-left {
    width: 100%;
  }

  .quote-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-header p {
    width: 100%;
  }
}

/* === MOBILE: max-width 768px === */
@media (max-width: 768px) {

  .quote-header h1 {
    width: 280px;
}
  .quote-section{
    padding: 2rem 20px;
  }

  .quote-wrapper {
    padding: 20px 0px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .submit-btn {
    width: 100%;
  }

  .quote-content {
    gap: 1.5rem;
  }

  .quote-left {
    gap: 1.5rem;
  }

  .custom-select-wrapper {
    min-width: unset;
  }

  .quote-right{
    width: 100%;
    height: 100%;
  }

  .quote-right img{
    width: 100% !important;
    height: 100% !important;
  }
}
