/*==================== CONTACT PAGE STYLES ====================*/

/*==================== VARIABLES ====================*/
:root {
  --primary-color: #C5A572;
  --primary-dark: #b49059;
  --gradient-primary: linear-gradient(135deg, hsl(44 96% 70%), hsl(44 96% 60%));
  --dark-bg: #0f0f0f;
  --darker-bg: #080808;
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --accent-color: #C5A572;
  --shadow-color: rgba(197, 165, 114, 0.1);
  --transition: all 0.3s ease;
}

/*==================== BASE STYLES ====================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/*==================== CONTACT HERO SECTION ====================*/
.contact-hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(197, 165, 114, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(197, 165, 114, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero h1 {
  color: var(--text-light);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 3rem;
  opacity: 0.95;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(197, 165, 114, 0.2);
  transition: var(--transition);
}

.contact-info-item:hover {
  background: rgba(197, 165, 114, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 165, 114, 0.1);
  border-radius: 8px;
}

.contact-info-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/*==================== CONTACT FORM SECTION ====================*/
.contact-form-section {
  padding: 6rem 0;
  background: var(--darker-bg);
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.form-intro p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.form-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.feature i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.feature span {
  font-size: 1rem;
  font-weight: 500;
}

/*==================== CONTACT FORM ====================*/
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(197, 165, 114, 0.2);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.input-wrapper {
  position: relative;
}

.input-wrapper label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  pointer-events: none;
  z-index: 2;
}

.input-wrapper.focused label,
.input-wrapper input:focus + label,
.input-wrapper textarea:focus + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.8rem;
  color: var(--primary-color);
  background: var(--darker-bg);
  padding: 0 0.5rem;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

.input-wrapper i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.input-wrapper.focused i,
.input-wrapper input:focus ~ i,
.input-wrapper textarea:focus ~ i {
  color: var(--primary-color);
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--dark-bg);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 165, 114, 0.3);
}

.submit-btn.loading {
  opacity: 0.8;
  cursor: not-allowed;
}

.submit-btn i {
  transition: var(--transition);
}

.submit-btn:hover i {
  transform: translateX(3px);
}

/* reCAPTCHA v3 is invisible - no styles needed */

/*==================== WHY CHOOSE US SECTION ====================*/
.why-choose-contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(197, 165, 114, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(197, 165, 114, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(197, 165, 114, 0.2);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(197, 165, 114, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--dark-bg);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/*==================== RESPONSIVE DESIGN ====================*/
@media (max-width: 768px) {
  .contact-hero {
    padding: 6rem 0 4rem;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero p {
    font-size: 1rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-intro h2 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  

}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .input-wrapper input,
  .input-wrapper textarea {
    padding: 0.875rem;
  }
  
  .submit-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  

}