
.contact-intro {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0b2282, #1e3a8a);
    color: white;
    margin-top: 80px;
}

.contact-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #e0e7ff;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 320px;
    text-align: right;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2rem;
    color: #e26413;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: #0b2282;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin: 5px 0;
}

.contact-actions {
    text-align: center;
    margin: 50px auto;
    padding: 0 20px;
}

.call-btn, .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0b2282;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    margin: 0 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #10b981;
}

.call-btn:hover {
    background: #143aa0;
    transform: translateY(-3px);
}

.whatsapp-btn:hover {
    background: #0d9668;
    transform: translateY(-3px);
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #1f2937;
    color: #d1d5db;
    margin-top: 80px;
}

.footer-bottom {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
    .contact-card {
        width: 100%;
        max-width: 350px;
    }
    .call-btn, .whatsapp-btn {
        display: block;
        width: 80%;
        max-width: 300px;
        margin: 15px auto;
    }
}
.social-links {
    display: flex;
    gap: 15px;
    margin: 15px 135px 0 0;
}
.contact-info-footer li {
    margin: 0 135px 15px 0;
    display: flex;
    align-items: center;
    color: #d1d5db;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
}

.contact-cards-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; 
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  width: 320px;
  text-align: right;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}


.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
}

.contact-cards-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card,
.map-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card {
  padding: 30px;
  width: 485px;
  text-align: right;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 2rem;
  color: #e26413;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 1.4rem;
  color: #0b2282;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin: 5px 0;
}

.map-card {
  width: 100%;
  max-width: 1000px;
  padding: 15px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 810px;
  border: none;
  border-radius: 12px; 
}



#feedbackForm {
    background: white;
    border-radius: 20px;
    padding: 40px;
    /* max-width: 1000px; */
    width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e0e0e0;
    margin: 50px auto;
    direction: rtl;
}

#feedbackForm h2 {
    color: #0b2282;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: right;
}

#feedbackForm h2::after {
    content: '';
    display: block;
    width: 112px;
    height: 3px;
    background: #e26413;
    margin: 8px 0 25px auto;
    border-radius: 2px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

#feedbackForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0b2282;
    font-size: 1.05rem;
    text-align: right;
}

#feedbackForm input,
#feedbackForm textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: 'Vazir', Tahoma, sans-serif;
    background-color: #f9fafb;
    transition: all 0.3s ease;
    direction: rtl;
    text-align: right;
}

#feedbackForm input:focus,
#feedbackForm textarea:focus {
    outline: none;
    border-color: #0b2282;
    box-shadow: 0 0 0 3px rgba(11, 34, 130, 0.15);
    background-color: #fff;
}

#feedbackForm textarea {
    min-height: 130px;
    resize: vertical;
}

#feedbackForm button[type="submit"] {
    display: block;
    width: 100%;
    padding: 16px;
    background: #0b2282;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(11, 34, 130, 0.3);
}

#feedbackForm button[type="submit"]:hover {
    background: #143aa0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 34, 130, 0.4);
}


@media (max-width: 768px) {
    #feedbackForm {
        padding: 30px 20px;
        margin: 40px 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    #feedbackForm h2 {
        font-size: 1.6rem;
    }

    #feedbackForm input,
    #feedbackForm textarea {
        padding: 12px 15px;
        font-size: 1rem;
    }

    #feedbackForm button[type="submit"] {
        padding: 14px;
        font-size: 1.1rem;
    }
}