/* ========================================
   VREA Transaction Deadline Tracker
   Landing & Contact Page Stylesheet
   ======================================== */

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #0a1428;
  color: #e0e0e0;
  line-height: 1.6;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
  background-color: #0d1e3c;
  padding: 0;
  border-bottom: 2px solid #d4a574;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4a574;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #d4a574;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #d4a574;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0d1e3c;
    flex-direction: column;
    padding: 1rem;
    border-top: 2px solid #d4a574;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .header-content {
    padding: 0.75rem 1.5rem;
  }
}

/* ========================================
   HEADER IMAGE AREA
   ======================================== */

.header-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #0d1e3c 0%, #1a2f5a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a574;
  font-size: 1.2rem;
  text-align: center;
  padding: 2rem;
  min-height: 250px;
}

.header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #d4a574;
  color: #0a1428;
}

.btn-primary:hover {
  background-color: #e6b88a;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #d4a574;
  border: 2px solid #d4a574;
}

.btn-secondary:hover {
  background-color: #d4a574;
  color: #0a1428;
}

.hero-image {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
  background-color: #0d1e3c;
  padding: 4rem 2rem;
}

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

.features h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-box {
  background-color: #1a2f5a;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #d4a574;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.feature-box h3 {
  color: #d4a574;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: #b0b0b0;
  font-size: 0.95rem;
}

/* ========================================
   PAIN POINTS SECTION
   ======================================== */

.pain-points {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.pain-points h2 {
  font-size: 2rem;
  color: #d4a574;
  margin-bottom: 2rem;
  text-align: center;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pain-box {
  background-color: #1a2f5a;
  padding: 2rem;
  border-radius: 8px;
  border-top: 3px solid #d4a574;
  text-align: center;
}

.pain-box h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.pain-box p {
  color: #b0b0b0;
  font-size: 0.95rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
  background-color: #0d1e3c;
  padding: 4rem 2rem;
}

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

.pricing h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background-color: #1a2f5a;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid #d4a574;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card .pricing-cta {
  margin-top: 1.5rem;
  align-self: stretch;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.pricing-card h3 {
  color: #d4a574;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-amount {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: #b0b0b0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
  flex-grow: 1;
}

.pricing-card li {
  color: #b0b0b0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #2a3f5f;
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.toggle-btn {
  background-color: #1a2f5a;
  color: #b0b0b0;
  border: 2px solid #d4a574;
  padding: 0.6rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-btn:first-child {
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.toggle-btn:last-child {
  border-radius: 0 4px 4px 0;
}

.toggle-btn.active {
  background-color: #d4a574;
  color: #0a1428;
}

.toggle-save {
  display: inline-block;
  background-color: #2a7a3b;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.toggle-btn.active .toggle-save {
  background-color: #1a5a2b;
}

.pricing-tier-subtitle {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.pricing-save {
  display: inline-block;
  background-color: #2a7a3b;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.pricing-perfect {
  color: #b0b0b0;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.how-it-works h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: center;
}

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

.step {
  background-color: #1a2f5a;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #d4a574;
  color: #0a1428;
  border-radius: 50%;
  line-height: 50px;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step h3 {
  color: #d4a574;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.step p {
  color: #b0b0b0;
  font-size: 0.95rem;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.contact-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-section h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-section p {
  color: #b0b0b0;
  text-align: center;
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #d4a574;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="phone"],
textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: #1a2f5a;
  border: 1px solid #d4a574;
  border-radius: 4px;
  color: #e0e0e0;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
textarea:focus {
  outline: none;
  border-color: #e6b88a;
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.form-submit .btn {
  flex: 1;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background-color: #0d1e3c;
  border-top: 2px solid #d4a574;
  padding: 2rem;
  text-align: center;
  color: #b0b0b0;
  margin-top: 4rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer a {
  color: #d4a574;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e6b88a;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .hero-image {
    min-height: 200px;
  }

  .features-grid,
  .pricing-grid,
  .steps-grid,
  .pain-points-grid {
    grid-template-columns: 1fr;
  }

  .features h2,
  .pricing h2,
  .how-it-works h2 {
    font-size: 1.8rem;
  }

  .header-image {
    height: 200px;
  }

  .contact-section {
    padding: 2rem 1.5rem;
  }

  .contact-section h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .pricing-amount {
    font-size: 2rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .features h2,
  .pricing h2,
  .how-it-works h2 {
    font-size: 1.5rem;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }
}
