/**
 * Theme Name:     Vankine Child
 * Author:         Steelthemes
 * Template:       vankine
 * Text Domain:	   vankine-child
 * Description:    Vankine is a Finance wordpress Theme.
 */



/* Enhanced Contact Form Styles */
.contact-form-card {
  position: relative;
  z-index: 1;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.1;
  filter: blur(20px);
}

.contact-icon-wrapper {
  position: relative;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: transform 0.3s ease;
}

.contact-icon:hover {
  transform: scale(1.1);
}

.text-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Form Styling */
.form-group {
  position: relative;
}

.input-wrapper {
  position: relative;
}

/* Form control styling */
.wpcf7-form-control {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  padding: 1rem 1.5rem !important; /* Centered padding */
}

.wpcf7-form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  border-color: #667eea;
  background-color: white !important;
}

.wpcf7-form-control:focus::placeholder {
  color: #adb5bd;
}

/* Labels */
.form-label {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #495057;
  transition: color 0.3s ease;
  display: block;
}

/* Submit Button */
.wpcf7-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  min-width: 200px;
}

.wpcf7-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.wpcf7-submit:hover::before {
  left: 100%;
}

.wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.wpcf7-submit:active {
  transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 2rem 1rem;
  }
  
  .card-body {
    padding: 2rem !important;
  }
  
  .wpcf7-submit {
    min-width: 100%;
  }
}

/* Form Validation Styling */
.wpcf7-not-valid {
  border-color: #dc3545 !important;
  background-color: #fff8f8 !important;
}

.wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Focus States */
.wpcf7-form-control:focus {
  outline: none;
}

/* Custom Scrollbar for Textarea */
textarea::-webkit-scrollbar {
  width: 6px;
}

textarea::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

textarea::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

textarea::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}