/* Reclad Landing Page Stylesheet */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1a2d4d;
  --gold: #d4a574;
  --light-navy: #2d3f5b;
  --text-dark: #1a1a1a;
  --text-light: #6a6a6a;
  --text-white: #ffffff;
  --bg-light: #f9f8f6;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin: 0.5rem 0; }

/* Button Styles */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background-color: #c39560;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-gold-sm {
  padding: 12px 24px;
  font-size: 14px;
}

/* Container & Spacing */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 20px;
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  section {
    padding: 40px 20px;
  }
}

/* ===== HERO / ABOVE THE FOLD ===== */
.hero {
  background-color: var(--navy);
  color: var(--text-white);
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-wordmark {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--gold);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 500;
}

.hero .btn {
  font-size: 18px;
  padding: 18px 36px;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: auto;
  }
  .hero-wordmark {
    font-size: 2rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
}

/* ===== SECTION 1: WHAT MAKES US DIFFERENT ===== */
.section-1 {
  background-color: var(--bg-light);
}

.section-1 h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--navy);
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px auto;
  max-width: 900px;
}

.icon-card {
  text-align: center;
}

.icon-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.icon-card h3 {
  color: var(--navy);
  margin: 15px 0;
  font-size: 1.1rem;
}

.section-1-tagline {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 40px;
  font-style: italic;
}

/* ===== SECTION 2: SAMPLE KIT ===== */
.section-2 {
  background-color: var(--text-white);
}

.section-2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sample-kit-image {
  width: 100%;
  background: linear-gradient(135deg, #e8dcc4 0%, #f3ede3 100%);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sample-kit-image-placeholder {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.sample-kit-image-text {
  color: var(--text-light);
  font-size: 0.9rem;
}

.section-2-content h2 {
  color: var(--navy);
  margin-bottom: 15px;
}

.section-2-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-2-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== SECTION 3: THE QUOTE ===== */
.section-3 {
  background-color: var(--navy);
  color: var(--text-white);
}

.section-3 h2 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}

.quote-description {
  text-align: center;
  color: #c9c9c9;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-form-container {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--light-navy);
  padding: 40px;
  border-radius: 8px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #555;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #1a2d4d;
  color: var(--text-white);
}

.form-group input::placeholder {
  color: #999;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.quote-form-submit {
  width: 100%;
}

.quote-coming-soon {
  text-align: center;
  background-color: var(--light-navy);
  padding: 30px;
  border-radius: 8px;
}

.quote-coming-soon p {
  color: #c9c9c9;
  margin-bottom: 20px;
}

/* ===== SECTION 4: THE PROCESS ===== */
.section-4 {
  background-color: var(--bg-light);
}

.section-4 h2 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 50px;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.process-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.process-step-text {
  padding-top: 5px;
}

.process-step-text h3 {
  margin: 0 0 5px 0;
  color: var(--navy);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .process-step {
    margin-bottom: 25px;
  }
  .process-step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ===== SECTION 5: WHY RECLAD ===== */
.section-5 {
  background-color: var(--text-white);
}

.section-5 h2 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 50px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-column h3 {
  color: var(--navy);
  margin-bottom: 30px;
  font-size: 1.25rem;
  text-align: center;
}

.comparison-column ul {
  list-style: none;
  padding: 0;
}

.comparison-column li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.comparison-column li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION 6: CREDIBILITY ===== */
.section-6 {
  background-color: var(--navy);
  color: var(--text-white);
  text-align: center;
}

.section-6 h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-6 p {
  color: #c9c9c9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ===== SECTION 7: FULL PLATFORM ===== */
.section-7 {
  background-color: var(--bg-light);
  text-align: center;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.platform-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.platform-icon-badge {
  width: 70px;
  height: 70px;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.platform-icon-text {
  font-weight: 600;
  color: var(--navy);
}

/* ===== SECTION 8: THE RECLAD STANDARD ===== */
.section-8 {
  background-color: var(--text-white);
}

.section-8 h2 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 15px;
}

.section-8-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.standard-item {
  text-align: center;
  padding: 20px;
}

.standard-checkmark {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.standard-item h3 {
  color: var(--navy);
  font-size: 1.1rem;
}

/* ===== SECTION 9: PASS IT ALONG ===== */
.section-9 {
  background-color: var(--navy);
  color: var(--text-white);
  text-align: center;
}

.section-9 h2 {
  color: var(--gold);
  margin-bottom: 20px;
}

.section-9 p {
  margin-bottom: 30px;
  color: #c9c9c9;
}

.referral-form-container {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--light-navy);
  padding: 40px;
  border-radius: 8px;
}

.referral-form-container .form-group {
  text-align: left;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--text-dark);
  color: var(--text-white);
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
}

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

.footer-cta {
  margin-bottom: 30px;
}

.footer-promise {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-tagline {
  color: var(--gold);
  font-weight: 600;
}

/* ===== MODAL OVERLAY ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--text-white);
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
}

.modal-close:hover {
  color: var(--text-dark);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
