:root {
  --primary-orange: #FF8C00;
  --secondary-orange: #e67e00;
  --dark-anthracite: #222222;
  --bg-color: #f9f9f9;
  --text-color: #333333;
  --text-light: #777777;
  --white: #ffffff;
  --border-radius: 8px;
  --transition-speed: 0.3s;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-orange);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #e0e0e0;
  color: var(--text-color);
}

.btn-secondary:hover {
  background-color: #d0d0d0;
}

.highlight {
  color: var(--primary-orange);
}

/* Header */
.site-header {
  background-color: var(--white);
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-anthracite);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--dark-anthracite);
}

.header-phone svg {
  color: var(--primary-orange);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: url('/hero-bg.png');
  /* Ensure this matches your file name */
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

/* Form Section */
.form-section {
  padding: 60px 0;
  background-color: var(--bg-color);
  margin-top: -60px;
  /* Overlap hero slightly */
  position: relative;
  z-index: 2;
}

.form-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 2rem;
  color: var(--dark-anthracite);
  margin-bottom: 20px;
}

/* Progress Bar */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.step {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all var(--transition-speed);
}

.step.active {
  background-color: var(--primary-orange);
  color: var(--white);
}

.step-line {
  width: 40px;
  height: 3px;
  background-color: #e0e0e0;
  margin: 0 10px;
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-step h3 {
  margin-bottom: 20px;
  color: var(--dark-anthracite);
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-speed);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.location-input-wrapper {
  display: flex;
  gap: 10px;
}

.btn-icon {
  padding: 0 12px;
  font-size: 1.2rem;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.form-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--white);
}

.process-section h2 {
  font-size: 2.5rem;
  color: var(--dark-anthracite);
  margin-bottom: 50px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.process-step {
  padding: 20px;
}

.step-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--primary-orange);
  /* Or an image if preferred */
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-anthracite);
}

/* Trust Section */
.trust-section {
  background-color: var(--dark-anthracite);
  color: var(--white);
  padding: 40px 0;
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  color: var(--primary-orange);
  font-weight: bold;
}

/* Footer */
.site-footer {
  background-color: #1a1a1a;
  color: #999;
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #ccc;
  transition: color var(--transition-speed);
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.separator {
  margin: 0 10px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  transition: transform var(--transition-speed);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .form-card {
    padding: 25px;
  }

  .process-section {
    padding: 50px 0;
  }

  .trust-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

.checkbox-group a {
  color: var(--primary-orange);
  text-decoration: underline;
}