/* ========================================
   LET'S TALK CONTACT SECTION
======================================== */

.lets-talk-section {
  position: relative;
  padding: 60px 0;
  background: #ffffff;
  overflow: hidden;
  margin-top: -80px;
}

.lets-talk-section .container {
  position: relative;
  z-index: 1;
}

/* ========================================
   LEFT SIDE - CONTACT INFO CARD
======================================== */

.lets-talk-info-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px 40px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(12, 51, 101, 0.12);
  border: 1px solid rgba(12, 51, 101, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.lets-talk-info-card:hover {
  box-shadow: 0 15px 50px rgba(12, 51, 101, 0.18);
}

.lets-talk-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #0C3365;
}

.lets-talk-header {
  position: relative;
  z-index: 1;
  margin-bottom: 35px;
  text-align: center;
}

.lets-talk-icon {
  width: 70px;
  height: 70px;
  background: #0C3365;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(12, 51, 101, 0.3);
}

.lets-talk-icon i {
  font-size: 32px;
  color: #ffffff;
}

.lets-talk-title {
  font-size: 36px;
  font-weight: 700;
  color: #1b1535;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.lets-talk-subtitle {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* Contact List */
.lets-talk-contact-list {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.lets-talk-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.lets-talk-contact-item:hover {
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
  border-color: rgba(12, 51, 101, 0.2);
}

.lets-talk-contact-item:last-child {
  margin-bottom: 0;
}

.lets-talk-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #0C3365;
  box-shadow: 0 4px 15px rgba(12, 51, 101, 0.25);
}

.lets-talk-contact-icon i {
  font-size: 22px;
  color: #ffffff;
}

.lets-talk-contact-details {
  flex: 1;
}

.lets-talk-contact-label {
  font-size: 12px;
  font-weight: 700;
  color: #0C3365;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lets-talk-contact-value {
  font-size: 16px;
  font-weight: 600;
  color: #1b1535;
  margin: 0;
  line-height: 1.6;
}

.lets-talk-contact-value a {
  color: #1b1535;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border-bottom: none !important;
}

.lets-talk-contact-value a:hover {
  color: #0C3365;
  text-decoration: none !important;
}

/* Social Links */
.lets-talk-social {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  justify-content: center;
}

.lets-talk-social-link {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0C3365;
  font-size: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.lets-talk-social-link:hover {
  background: #0C3365;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(12, 51, 101, 0.3);
}

/* Trust Badges */
.lets-talk-trust-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(12, 51, 101, 0.15);
}

.trust-badge-item i {
  font-size: 20px;
  color: #0C3365;
}

.trust-badge-item span {
  font-size: 13px;
  font-weight: 600;
  color: #2a2541;
}

/* ========================================
   RIGHT SIDE - MESSAGE FORM
======================================== */

.lets-talk-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px 40px;
  box-shadow: 0 10px 40px rgba(12, 51, 101, 0.12);
  border: 1px solid rgba(12, 51, 101, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lets-talk-form-card:hover {
  box-shadow: 0 15px 50px rgba(12, 51, 101, 0.18);
}

.lets-talk-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #0C3365;
  border-radius: 24px 24px 0 0;
}

.lets-talk-form-header {
  margin-bottom: 35px;
  text-align: center;
}

.lets-talk-form-title {
  font-size: 32px;
  font-weight: 700;
  color: #1b1535;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.lets-talk-form-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

/* Form Elements */
.lets-talk-form {
  margin-top: 30px;
}

.lets-talk-form-group {
  margin-bottom: 24px;
}

.lets-talk-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #2a2541;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lets-talk-form-label .required {
  color: #0C3365;
}

.lets-talk-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.lets-talk-input-wrapper i {
  position: absolute;
  left: 18px;
  font-size: 18px;
  color: #0C3365;
  pointer-events: none;
  z-index: 1;
}

.lets-talk-form-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  font-size: 15px;
  color: #2a2541;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: var(--default-font);
}

.lets-talk-form-input:focus {
  outline: none;
  border-color: #0C3365;
  box-shadow: 0 0 0 4px rgba(12, 51, 101, 0.1);
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.lets-talk-form-input::placeholder {
  color: #9ca3af;
}

.lets-talk-form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  font-size: 15px;
  color: #2a2541;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: var(--default-font);
  resize: vertical;
  min-height: 130px;
}

.lets-talk-form-textarea:focus {
  outline: none;
  border-color: #0C3365;
  box-shadow: 0 0 0 4px rgba(12, 51, 101, 0.1);
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.lets-talk-form-textarea::placeholder {
  color: #9ca3af;
}

/* Checkbox */
.lets-talk-form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(12, 51, 101, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
  border-radius: 12px;
  border: 1px solid rgba(12, 51, 101, 0.1);
}

.lets-talk-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #0C3365;
  flex-shrink: 0;
}

.lets-talk-check-label {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  cursor: pointer;
}

.privacy-link {
  color: #0C3365;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy-link:hover {
  color: #9D4CF3;
  text-decoration: underline;
}

/* Submit Button */
.lets-talk-submit-btn {
  width: 100%;
  padding: 14px 28px;
  background: #0C3365;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(12, 51, 101, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lets-talk-submit-btn:hover {
  box-shadow: 0 15px 35px rgba(12, 51, 101, 0.45);
}

.lets-talk-submit-btn:active {
  box-shadow: 0 10px 25px rgba(12, 51, 101, 0.35);
}

.lets-talk-submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.lets-talk-submit-btn:hover i {
  transform: translateX(5px);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 991px) {
  .lets-talk-section {
    padding: 60px 0;
  }

  .lets-talk-info-card {
    padding: 40px 32px;
    margin-bottom: 30px;
  }

  .lets-talk-form-card {
    padding: 40px 32px;
  }

  .lets-talk-title {
    font-size: 32px;
  }

  .lets-talk-form-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .lets-talk-section {
    padding: 50px 0;
  }

  .lets-talk-info-card {
    padding: 35px 24px;
  }

  .lets-talk-form-card {
    padding: 35px 24px;
  }

  .lets-talk-title {
    font-size: 28px;
  }

  .lets-talk-form-title {
    font-size: 24px;
  }

  .lets-talk-icon {
    width: 50px;
    height: 50px;
  }

  .lets-talk-icon i {
    font-size: 24px;
  }

  .lets-talk-contact-item {
    padding: 16px;
  }

  .lets-talk-contact-icon {
    width: 40px;
    height: 40px;
  }

  .lets-talk-contact-icon i {
    font-size: 18px;
  }

  .lets-talk-social-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .lets-talk-info-card {
    padding: 30px 20px;
  }

  .lets-talk-form-card {
    padding: 30px 20px;
  }

  .lets-talk-title {
    font-size: 24px;
  }

  .lets-talk-form-title {
    font-size: 22px;
  }

  .lets-talk-subtitle,
  .lets-talk-form-subtitle {
    font-size: 14px;
  }

  .lets-talk-form-input,
  .lets-talk-form-textarea {
    padding: 12px 16px 12px 42px;
    font-size: 14px;
  }

  .lets-talk-submit-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .lets-talk-contact-value {
    font-size: 15px;
  }

  .lets-talk-social {
    flex-wrap: wrap;
  }
}





