/* Lighthouse Call - Visual Identity & Stylesheet */

/* --- 1. Variables & Base Setup --- */
:root {
  --primary-blue: #2c3e50;    /* Dark Slate Blue for trust */
  --secondary-gold: #f1c40f;  /* Sunflower Gold for warmth/action */
  --accent-green: #1abc9c;    /* Seafoam Green for success */
  --text-gray: #34495e;       /* Wet Asphalt Gray for text */
  --background-white: #ffffff;
  --light-gray-bg: #ecf0f1;   /* Light gray for form backgrounds */
}

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-white);
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 18px;
}

/* --- 2. Layout & Containers --- */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}





.hero-section {
  background: url('assets/background_hero.png') no-repeat center center;
  background-size: cover;
  min-height: 500px; /* Ensure enough space for content */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background-white); /* White text for contrast */
  padding: 80px 20px;
  position: relative; /* Needed for pseudo-element positioning */
  z-index: 1; /* Ensures content is above the overlay */
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 80, 0.6); /* Dark Slate Blue with 60% opacity */
  z-index: -1; /* Puts the overlay behind the content */
}

.hero-section h1 {
  color: var(--background-white); /* Override primary-blue for hero section */
}

.hero-section .sub-headline {
  color: rgba(255, 255, 255, 0.8); /* Lighter sub-headline for contrast */
}

.hero-section p {
  color: var(--background-white); /* White text for hero section */
}


/* --- 3. Typography --- */
h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

p {
  font-size: 20px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sub-headline {
  font-size: 22px;
  color: #7f8c8d; /* Gray for sub-text */
  margin-bottom: 40px;
}

/* --- 4. Forms & Buttons --- */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: var(--secondary-gold);
  color: var(--primary-blue);
  border: none;
}

.btn-primary:hover {
  background-color: #f39c12; /* Slightly darker gold */
  transform: translateY(-2px);
}

.form-container {
  background-color: var(--light-gray-bg);
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  margin: 40px auto;
  text-align: left;
}

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

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #bdc3c7;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box; /* Important for padding and width */
}

.radio-group label {
    display: inline-block;
    margin-right: 15px;
}

.pricing-section {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Slightly visible box */
    border-radius: 8px;
    color: var(--background-white);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-section h3 {
    color: var(--secondary-gold);
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-section p {
    font-size: 20px;
    line-height: 1.5;
}

.pricing-section em {
    font-style: italic;
    font-size: 16px;
    opacity: 0.8;
}



/* --- 5. Responsive Design --- */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  p, .sub-headline {
    font-size: 18px;
  }
  .container {
    padding: 15px;
  }
  .how-it-works-steps {
    flex-direction: column; /* Stack steps vertically on mobile */
  }
  .step {
    margin-bottom: 30px;
  }
}

/* --- 6. How It Works Section --- */
.how-it-works-section {
    padding: 60px 20px;
    background-color: var(--background-white);
}

.how-it-works-section h2 {
    margin-bottom: 50px;
}

.how-it-works-steps {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
}

.step {
    flex: 1;
    text-align: center;
    max-width: 300px;
}

.step .icon {
    font-size: 48px;
    color: var(--secondary-gold);
    margin-bottom: 20px;
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 10px;
}

/* --- 7. Footer --- */
footer {
    background-color: var(--light-gray-bg);
    color: #7f8c8d;
    padding: 40px 20px;
    margin-top: 60px;
    text-align: center;
}

footer a {
    color: var(--primary-blue);
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    text-decoration: underline;
}

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