/* ═══════════════════════════════════════════════════════════════
   RICK JEFFERSON ROCKWALL CREDIT REPAIR FUNNEL
   Brand Colors: Teal (#008B8B, #20B2AA) and Navy (#003D5C, #001F3F)
   Date: January 12, 2026
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand Colors */
  --navy-dark: #001F3F;
  --navy-primary: #003D5C;
  --navy-light: #004D73;
  --teal-primary: #008B8B;
  --teal-light: #20B2AA;
  --teal-lighter: #48D1CC;
  
  /* Accent Colors */
  --gold: #FFD700;
  --gold-dark: #DAA520;
  --red-alert: #E74C3C;
  --green-success: #27AE60;
  
  /* Neutrals */
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray-medium: #E0E0E0;
  --gray-dark: #2F3E4D;
  --black: #000000;
  
  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL STYLES
   ═══════════════════════════════════════════════════════════════ */

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

body {
  font-family: var(--font-primary);
  color: var(--gray-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--teal-primary) 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(32, 178, 170, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(0, 139, 139, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.authority-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.authority-badge span {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-headline {
  color: var(--white);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.highlight-gold {
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.highlight-red {
  color: var(--red-alert);
}

.hero-subheadline {
  color: var(--white);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline strong {
  font-weight: 700;
  color: var(--gold);
}

/* Trust Signals */
.trust-signals {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.trust-item {
  color: var(--white);
  text-align: center;
  min-width: 120px;
}

.trust-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 2px 6px rgba(255, 215, 0, 0.4);
  margin-bottom: 5px;
}

.trust-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.95;
}

/* CTA Button */
.cta-button {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 22px;
  font-weight: 900;
  padding: 20px 50px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 215, 0, 0.5);
}

.cta-button.large {
  font-size: 24px;
  padding: 24px 60px;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
  }
}

.cta-button.pulse {
  animation: pulse 2s infinite;
}

.hero-disclaimer {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-top: 20px;
}

/* Hero Image */
.hero-image-container {
  text-align: center;
  margin-top: 60px;
}

.hero-image {
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 6px solid var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════════════════════════ */

.problem-section {
  background: var(--gray-light);
  padding: var(--section-padding);
}

.section-headline {
  text-align: center;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy-primary);
  margin-bottom: 25px;
  line-height: 1.3;
}

.section-subheadline {
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  color: #555;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.problem-box {
  background: var(--white);
  border-left: 5px solid var(--red-alert);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  max-width: 1000px;
  margin: 0 auto;
}

.problem-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 30px;
}

.problem-list {
  list-style: none;
  padding: 0;
  font-size: 18px;
  line-height: 2.2;
  color: #333;
}

.problem-list li {
  padding-left: 10px;
  margin-bottom: 12px;
}

.problem-conclusion {
  text-align: center;
  font-size: 20px;
  color: var(--red-alert);
  font-weight: 700;
  margin-top: 50px;
}

/* ═══════════════════════════════════════════════════════════════
   AUTHORITY SECTION
   ═══════════════════════════════════════════════════════════════ */

.authority-section {
  background: var(--white);
  padding: var(--section-padding);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.authority-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--gray-light);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.authority-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-primary);
}

.authority-icon {
  font-size: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 139, 139, 0.3));
}

.authority-card-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 15px;
}

.authority-card-text {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   CLIENT SUCCESS SECTION
   ═══════════════════════════════════════════════════════════════ */

.client-success-section {
  background: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.client-success-image {
  max-width: 800px;
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--teal-primary);
}

/* ═══════════════════════════════════════════════════════════════
   FORM SECTION
   ═══════════════════════════════════════════════════════════════ */

.form-section {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--teal-primary) 100%);
  padding: 120px 20px;
  position: relative;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.form-headline {
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  color: var(--navy-primary);
  margin-bottom: 15px;
}

.form-subheadline {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

/* Offer Box */
.offer-box {
  background: var(--gray-light);
  padding: 35px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.offer-list {
  list-style: none;
  padding: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.offer-list li {
  margin-bottom: 20px;
  padding-left: 5px;
}

.offer-list strong {
  color: var(--navy-primary);
  font-size: 17px;
}

.offer-detail {
  font-size: 14px;
  color: #666;
  display: block;
  margin-top: 5px;
  line-height: 1.5;
}

/* Lead Form */
.lead-form {
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--gray-medium);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-primary);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
}

/* Form Trust */
.form-trust {
  text-align: center;
  margin-top: 30px;
}

.form-trust-text {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   GUARANTEE SECTION
   ═══════════════════════════════════════════════════════════════ */

.guarantee-section {
  background: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.guarantee-image {
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════ */

.testimonials-section {
  background: var(--gray-light);
  padding: var(--section-padding);
}

.testimonials-intro {
  margin-bottom: 80px;
}

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

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--teal-primary);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.testimonial-avatar {
  background: var(--gold);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy-dark);
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 800;
  color: var(--navy-primary);
  font-size: 19px;
  margin-bottom: 3px;
}

.testimonial-location {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}

.testimonial-rating {
  color: var(--gold);
  font-size: 18px;
}

.testimonial-text {
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-result {
  font-size: 24px;
  font-weight: 900;
  color: var(--green-success);
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid var(--gray-medium);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */

.faq-section {
  background: var(--white);
  padding: var(--section-padding);
}

.faq-container {
  max-width: 900px;
}

.faq-item {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 2px solid var(--gray-medium);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 12px;
}

.faq-answer {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════════════════════════════ */

.final-cta-section {
  background: linear-gradient(135deg, var(--teal-primary) 0%, var(--navy-primary) 100%);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-container {
  position: relative;
  z-index: 1;
}

.final-cta-headline {
  color: var(--white);
  font-size: clamp(38px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 30px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.final-cta-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-text strong {
  color: var(--gold);
}

.final-cta-disclaimer {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-top: 30px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  background: var(--gray-dark);
  color: var(--white);
  padding: 70px 20px 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  max-width: 220px;
  margin-bottom: 25px;
}

.footer-heading {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--teal-light);
}

.footer-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact {
  line-height: 1.9;
}

.footer-links {
  list-style: none;
  padding: 0;
  font-size: 15px;
  line-height: 2.2;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--teal-light);
}

.footer-service-areas {
  list-style: none;
  padding: 0;
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
}

/* Footer Legal */
.footer-legal {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 40px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-legal-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-legal-text a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin: 0 10px;
}

.footer-legal-text a:hover {
  color: var(--teal-light);
}

.footer-legal-disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   THANK YOU PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

.thankyou-section {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--teal-primary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.thankyou-container {
  max-width: 900px;
  background: var(--white);
  padding: 70px 50px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: var(--green-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  font-size: 70px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
}

.thankyou-headline {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy-primary);
  margin-bottom: 25px;
}

.thankyou-intro {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* Steps Box */
.steps-box {
  background: var(--gray-light);
  padding: 50px 40px;
  border-radius: 16px;
  text-align: left;
  margin-bottom: 50px;
}

.steps-heading {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 40px;
  text-align: center;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  background: var(--navy-primary);
  color: var(--white);
  font-weight: 900;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 24px;
  box-shadow: var(--shadow-sm);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 10px;
}

.step-text {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

/* Video Section */
.video-section {
  margin-bottom: 50px;
}

.video-heading {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 30px;
}

.video-container {
  background: var(--black);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 40px;
}

.video-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

/* Download Box */
.download-box {
  background: var(--gold);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
}

.download-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 15px;
}

.download-text {
  color: var(--navy-primary);
  font-size: 17px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Calendar Box */
.calendar-box {
  border: 3px dashed var(--navy-primary);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
}

.calendar-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 15px;
}

.calendar-text {
  color: #555;
  font-size: 17px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Contact Support */
.contact-support {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid var(--gray-medium);
}

.support-text {
  font-size: 15px;
  color: #888;
  line-height: 1.8;
}

.support-text strong {
  color: var(--navy-primary);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px 50px;
  }
  
  .trust-signals {
    gap: 25px;
  }
  
  .trust-number {
    font-size: 36px;
  }
  
  .cta-button {
    font-size: 18px;
    padding: 18px 35px;
  }
  
  .hero-image {
    max-width: 350px;
  }
  
  .authority-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-container {
    padding: 40px 30px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .thankyou-container {
    padding: 50px 30px;
  }
  
  .steps-box {
    padding: 35px 25px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto 20px;
  }
}

@media (max-width: 480px) {
  .authority-badge span {
    font-size: 11px;
  }
  
  .hero-headline {
    font-size: 32px;
  }
  
  .trust-signals {
    flex-direction: column;
    gap: 20px;
  }
  
  .cta-button {
    font-size: 16px;
    padding: 16px 30px;
  }
  
  .form-container {
    padding: 35px 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SMOOTH SCROLL & ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.authority-card,
.testimonial-card,
.faq-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
  .hero-section,
  .form-section,
  .final-cta-section,
  .footer {
    background: white !important;
    color: black !important;
  }
  
  .cta-button {
    display: none;
  }
}
