/* style.css - Improved Version */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: #2d3748;
}

.container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  min-height: 680px;
  animation: fadeIn 0.8s ease-out;
}

/* Left Section - Contact Info */
.left-section {
  flex: 0 0 45%;
  background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.left-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.left-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.left-section h1 {
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 50px;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.contact-info {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.contact-info p {
  margin: 24px 0;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.contact-info strong {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-info p::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 15px;
  font-size: 1.2rem;
  min-width: 24px;
  display: inline-block;
}

.contact-info p:nth-child(1)::before {
  content: "✉️";
}

.contact-info p:nth-child(2)::before {
  content: "📞";
}

.contact-info p:nth-child(3)::before {
  content: "📍";
}

.social-icons {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.social-icons a {
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Right Section - Form */
.right-section {
  flex: 1;
  padding: 70px 60px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-section h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #1a202c;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.form-group {
  margin-bottom: 28px;
}

label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #4a5568;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

input,
textarea {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 1.05rem;
  background: #f8fafc;
  transition: all 0.3s ease;
  color: #2d3748;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
  opacity: 0.8;
}

input:hover,
textarea:hover {
  border-color: #cbd5e0;
  background: #ffffff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #667eea;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-1px);
}

textarea {
  height: 160px;
  resize: vertical;
  line-height: 1.6;
}

/* reCAPTCHA Styling */
.g-recaptcha {
  margin: 30px 0;
  transform: scale(0.95);
  transform-origin: 0 0;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  padding: 20px 45px;
  border-radius: 16px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.submit-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover i {
  transform: translateX(5px);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Messages */
.success-message,
.error-message {
  padding: 20px 24px;
  border-radius: 16px;
  margin-bottom: 30px;
  display: none;
  font-size: 1rem;
  font-weight: 500;
  animation: slideIn 0.3s ease-out;
  line-height: 1.5;
}

.success-message {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: #fff;
  border-left: 5px solid #2f855a;
}

.error-message {
  background: linear-gradient(135deg, #f56565 0%, #c53030 100%);
  color: #fff;
  border-left: 5px solid #9b2c2c;
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    max-width: 600px;
  }
  
  .left-section,
  .right-section {
    flex: none;
    padding: 50px 40px;
  }
  
  .left-section h1 {
    font-size: 2.5rem;
  }
  
  .right-section h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .left-section,
  .right-section {
    padding: 40px 30px;
  }
  
  .left-section h1 {
    font-size: 2rem;
  }
  
  .right-section h2 {
    font-size: 1.8rem;
  }
  
  input,
  textarea {
    padding: 16px 20px;
  }
  
  .submit-btn {
    padding: 18px;
  }
}
