/* Contact Section Styles */

/* Section Background */
.modern-contact-section {
  background: #ffffff;
  min-height: 600px;
}

/* Animated Background Elements */
.modern-contact-section .position-absolute.w-100.h-100 {
  opacity: 0.03;
}

.modern-contact-section .bg-circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #05f5f5 0%, transparent 70%);
  top: -100px;
  animation: float 6s ease-in-out infinite;
}

[dir="ltr"] .modern-contact-section .bg-circle-1 {
  right: -100px;
}

[dir="rtl"] .modern-contact-section .bg-circle-1 {
  left: -100px;
}

.modern-contact-section .bg-circle-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #05f5f5 0%, transparent 70%);
  bottom: -50px;
  animation: float 8s ease-in-out infinite reverse;
}

[dir="ltr"] .modern-contact-section .bg-circle-2 {
  left: -50px;
}

[dir="rtl"] .modern-contact-section .bg-circle-2 {
  right: -50px;
}

.modern-contact-section .bg-circle-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(5, 245, 245, 0.2) 0%, transparent 70%);
  top: 50%;
  animation: float 10s ease-in-out infinite;
}

[dir="ltr"] .modern-contact-section .bg-circle-3 {
  left: 30%;
}

[dir="rtl"] .modern-contact-section .bg-circle-3 {
  right: 30%;
}

/* Section Title */
.section-title {
  font-size: 2.8rem;
  color: #05f5f5;
}

.section-title-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #05f5f5 0%, #05f5f5 100%);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(5, 245, 245, 0.6);
  margin-bottom: -15px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #666;
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  border: 2px solid rgba(5, 245, 245, 0.1);
  box-shadow: 0 10px 40px rgba(5, 245, 245, 0.2) !important;
}

.contact-form-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(5, 245, 245, 0.3) !important;
  border-color: rgba(5, 245, 245, 0.3) !important;
}

.contact-form-card .decorative-circle {
  top: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(5, 245, 245, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

[dir="ltr"] .contact-form-card .decorative-circle {
  right: -50px;
}

[dir="rtl"] .contact-form-card .decorative-circle {
  left: -50px;
}

.contact-form-title {
  color: #05f5f5;
  font-size: 1.9rem;
}

.contact-form-subtitle {
  color: #666 !important;
}

/* Info Cards */
.info-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 2px solid rgba(5, 245, 245, 0.1);
  box-shadow: 0 8px 30px rgba(5, 245, 245, 0.2) !important;
}

.info-card:hover {
  box-shadow: 0 15px 40px rgba(5, 245, 245, 0.3) !important;
  border-color: #05f5f5 !important;
}

[dir="ltr"] .info-card:hover {
  transform: translateX(-8px) scale(1.03);
}

[dir="rtl"] .info-card:hover {
  transform: translateX(8px) scale(1.03);
}

.info-card .decorative-icon {
  display: none;
}

.info-card .position-relative {
  z-index: 1;
}

.info-card .icon-wrapper {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #05f5f5 0%, #084a6c 100%);
  box-shadow: 0 8px 20px rgba(121, 8, 68, 0.4);
}

.info-card:hover .icon-wrapper {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 10px 25px rgba(5, 245, 245, 0.5) !important;
}

.info-card-title {
  color: #00e6e6;
}

.info-card-link {
  color: #078ba0;
  font-weight: 500;
  transition: all 0.3s ease;
}

.info-card-link:hover {
  color: #05f5f5 !important;
}

[dir="ltr"] .info-card-link:hover {
  transform: translateX(5px);
}

[dir="rtl"] .info-card-link:hover {
  transform: translateX(-5px);
}

.info-card-link-icon {
  font-size: 0.9rem;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-30px) rotate(8deg) scale(1.05);
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .contact-form-card {
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2rem !important;
  }
}

@media (max-width: 576px) {
  .icon-wrapper {
    width: 50px !important;
    height: 50px !important;
  }
  
  .decorative-icon {
    font-size: 3rem !important;
  }
}

