@import url("https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap");
@font-face {
  font-family: "Vazir";
  font-weight: normal;
  src: url("../fonts/Vazir.ttf") format("truetype");
}
@font-face {
  font-family: "Vazir";
  font-weight: bold;
  src: url("../fonts/Vazir-Bold.ttf") format("truetype");
}
.cu-hero {
  text-align: center;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(180deg, rgba(3, 24, 29, 0.03) 0%, transparent 100%);
  border-bottom: 1px solid rgba(3, 24, 29, 0.06);
}
.cu-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #03181d;
  margin: 0 0 0.6rem;
}
.cu-hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #FF6B35;
  border-radius: 2px;
  margin: 0.8rem auto 0;
}
.cu-hero p {
  font-size: 1.1rem;
  color: #777;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .cu-hero {
    padding: 2rem 1rem 1.5rem;
  }
  .cu-hero h1 {
    font-size: 1.6rem;
  }
  .cu-hero h1::after {
    width: 40px;
    height: 3px;
  }
  .cu-hero p {
    font-size: 0.95rem;
  }
}

.cu-container {
  width: 90%;
  max-width: 1200px;
  margin: 4rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .cu-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.cu-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cu-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.cu-card:hover .cu-card-icon {
  background: #FF6B35;
  color: white;
  transform: scale(1.1);
}

.cu-card-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 14px;
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: #FF6B35;
  transition: all 0.3s ease;
}

.cu-card-content {
  flex: 1;
}
.cu-card-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #03181d;
  margin: 0 0 0.4rem;
}
.cu-card-content p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
.cu-card-content a {
  display: block;
  font-size: 0.95rem;
  color: #555;
  text-decoration: none;
  margin-bottom: 0.3rem;
  transition: color 0.3s;
}
.cu-card-content a:hover {
  color: #FF6B35;
}

.cu-location-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.25rem;
}
.cu-location-links a {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}
.cu-location-links a i {
  font-size: 0.9rem;
}

.cu-social {
  margin-top: 0.5rem;
}
.cu-social h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #03181d;
  margin: 0 0 0.75rem;
}

.cu-social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cu-social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(3, 24, 29, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: #03181d;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cu-social-icon:hover {
  background: #FF6B35;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.cu-form-side {
  position: sticky;
  top: 100px;
}

.cu-form-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.cu-form-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #03181d;
  margin: 0 0 0.4rem;
}

.cu-form-subtitle {
  font-size: 0.95rem;
  color: #888;
  margin: 0 0 1.5rem;
}

.cu-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cu-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cu-form-group input, .cu-form-group textarea, .cu-form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: "Vazir", serif;
  font-size: 0.95rem;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  background: #fafafa;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}
.cu-form-group input::placeholder, .cu-form-group textarea::placeholder, .cu-form-group select::placeholder {
  color: #aaa;
}
.cu-form-group input:focus, .cu-form-group textarea:focus, .cu-form-group select:focus {
  border-color: #FF6B35;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.cu-form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.cu-form-errors {
  font-size: 0.82rem;
  color: #e53935;
}

.cu-form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 2rem;
  font-family: "Vazir", serif;
  font-size: 1.05rem;
  font-weight: 600;
  background: #FF6B35;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.cu-form-button:hover {
  background: rgb(100%, 34.6340516405%, 10.7843137255%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}
.cu-form-button:active {
  transform: translateY(0);
}

.cu-alert {
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cu-alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.cu-map-section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.cu-map-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.cu-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.cu-map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cu-map-container a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .cu-map-container {
    height: 280px;
  }
}

@media screen and (max-width: 1024px) {
  .cu-form-side {
    position: static;
  }
}
@media (max-width: 1000px) {
  .maps-book {
    width: 100%;
  }
}

/*# sourceMappingURL=contactus.css.map */
