/* ========================================
   GLOBALS - Easy Editing Section
======================================== */
:root {
  /* Colors */
  --primary-color: #212529;
  --secondary-color: #6c757d;
  --accent-color: #ffc107;
  --text-dark: #212529;
  --text-light: #6c757d;
  --white: #ffffff;
  --border-light: #e9ecef;
  --gray-bg: #e0e0e0;
  --green-color: #198754;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: "Dancing Script", cursive;

  /* Spacing */
  --section-padding: 80px 0;
  --card-padding: 2rem;
  --border-radius: 12px;

  /* Shadows */
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ========================================
   FONT IMPORTS
======================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap");

/* ========================================
   BASE STYLES
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: var(--section-padding);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-main-heading {
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.2;
}

.script-text {
  font-family: var(--font-script);
  font-size: 4rem;
  font-weight: 1200;
  color: var(--primary-color);
}

.hero-intro {
  padding-right: 2rem;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.btn-cta-main {
  background-color: var(--green-color);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-cta-main:hover {
  background-color: #1a1e21;
  transform: translateY(-2px);
}

/* Newsletter Card */
.newsletter-card {
  background-color: #fff3cd;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--card-shadow);
}

.newsletter-heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.newsletter-subhead {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.cta-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.cta-subtitle {
  font-size: 0.675rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.newsletter-form .form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.newsletter-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.1);
}

.btn-cta {
  background-color: var(--primary-color);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #1a1e21;
  transform: translateY(-1px);
}

/* ========================================
   READY TO GROW SECTION
======================================== */
.ready-to-grow-section {
  background-color: var(--accent-color);
  padding: var(--section-padding);
}

.headshot-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--hover-shadow);
}

.grow-content {
  padding-left: 2rem;
}

.grow-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.grow-text {
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ========================================
   LINK HUB SECTION
======================================== */
.link-hub-section {
  background-color: var(--white);
  padding: var(--section-padding);
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subheading {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--hover-shadow);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.service-hook,
.service-benefit {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-cta {
  margin-top: auto;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.service-cta:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Replace or modify your existing .service-icon styles with: */
.service-logo {
    width: 250px;
    margin-bottom: 1rem;
    object-fit: contain;
    transition: all 0.3s ease;
}

.service-logo:hover {
    transform: scale(1.05);
}


/* Responsive adjustments */
@media (max-width: 767.98px) {
    .service-logo {
        width: 225px;
    }
}

@media (max-width: 575.98px) {
    .service-logo {
        width: 200px;
    }
}

/* ========================================
   TESTIMONIALS SECTIONS
======================================== */
.testimonials-section-1,
.testimonials-section-2 {
  background-color: var(--green-color);
  padding: var(--section-padding);
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--card-shadow);
  height: 100%;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  text-align: right;
}

.testimonial-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}
.testimonial-subheading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

/* ========================================
   VALUES SECTION
======================================== */
.values-section {
  background-color: var(--white);
  padding: var(--section-padding);
}

.value-card {
  background-color: #f8f9fa;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: left;
}

.value-traits {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-align: left;
}

.gallup-strength {
  text-align: center;
}

.badge {
  font-size: 0.75rem;
}

/* ========================================
   FOOTER SECTION
======================================== */
.footer-section {
  background-color: var(--white);
  padding: var(--section-padding);
  border-top: 1px solid var(--border-light);
}

.contact-info {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #1a1e21;
  transform: translateY(-2px);
  color: var(--white);
}

.phone-contact h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.phone-link:hover {
  color: #1a1e21;
}

.contact-form .form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 991.98px) {
  .hero-main-heading {
    font-size: 3.5rem;
    font-weight: 900;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-intro {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .newsletter-card {
    padding: 2rem;
  }

  .grow-content {
    padding-left: 0;
    text-align: center;
  }

  .grow-heading {
    font-size: 2rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .testimonial-heading {
    font-size: 2rem;
    color: var(--white);
  }
  .testimonial-subheading {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-padding: 60px 0;
    --card-padding: 1.5rem;
  }

  .hero-main-heading {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 900;
  }

  .hero-heading {
    font-size: 1.75rem;
  }

  .newsletter-card {
    padding: 1.5rem;
  }

  .newsletter-heading {
    font-size: 1.5rem;
  }

  .headshot-image {
    width: 150px;
    height: 150px;
  }

  .grow-heading {
    font-size: 1.75rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-main-heading {
    font-size: 2rem;
    font-weight: 900;
  }

  .script-text {
    display: block;
    margin-bottom: 0.5rem;
  }

  .hero-heading {
    font-size: 1.5rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .newsletter-card {
    padding: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .value-card {
    padding: 1.5rem;
  }
}

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

.hero-section .container > * {
  animation: fadeInUp 0.8s ease-out;
}

.newsletter-card {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.ready-to-grow-section .container > * {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.social-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.highlight-quote {
font-style: italic;
font-weight: 600;
color: #1f2937;
font-size: 1.25rem;
margin: 2rem 0;
padding: 1.5rem;
background-color: #f9fafb;
border-left: 4px solid var(--accent-color);
border-radius: 0 8px 8px 0;
}