
/** contact-page hero section **/

.contact-page-title.centred{
  position: relative;
  display: flex;
  align-items: center;
 
}

.contact-page-title.centred .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.contact-page-title.centred .bg-overlay{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 80%;
  z-index: 1;
}

.contact-page-title.centred .auto-container{
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-page-title.centred .content-box.centred-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-page-title.centred .contact-hero-title{
  font-size: 64px;
  line-height: 72px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 30px;
  font-family: var(--title-font);
  text-transform: none;
  letter-spacing: 0;
}

.contact-page-title.centred .contact-hero-description{
  font-size: 18px;
  line-height: 28px;
  color: #ffffff !important;
  margin-bottom: 0;
  max-width: 900px;
  font-weight: 400;
  font-family: var(--text-font);
}

.contact-page-title.centred .contact-hero-description p{
  color: #ffffff !important;
}




.contact-page-title.centred .contact-hero-description .highlight-gold{
  color: #FFD800;

  font-weight: 700;
}

@media only screen and (max-width: 991px){
  .contact-page-title.centred .contact-hero-title{
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 25px;
  }

  .contact-page-title.centred .contact-hero-description{
    font-size: 16px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 767px){
  .contact-page-title.centred{
    min-height: 500px;
    padding: 60px 0px 80px 0px !important;
  }

  .contact-page-title.centred .contact-hero-title{
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 20px;
  }

  .contact-page-title.centred .contact-hero-description{
    font-size: 15px;
    line-height: 24px;
    padding: 0 15px;
  }

  .contact-page-title.centred .contact-hero-description p{
    margin-bottom: 15px;
  }
}

/** contact-section **/

.contact-section{
  position: relative;
}

.contact-section .map-inner{
  position: relative;
  display: block;
  height: 501px;
  border-radius: 20px;
  overflow: hidden;
}

.contact-section .map-inner iframe{
  position: relative;
  width: 100%;
  height: 501px;
}

.contact-section .form-inner{
  position: relative;
  display: block;
}

.contact-section .contact-widget{
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-section .contact-widget h3{
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 24px;
  font-family: var(--title-font);
}

.contact-section .contact-item{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-section .contact-item:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-section .contact-icon{
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-color-btn);
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-section .contact-icon i{
  font-size: 18px;
  color: #fff;
}

.contact-section .contact-info{
  flex: 1;
}

.contact-section .contact-label{
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-section .contact-link{
  color: #FFD700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
}

.contact-section .contact-link:hover{
  color: #FFC700;
  text-decoration: underline;
}


/** rtl-css **/



/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){
  .contact-section .form-inner{
    margin-left: 0px;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px){
  .contact-section{
    padding: 70px 0px;
  }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){

}

/** contact-form-section **/

.contact-form-section{
  position: relative;
  display: block;
  overflow: hidden;
}

.contact-form-section .bg-layer{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.1);
  z-index: 0;
}

.contact-form-section .bg-layer::after{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.contact-form-section .auto-container{
  position: relative;
  z-index: 2;
}

.contact-form-box{
  position: relative;
  background: var(--gradient-color-btn);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.2);
}

.contact-form-box .form-header{
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-form-box .form-header-icon{
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-box .form-header-icon i{
  font-size: 24px;
  color: #fff;
}

.contact-form-box .form-header-text{
  flex: 1;
}

.contact-form-box .form-subtitle{
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--title-font);
}

.contact-form-box .form-title{
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: var(--title-font);
}

.contact-form-box .form-group{
  position: relative;
  margin-bottom: 20px;
}

.contact-form-box .form-group label{
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--title-font);
}

.contact-form-box .form-group .required{
  color: #dc3545;
}

.contact-form-box .form-group input[type="text"],
.contact-form-box .form-group input[type="email"],
.contact-form-box .form-group input[type="tel"],
.contact-form-box .form-group select,
.contact-form-box .form-group textarea{
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  line-height: 24px;
  color: #333;
  background: #fff !important;
  background-color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: var(--text-font);
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
}

.contact-form-box .form-group select{
  padding-right: 40px;
  cursor: pointer;
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

.contact-form-box .form-group select,
.contact-form-box .form-group select:focus,
.contact-form-box .form-group select:active,
.contact-form-box .form-group select:hover{
  background-color: #fff !important;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 15px center !important;
  background-size: 12px !important;
}

.contact-form-box .form-group select::-ms-expand{
  display: none;
}

.contact-form-box .form-group select option{
  background: #fff !important;
  background-color: #fff !important;
  color: #333;
  padding: 10px;
}

.contact-form-box .form-group input:focus,
.contact-form-box .form-group select:focus,
.contact-form-box .form-group textarea:focus{
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.contact-form-box .form-group textarea{
  resize: vertical;
  min-height: 120px;
}

.contact-form-box .checkbox-group{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-form-box .checkbox-group input[type="checkbox"]{
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-form-box .checkbox-group label{
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form-box .privacy-link{
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.contact-form-box .submit-btn{
  width: 100%;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 700;
  background: white !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: var(--title-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form-box .submit-btn span,
.contact-form-box .submit-btn i{
  background: var(--gradient-color-btn);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.contact-form-box .submit-btn:hover{
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-form-box .submit-btn i{
  font-size: 18px;
}

.or-separator{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
}

.or-separator span{
  position: relative;
  display: inline-block;
  padding: 15px 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--title-font);
  letter-spacing: 2px;
}

.qr-code-box{
  position: relative;

  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.qr-code-box .qr-header{
  margin-bottom: 30px;
}

.qr-code-box .qr-title{
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  background: var(--gradient-color-btn);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 0 10px 0;
  font-family: var(--title-font);
}

.qr-code-box .qr-subtitle{
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  margin: 0;
  font-family: var(--text-font);
}

.qr-code-wrapper{
  position: relative;
  display: inline-block;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}
.qr-code-wrapper img{
  width: 250px;
  height: 250px;
  display: block;
  object-fit: contain;
}
.qr-code-image{
  width: 200px;
  height: 200px;
  display: block;
  object-fit: contain;
}

@media only screen and (max-width: 991px){
  .contact-form-section .row{
    gap: 30px;
    display: flex;
    flex-direction: column;
  }

  .form-column{
    order: 1;
  }

  .separator-column{
    order: 2;
  }

  .qr-column{
    order: 3;
  }

  .or-separator{
    min-height: auto;
    padding: 20px 0;
  }

  .or-separator span{
    writing-mode: horizontal-tb;
    padding: 8px 20px;
  }

  .contact-form-box,
  .qr-code-box{
    padding: 30px;
  }
}

@media only screen and (max-width: 767px){
  .contact-form-box .form-title{
    font-size: 24px;
    line-height: 32px;
  }

  .contact-form-box,
  .qr-code-box{
    padding: 25px;
  }

  .qr-code-image{
    width: 200px;
    height: 200px;
  }
}

/** contact-info-section **/

.contactpage-info-section {
  position: relative;
  display: block;
  background: #f5f5f5;
}

.contact-info-section .info-card-item{
  margin-bottom: 30px;
}

.contact-info-card{
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-card:hover{
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.contact-info-card .info-icon-box{
  position: relative;
  width: 70px;
  height: 70px;
  background: var(--gradient-color-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0px 4px 15px 0px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.contact-info-card:hover .info-icon-box{
  transform: scale(1.1);
  box-shadow: 0px 6px 20px 0px rgba(255, 215, 0, 0.4);
}

.contact-info-card .info-icon-box i{
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.contact-info-card .info-title{
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 15px;
  font-family: var(--title-font);
}

.contact-info-card .info-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-info-card .info-content p{
  font-size: 15px;
  line-height: 24px;
  color: #666;
  margin: 0;
  font-family: var(--text-font);
}

.contact-info-card .info-link{
  font-size: 15px;
  line-height: 24px;
  color: #007bff;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-family: var(--text-font);
}

.contact-info-card .info-link:hover{
  color: #0056b3;
  text-decoration: none;
}

@media only screen and (max-width: 991px){
  .contact-info-card{
    padding: 30px 20px;
  }

  .contact-info-card .info-icon-box{
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .contact-info-card .info-icon-box i{
    font-size: 24px;
  }

  .contact-info-card .info-title{
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 767px){
  .contact-info-section .info-card-item{
    margin-bottom: 25px;
  }

  .contact-info-card{
    padding: 25px 20px;
  }
}

/** faq-section **/

.faq-section{
  position: relative;
  display: block;
  /* background: #f5f5f5; */
}

.faq-section .sec-title{
  text-align: center;
  margin-bottom: 50px;
}

.faq-section .sec-title h2{
  font-size: 35px;
  line-height: 52px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 15px;
}

.faq-section .sec-title .subtitle{
  font-size: 16px;
  line-height: 26px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.faq-container{
  position: relative;
  display: block;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
}

.faq-header{
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(36, 50, 67, 1) 0%, rgba(194, 148, 56, 1) 100%);
}

.faq-header-icon{
  position: relative;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-header-icon i{
  font-size: 20px;
  color: #fff;
}

.faq-header-title{
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: var(--title-font);
}

.faq-accordion{
  position: relative;
  display: block;
}

.faq-item{
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:last-child{
  border-bottom: none;
}

.faq-question{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover{
  background: rgba(0, 0, 0, 0.02);
}

.faq-question h4{
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  color: var(--title-color);
  margin: 0;
  flex: 1;
  padding-right: 20px;
  font-family: var(--title-font);
}

.faq-icon{
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon{
  background: #dc3545;
}

.faq-item:not(.active) .faq-icon{
  background: var(--gradient-color-btn);

}

.faq-icon i{
  font-size: 10px;
  color: #fff;
  transition: all 0.3s ease;
}

.faq-answer{
  position: relative;
  display: none;
  padding: 0 30px 25px 30px;
}

.faq-item.active .faq-answer{
  display: block;
}

.faq-answer p{
  font-size: 15px;
  line-height: 26px;
  color: #666;
  margin: 0;
  font-family: var(--text-font);
}

@media only screen and (max-width: 991px){
  .faq-section .sec-title h2{
    font-size: 26px;
    line-height: 46px;
  }

  .faq-container{
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px){
  .faq-section .sec-title h2{
    font-size: 20px;
    line-height: 42px;
  }

  .faq-header{
    padding: 20px 25px;
  }

  .faq-header-icon{
    width: 45px;
    height: 45px;
  }

  .faq-header-icon i{
    font-size: 16px;
  }

  .faq-header-title{
    font-size: 20px;
    line-height: 28px;
  }

  .faq-question{
    padding: 20px 25px;
  }

  .faq-question h4{
    font-size: 16px;
    line-height: 24px;
    padding-right: 15px;
  }

  .faq-answer{
    padding: 0 25px 20px 25px;
  }

  .faq-answer p{
    font-size: 14px;
    line-height: 24px;
  }
}











































