.contact-container {
    background-color: #fff9f0;
    padding: 40px 20px;
    font-family: 'Yekan', 'Tahoma', sans-serif;
    color: #5d0a0a;
}

/* بخش اطلاعات تماس بالا */
.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info p {
    margin: 8px 0;
    font-size: 1.1rem;
}

/* دکمه تماس تلفنی جدید */
.cantaner-call-button{
    display: flex;
    justify-content: center;
}
.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37 0%, #b89b30 100%);
    color: white !important;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    margin: 25px 0;
    font-family: 'Yekan', 'Tahoma', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    min-width: 280px;
    border: 2px solid #d4af37;
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #b89b30 0%, #a08525 100%);
}

.call-button:active {
    transform: translateY(1px);
}

.call-button i {
    margin-left: 12px;
    font-size: 1.6rem;
}

.call-button span {
    display: inline-block;
}

.social-icons {
    display: flex;
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #d4af37;
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background-color: #b89b30;
}

/* بخش اصلی (اطلاعات و نقشه) */
.contact-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    /* margin-bottom: 50px; */
    padding-bottom: 1rem;
    background: #fff9f0;
    justify-content: center;
}

.contact-details {
    flex: 1;
    max-width: 800px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-details h3 {
    color: #d4af37;
    margin: 20px 0 15px;
    font-size: 1.5rem;
}

.contact-details p {
    margin: 10px 0;
    line-height: 1.7;
    font-size: 1.1rem;
}

.map-section {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* بخش خدمات پایین */
.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    text-align: center;
    background: #fff9f0;
    
}

.service-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5d0a0a;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .contact-main {
        flex-direction: column;
    }

    .map-container {
        height: 300px;
    }

    .service-item {
        min-width: 100%;
    }

    .call-button {
        min-width: 100%;
        max-width: 400px;
        padding: 18px 25px;
        font-size: 1.4rem;
    }

    .call-button i {
        font-size: 1.8rem;
    }

    .contact-header {
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}

/* ریسپانسیو برای صفحات بسیار کوچک */
@media (max-width: 480px) {
    /* .map-section{
        display: none;
    } */
    .call-button {
        padding: 16px 20px;
        font-size: 1.25rem;
        min-width: 90%;
    }

    .call-button i {
        font-size: 1.5rem;
        margin-left: 8px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}


.contact-box {
    margin: 3.5rem 0;
}

.contact-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #eee;
  transition: 0.3s;
}

.contact-item img {
  width: 22px;
  height: 22px;
}

.contact-item.whatsapp {
  color: #1f8f4a;
}

.contact-item.rubika {
  color: #7b3fe4;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .custom-order-page {
    margin: 20px auto;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-item {
    justify-content: center;
  }
}
