@charset "UTF-8";
body.page-contact-us {
  overflow-x: hidden;
}

body.page-contact-us nav {
  width: 100%;
}

.hero-section {
  display: flex;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 20rem;
  overflow-x: clip;
}

.hero-slider {
  position: absolute;
  justify-self: flex-end;
  left: 0;
  max-width: 100%;
}

/* Slider style */
.slider-container {
  position: relative;
  width: 937px;
  max-width: 100%;
  height: 669px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  animation: slideOut 0.5s ease-in-out forwards;
}

.slide.active {
  opacity: 1;
  animation: slideIn 0.5s ease-in-out forwards;
}

.slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(24, 24, 27, 0.9) 0%, rgba(24, 24, 27, 0.5) 50%, transparent 100%);
  pointer-events: none;
}

.slider-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
}

body.page-contact-us[dir=ltr] .slider-controls {
  flex-direction: row-reverse;
}

.control-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  color: #A1A1AA;
}

.control-btn:hover {
  transform: scale(1.1);
  color: #f4f4f5;
}

.control-btn:active {
  transform: scale(0.95);
}

.control-btn svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 10px;
}

.dot {
  width: 30px;
  background-color: #A1A1AA;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #A1A1AA;
  padding: 0;
}

.dot.active {
  background-color: #008684;
  border-color: #008684;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.dot:focus {
  outline: 2px solid #008684;
  outline-offset: 2px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}
.slider-style {
  position: absolute;
  bottom: 0;
  right: -1.6rem;
  width: 3.2rem;
  height: 7.2rem;
}
.slider-style img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.hero-typo {
  padding-top: 10%;
  margin-right: 10.2rem;
  justify-self: flex-start;
  align-self: center;
  z-index: 9;
  color: var(--text-gray);
}
.hero-typo p {
  font-family: "IRANYekanX-Thin";
  font-weight: 300;
  font-size: 3.2rem;
  line-height: 5.6rem;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  margin: 0 0 2.8rem;
}
.hero-typo span {
  display: inline-block;
  font-family: "IRANYekanX-Thin";
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  margin: 0 0 2.4rem;
}

.hero-title {
  position: relative;
  font-family: "IRANYekanX-ExtraBold";
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 7.4rem;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  margin: 0 0 1.6rem;
}
.hero-title::after {
  position: absolute;
  content: "";
  width: 31.7rem;
  height: 0.4rem;
  background-color: var(--accent-main);
  bottom: -1rem;
  right: 0;
}

/* LTR hero layout fixes (EN): keep slider on right and add left breathing space for text */
body.page-contact-us[dir=ltr] .hero-slider {
  left: auto;
  right: 0;
}

body.page-contact-us[dir=ltr] .slider-style {
  right: 0;
}

body.page-contact-us[dir=ltr] .hero-typo {
  margin-right: 0;
  margin-left: 10.2rem;
  max-width: 52rem;
}

body.page-contact-us[dir=ltr] .hero-title,
body.page-contact-us[dir=ltr] .hero-typo p,
body.page-contact-us[dir=ltr] .hero-typo span {
  text-align: left;
}

body.page-contact-us[dir=ltr] .hero-title::after {
  left: 0;
  right: auto;
}

.hero-cta {
  display: inline-block;
  width: 19.5rem;
  height: 5.6rem;
  box-sizing: border-box;
  text-align: center;
  padding: 1.2rem 3.2rem;
  background-color: var(--accent-main);
  color: var(--text-gray);
  font-family: "IRANYekanX-Thin";
}
.hero-cta:hover {
  color: white;
}

.contact-form-section {
  display: flex;
  margin-top: 10.2rem;
}

.contact-info {
  flex: 1;
}

.company-info li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2.4rem;
  min-width: 0;
}
.company-info li span {
  margin: 0;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--text-gray);
  color: white;
}
.company-info li span:first-of-type {
  margin: 0 0.8rem;
  color: var(--accent-second);
}
.company-info li a {
  margin: 0;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--text-gray);
  color: white;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.company-info li span:last-child {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
}
.icon img {
  width: 100%;
  height: 100%;
}

.company-address {
  width: 61.3rem;
  min-height: 23.2rem;
  height: auto;
  background-image: url("../imgs/islamic-pattern-03.png");
  background-repeat: repeat;
  background-color: var(--accent-main);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  box-sizing: border-box;
}
.company-address li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--text-gray);
}
.company-address li span {
  margin: 0 0.8rem;
}

.contact-form {
  flex: 1;
  margin-right: 6.4rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-bottom: 0.8rem;
  text-align: right;
  padding: 1.4rem 2rem;
  resize: none;
  border: none;
  outline: 0;
}
.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: var(--gray-500);
  font-weight: 400;
  font-style: Regular;
  font-size: 1.4rem;
  line-height: 2.8rem;
  letter-spacing: 0%;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: var(--gray-500);
  font-weight: 400;
  font-style: Regular;
  font-size: 1.4rem;
  line-height: 2.8rem;
  letter-spacing: 0%;
}

body.page-contact-us[dir=ltr] .contact-form input,
body.page-contact-us[dir=ltr] .contact-form textarea {
  direction: ltr;
  text-align: left;
}

body.page-contact-us[dir=ltr] .contact-form input::placeholder,
body.page-contact-us[dir=ltr] .contact-form textarea::placeholder {
  direction: ltr;
  text-align: left;
}

body.page-contact-us[dir=ltr] .contact-form input::-moz-placeholder,
body.page-contact-us[dir=ltr] .contact-form textarea::-moz-placeholder {
  direction: ltr;
  text-align: left;
}
.contact-form textarea {
  height: 19.2rem;
  margin-bottom: 2.4rem;
}
.contact-form button {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  color: var(--text-gray);
  background-color: var(--accent-main);
  border: none;
}

/* CAPTCHA Field Styling */
.captcha-field {
  margin-bottom: 1.6rem;
  background-color: #f5f5f5;
  padding: 1.2rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.captcha-field label {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  text-align: right;
  direction: ltr;
}
.captcha-field input {
  width: 100%;
  text-align: center !important;
  background-color: white;
}

.form-success, .message-help {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.contact-map-section {
  display: flex;
  margin-top: 10.4rem;
}

.company-adresses {
  flex: 1;
  margin-top: 18.5rem;
}

.background-art {
  width: 43.1rem;
  height: 15.9rem;
  background-image: url("../imgs/islamic-pattern-03.png");
  background-repeat: repeat;
  background-color: var(--accent-main);
}

body.page-contact-us[dir=ltr] .background-art {
  width: 52rem;
  min-height: 18.8rem;
  height: auto;
}

.gallery-title {
  position: relative;
  font-family: "IRANYekanX-Bold";
  font-weight: 600;
  font-size: 32px;
  line-height: 45px;
  letter-spacing: 0;
  text-align: right;
  vertical-align: middle;
  color: var(--text-gray);
  margin: 0 2rem;
  padding: 3rem 0;
}
.gallery-title::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 10.8rem;
  height: 0.4rem;
  background-color: var(--text-gray);
  margin-top: 0.8rem;
}

body.page-contact-us[dir=ltr] .gallery-title {
  text-align: left;
}

body.page-contact-us[dir=ltr] .gallery-title::after {
  left: 0;
  right: auto;
}

.city-list {
  margin-top: 4.6rem;
  width: 43.1rem;
  max-width: 100%;
}

.city-item {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(0.8rem);
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease;
}
.city-item.is-visible {
  opacity: 1;
  max-height: 2000px;
  pointer-events: auto;
  transform: translateY(0);
}
.city-item.is-fading-out {
  opacity: 0;
  transform: translateY(-0.6rem);
}

.city-name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 1.2rem 1.6rem;
  width: 100%;
  cursor: pointer;
}

.icon-arrow-left {
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.3s ease-in-out;
}
.icon-arrow-left img {
  width: 100%;
  height: 100%;
}

.city-name.active .icon-arrow-left {
  transform: rotate(90deg);
}

.city {
  padding: 0;
  background-color: white;
  width: 100%;
  height: 0;
  transition: 0.3s all ease-in-out;
  overflow: hidden;
}
.city li {
  position: relative;
  padding: 0.4rem 0.5rem;
  color: var(--gray-700);
}
.city li::before {
  position: relative;
  content: "●";
  margin-left: 1rem;
}
.city li.title {
  background-color: var(--accent-second);
  color: var(--accent-main);
}

.city.active {
  padding: 1.6rem;
  height: auto;
}

.contact-map {
  flex: 1;
  position: relative;
}

.map {
  position: relative;
  width: 78.1rem;
  max-width: 100%;
  height: 71.7rem;
  margin-top: 2rem;
}
.map img {
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  transform: scale(1);
  transition: all 0.3s ease;
}
.map-pin img {
  width: 100%;
  height: 100%;
}
.map-pin.active {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  z-index: 5;
}
.map-pin::before {
  content: attr(data-city);
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-0.8rem);
  background-color: rgba(36, 36, 38, 0.9);
  color: var(--text-gray);
  box-shadow: 0 0 1rem rgba(24, 24, 27, 0.9);
  padding: 0.6rem 1rem;
  font-family: "IRANYekanX-Medium";
  font-size: 1.2rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
.map-pin::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid rgba(36, 36, 38, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}
.map-pin:hover::before, .map-pin:hover::after {
  opacity: 1;
  visibility: visible;
}
.map-pin.active::before, .map-pin.active::after {
  opacity: 1;
  visibility: visible;
}
.map-pin#pinMashhad {
  top: 26.48%;
  right: 25.35%;
}
.map-pin#pinTehran {
  top: 29.29%;
  right: 63.26%;
}
.map-pin#pinEsfahan {
  top: 45.34%;
  right: 62.1%;
}
.map-pin#pinTabriz {
  top: 11.85%;
  right: 87.71%;
}
.map-pin#pinShiraz {
  top: 65.55%;
  right: 51.21%;
}
.map-pin#pinKerman {
  top: 61.35%;
  right: 23.05%;
}
.map-pin#pinKhuzestan {
  top: 51.6%;
  right: 75.54%;
}
.map-pin#pinBoroojen {
  top: 48.81%;
  right: 66.58%;
}
.map-pin#pinBandarAnzali {
  top: 19.53%;
  right: 70.42%;
}
.map-pin#pinBandarAbbas {
  top: 83.68%;
  right: 37.13%;
}
.map-pin#pinBirjand {
  top: 44.63%;
  right: 25.61%;
}
.map-pin#pinTaybaad {
  top: 34.86%;
  right: 17.91%;
}
.map-pin#pinChenaran {
  top: 23.71%;
  right: 29.45%;
}
.map-pin#pinForus {
  top: 25.1%;
  right: 19.21%;
}
.map-pin#pinKashmar {
  top: 34.86%;
  right: 28.16%;
}
.map-pin#pinGonabad {
  top: 41.83%;
  right: 28.16%;
}

.map-typo-art {
  position: absolute;
  left: 20rem;
  width: 73.4rem;
  height: 14.6rem;
}
.map-typo-art img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) {
  .map {
    width: 100%;
    max-width: 78.1rem;
  }
  .map img {
    height: auto;
  }
  .company-address {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1023px) {
  .contact-form-section {
    flex-direction: column;
  }
  .contact-info {
    margin-bottom: 5rem;
  }
  .contact-form {
    margin-right: 0;
  }
  .contact-map-section {
    flex-direction: column-reverse;
  }
  .company-adresses {
    margin-top: 5rem;
  }
  .hero-title::after {
    width: 29rem;
  }
  body.page-contact-us[dir=ltr] .hero-typo {
    margin-left: 0;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .hero-section {
    min-height: 82rem;
  }
  .slider-container {
    width: 100%;
    height: 82rem;
  }
  .hero-slider {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
  }
  .hero-typo {
    align-self: flex-start;
    margin-top: 12%;
    padding-bottom: 11rem;
  }
  .slider-style {
    display: none;
  }
  .slider-controls {
    bottom: 2rem;
  }
  .hero-cta {
    margin-bottom: 11rem;
  }
  body.page-contact-us[dir=ltr] .hero-slider {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
  }
  .map-typo-art {
    width: 100%;
    left: 0;
  }
  .map-typo-art img {
    height: auto;
  }
  .map {
    width: 100%;
    height: auto;
    aspect-ratio: 78.1/71.7;
  }
  .map-pin {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (max-width: 479px) {
  .slider-container {
    height: 86rem;
  }
  .hero-section {
    padding-bottom: 14rem;
  }
  .hero-typo {
    margin-right: 16%;
    padding-top: 5%;
  }
  body.page-contact-us[dir=ltr] .hero-typo {
    margin-right: 0;
    margin-left: 0;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .contact-map {
    display: none;
  }
  .background-art {
    width: 100%;
  }
  body.page-contact-us[dir=ltr] .background-art {
    width: 100%;
    min-height: 0;
    height: auto;
  }
  .city-list {
    width: 100%;
  }
  body.page-contact-us[dir=ltr] .city-list {
    width: 100%;
    max-width: 100%;
  }
  .city-item {
    opacity: 1;
    max-height: none;
    pointer-events: auto;
    transform: none;
    transition: none;
    display: block !important;
  }
  .city-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 1.2rem 1.6rem;
    width: 100%;
    cursor: pointer;
  }
  .city {
    padding: 0;
    background-color: white;
    width: 100%;
    height: 0;
    transition: 0.3s all ease-in-out;
    overflow: hidden;
  }
  .city.active {
    padding: 1.6rem;
    height: auto;
  }
  .gallery-title {
    margin: 0 1rem;
  }
  .company-info li {
    flex-wrap: wrap;
  }
  .company-info li span {
    margin-bottom: 0;
  }
}
@media (max-width: 375px) {
  .slider-container {
    height: 92rem;
  }
  .hero-typo {
    padding-top: 2%;
  }
  .hero-title {
    font-size: 3.6rem;
    line-height: 5.6rem;
  }
  .hero-typo p {
    font-size: 2.4rem;
    line-height: 4rem;
    margin-bottom: 1.6rem;
  }
  .slider-controls {
    bottom: 2rem;
  }
}
@media (max-width: 320px) {
  .hero-title::after {
    width: 90%;
  }
  .hero-slider {
    display: none;
  }
  .hero-typo {
    margin-right: 5%;
  }
  body.page-contact-us[dir=ltr] .hero-typo {
    margin-right: 0;
    margin-left: 0;
  }
  .background-art {
    height: auto;
    margin-bottom: 2rem;
  }
}/*# sourceMappingURL=m_styles.css.map */
