@font-face {
  font-family: 'Denton Test';
  src: url('../../fonts/denton-font/Denton Test Medium 500.otf') format('woff2'),url('../../fonts/denton-font/Denton Test Medium 500.otf') format('opentype');;
  font-weight: 500;
}
@font-face {
  font-family: 'Denton Test';
  src: url('../../fonts/denton-font/Denton Test Bold 700.otf') format('woff2'),
       url('../../fonts/denton-font/Denton Test Bold 700.otf') format('opentype');
  font-weight: 700;
}

.contact-visiting-section {
    width: 100%;
    height: 760px;
    position: relative;
     background: 
    linear-gradient(
      rgba(0, 0, 0, 0.3),  /* top: semi-transparent black */
      rgba(0, 0, 0, 0.3)   /* bottom: semi-transparent black */
    ),
    url("../../Images/contact/contact-bg.png") no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center; /* center contact-options horizontally */
    align-items: center;     /* center vertically */
    gap: 30px;
    flex-direction: row;
      padding: 60px 70px;
      margin-top: 40px;
}

.contact-left-section{
display:flex;
flex-direction: column;
width:auto;
gap:10px;

}

.contact-right-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(11, 11, 11, 0.6);
  padding: 40px 50px;
  border-radius: 12px;
  gap: 20px;
  width: 480px;
  color: #fff;
}

.contact-left-section h2{
font-family: 'Denton Test';
font-weight: 600;
font-style:bold;
font-size: 40px;
line-height: 48px;
letter-spacing: 0px;
color: #fff;

}

.contact-left-section p{
font-family: 'DM Sans';
font-weight: 400;
font-style:normal;
font-size: 18px;
line-height: 24px;
letter-spacing: 0px;
color: #fff;
width:500px;
}

.contact-options {
    /* width: 400px;               adjust as needed */
    /* padding: 40px; */
    /* background: rgba(11, 11, 11, 0.6); */
    border-radius: 17px;
    display: flex;
    flex-direction: column;     
    gap: 10px;                  /* space between option rows */
    position: relative;
    /* left:250px; */
    /* height: 400px; */
     margin-top: 20px;
}


.contact-option {
    display: flex;              /* row: icon + text */
    align-items: center;        /* vertical alignment */
    gap: 10px;     
}

.contact-option img {
  width: 32px;
  height: 32px;
  padding: 8px; /* adds extra space inside the background */
  /* background: rgba(11, 11, 11, 0.6); */
  border-radius: 8px; /* optional – makes edges smooth */
  box-sizing: content-box; /* ensures padding adds outside image size */
  flex-shrink: 0;
    background:  rgba(80, 80, 80, 0.6);
}

.contact-option a {
  text-decoration: none; /* removes underline */
}

.option-text {
    display: flex;
    flex-direction: column;   
    white-space: nowrap; 
    padding: 10px  10px;   
    gap:2px;   
  }

.contact-option .option-text .options-name {
  font-family: 'Denton Test';
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0px;
  margin: 0;
  color: #FFF;
}

.contact-option .option-text .option-value {
  font-family: 'DM Sans';
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  color: #FFFCFC;
}

.option-value img {
padding:2px;
  background: none;
  /* gap:2px; */
}


.option-value img {
  margin-right: 5px; /* adds horizontal space between icons */
  vertical-align: middle; /* keeps icons aligned nicely */
}

.contact-right-section h2 {
  font-family: 'Denton Test';
  font-weight: 420;
  font-size: 34px;
  margin: 0;
}

.contact-right-section p {
  font-family: 'Denton Test';
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

.contact-details-form form{
    display: flex;
    flex-direction: column;
    gap: 10px; /* spacing between each line */
}


.contact-details-form form label {
  font-family: 'DM Sans';
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  margin-top: 4px;
}

.contact-details-form input[type="text"],
.contact-details-form input[type="email"],
.contact-details-form input[type="tel"],
.contact-details-form textarea {
  border: none;
  border-bottom: 1px solid #777;
  background: transparent;
  outline: none;
  font-size: 18px;
  color: #fff;
  /* padding: 8px 0; */
  width: 100%;
}

.contact-details-form textarea {
  border: 1px solid #777;
  border-radius: 6px;
  padding: 10px;
  resize: vertical;
  min-height: 100px;
}

.contact-details-form button {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 6px;
  background: #A07644;
  color: #fff;
  font-family: 'DM Sans';
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1%;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

button:hover {
  background: #b98b59;
}

.red-star {
  color: red;
}





/* Tablet view (below 1024px) */
@media (max-width: 1024px) {
  /* .contact-visiting-section {
    flex-direction: column; /* stack left and right vertically */
    /* align-items: center;
    height: auto;
    padding: 40px 30px;
    gap: 40px; */
  /* } */ 

  .contact-left-section {
    align-items: center;
    text-align: center;
  }

  .contact-left-section h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .contact-left-section p {
    width: 100%;
    max-width: 500px;
    font-size: 16px;
    line-height: 26px;
  }

  .contact-right-section {
    width: 80%;
    padding: 30px 40px;
  }

  .contact-details-form input,
  .contact-details-form textarea {
    font-size: 16px;
  }
   .contact-option {
    justify-content: flex-start;
    gap: 12px;
  }

  .option-text {
    align-items: flex-start;
    text-align: left;
  }

  .option-text .options-name {
    font-size: 16px;
    line-height: 22px;
  }

  .option-text .option-value {
    font-size: 14px;
    line-height: 20px;
      font-family: 'DM Sans';
  }
}

/* Mobile view (below 768px) */
@media (max-width: 768px) {
  .contact-visiting-section {
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
    gap: 30px; margin-top:50px;
  }

  .contact-left-section {
    text-align: center;
    align-items: center;
  }

  .contact-left-section h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .contact-left-section p {
    width: 100%;
    max-width: 400px;
    font-size: 15px;
    line-height: 24px;
  }

  .contact-right-section {
    width: 100%;
    padding: 25px 20px;
  }

  .contact-right-section h2 {
    font-size: 28px;
  }

  .contact-right-section p {
    font-size: 14px;
  }

  .contact-details-form button {
    height: 42px;
    font-size: 15px;
  }

  .contact-option {
    /* flex-direction: row; */
    justify-content: center;
    gap: 15px;
  }

  .contact-option img {
    width: 28px;
    height: 28px;
  }

 .contact-option {
    flex-direction: column; /* icon above text */
    align-items: center;
    gap: 6px;
  }

  .option-text {
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .option-text .options-name {
    font-size: 15px;
    line-height: 22px;
  }

  .option-text .option-value {
    font-size: 13px;
    line-height: 20px;
    word-wrap: break-word;
      font-family: 'DM Sans';
  }

  .contact-option img {
    width: 28px;
    height: 28px;
    padding: 6px;
  }
}

/* Small mobile view (below 480px) */
@media (max-width: 480px) {
  .contact-visiting-section {
    padding: 20px 15px;
  }

  .contact-left-section h2 {
    font-size: 22px;
  }

  .contact-left-section p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 10px;
  }

  .contact-right-section {
    padding: 20px 15px;
  }

  .contact-right-section h2 {
    font-size: 24px;
  }

  .contact-details-form input,
  .contact-details-form textarea {
    font-size: 14px;
  }

  .contact-details-form button {
    height: 40px;
    font-size: 14px;
  }
     .contact-option {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .option-text {
    text-align: center;
    align-items: center;
  }

  .option-text .options-name {
    font-size: 14px;
  }

  .option-text .option-value {
    font-size: 12px;
      font-family: 'DM Sans';
  }
}
