*{
    
      font-family: "BYeKan";
      box-sizing: border-box;
}
body{
  margin: 0;
}

@font-face {
  font-family: "BYeKan";
  src: url("BYekan/BYekan.eot") format("eot");
  src: url("BYekan/BYekan.ttf") format("tff");
  src: url("BYekan/BYekan.woff") format("woff");
}
/* header{

    display: flex;
    padding-inline: 5%;
    justify-content: space-between;
    align-items: center;
      background-color: #e4d5a2;
      width: 100%;
      
}
.phone-number-container button{
    border: none;
    background-color:  #F0E68C ;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    color: #222;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.phone-number-container button:hover{
    background-color: #dac508;
}

.menu-logo-container{
    display: flex;
    align-items: center;
    gap: 30px;
}
.main-menu{
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}
.main-menu li{
    list-style: none;

}
.main-menu a{
    text-decoration: none;
    color: #63666A;
    padding:5px ;
    
}
.main-menu a:hover{
    padding: 5px;
    text-decoration: underline black;
    
} */

.contact-intro {
  background: linear-gradient(to bottom right, #f5f0e6, #e4d5a2);
  padding: 100px 20px;
  position: relative;
  direction: rtl;
  overflow: hidden;
}

.intro-overlay {
  background-color: rgba(168, 154, 109, 0.1); 
  padding: 40px;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.intro-content h1 {
  font-size: 3rem;
  color: #a89a6d;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 1px 1px #f0e68c;
}

.intro-content p {
  font-size: 1.2rem;
  color: #333;
  line-height: 2;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 15px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}
.intro-content p:nth-of-type(2){
  background-color: #fff;
}

.intro-content p:hover {
  background-color: rgba(255, 255, 255, 0.85);
}



.contact-details {
  background-color: #f5f0e6;
  padding: 80px 20px;
  text-align: center;
  direction: rtl;
}

.contact-details h2 {
  font-size: 2.2rem;
  color: #a89a6d;
  margin-bottom: 40px;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-item {
  background-color: #e4d5a2;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-item h3 {
  font-size: 1.3rem;
  color: #4e442b;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 1.1rem;
  color: #333;
}

.contact-form-section {
  background-color: #fafafa;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.form-wrapper {
  max-width: 650px;
  width: 100%;
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-left {
  width: 100%;
  
}


.form-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group label {
  font-weight: 600;
  color: #444;
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #7a5c2e;
  outline: none;
  box-shadow: 0 0 3px rgba(0,131,255,0.2);
}

.form-btn {
  background-color: #7a5c2e;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-btn:hover {
  background-color:  #917955;
}


.form-right{
  padding-inline: 5%;
}

.faq-item {
  margin-bottom: 25px;
  
  
}

.faq-item strong {
  display: block;
  color: #4e442b;
  margin-bottom: 8px;
  
}

.faq-item p {
  color: #333;
  background-color: #fdfaf3;
  padding: 10px;
  border-radius: 8px;
}


footer{
background-color:#e4d5a2 ;
display: flex;
flex-direction: column;
padding-inline: 5%;


}
.footer-info-box{
    display: flex;
    direction: rtl;
    padding-block: 5% 3%;
    
}
.footer-info-box h4{
    font-size: 25px;
}
.footer-about p{
    color: 		#3b3b3b;
}
.footer-about-logo{
    display: flex;
}
.footer-links a{
    color: 	#3b3b3b;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover{
    color: #816e02;
}
.footer-about,
.footer-links,
.footer-contact,
.footer-social{
    width: 100%;
    padding: 2%;
}

.footer-contact p{
    color: 	#3b3b3b;
    
}
.footer-social a{
    font-size: 30px;
    margin-left: 10px;
    color: 	#3b3b3b;
    transition: color 0.3s ease;

}
.footer-social a:hover{
    color: 		#816e02;
}

.footer-legal-box{
    border-top: 2px solid darkgray;
}
.footer-legal-box p{
    margin: 0;
    text-align: center;
    padding-block:3% 1%;
}