/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --space-xl: 1.25rem;
  --text-primary: var(--bs-body-color);
  --text-secondary: var(--bs-secondary-color);
  --radius-md: 14px;
  --radius-lg: 18px;
  --border-soft: 1px solid rgba(0,0,0,0.12);
  --shadow-soft: 0 0.5rem 1.25rem rgba(0,0,0,0.06);
}

/*
  Since Bootstrap is now handling the core styling, this file is for overrides
  and custom styles that are specific to this project.
*/

body {
  font-family: 'Inter', sans-serif;
}

/* Ensure list group items in cards are transparent for a cleaner look */

.card .list-group-item {

  background-color: transparent;

}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    /*max-width: 800px;*/
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.1rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.1rem;
    color: rgba(255, 255, 255, 0.85);;

}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-link {
  font-weight: 450;
  color: var(--text-secondary);
}

.cta {
  font-weight: 400;
  letter-spacing: 0.02em;
}

.lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cross {
  position: relative;
  width: 16px;
  height: 16px;
}

.cross::before,
.cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 4px;
  background: var(--bs-danger);
  transform-origin: center;
}

.cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 576px) {
  .callout {
    padding: 0.1rem 0.65rem;
  }
}

.section-callout {
  background-color: var(--bs-dark);
  color: var(--bs-light);
  padding: 0.2rem 1.2rem;
  border-radius: 0.25rem;
}


/* Styles for the icon-based list in the "Sound familiar?" section */
.problem-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background-color: var(--bs-white);
  color: var(--bs-dark);
  border: var(--border-soft);
  border-radius: 999px;
}

.problem-icon {
  flex-shrink: 0; /* Prevent the icon from shrinking */
  color: var(--bs-danger);
}

/* Styles for the "What we do" feature cards */
.feature-card {
  background-color: var(--bs-white);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.feature-card:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.feature-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--bs-dark-bg-subtle);
  color: var(--bs-dark-text-emphasis);
}

.feature-icon-circle i {
  font-size: 1.75rem;
}

/* Styles for the "Why this approach works" benefit list */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Space between items */
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--bs-white);
  border-radius: var(--radius-md);
  border: var(--border-soft);
}

.benefit-item .benefit-icon {
  font-size: 1.5rem; /* Size of the icon */
  flex-shrink: 0; /* Prevent icon from shrinking */
  color: var(--bs-dark); /* Dark color for icons */
}

.benefit-item p {
  margin-bottom: 0; /* Remove default paragraph margin */
}

/* Styles for the "Is this for you?" icon lists */
.icon-list li {
  display: flex;
  align-items: center; /* Vertically center icon and text */
  margin-bottom: 0.5rem; /* Space between list items */
}

.icon-list li:last-child {
  margin-bottom: 0; /* No margin after the last item */
}

.good-fit-header {
  background-color: var(--bs-success);
  color: var(--bs-light);
}

.good-fit-icon {
  color: var(--bs-success); /* Green color */
  font-size: 1.25rem; /* Size of the icon */
}

.not-fit-header {
  background-color: var(--bs-danger);
  color: var(--bs-light);
}

.not-fit-icon {
  color: var(--bs-danger); /* Red color */
  font-size: 1.25rem; /* Size of the icon */
}

/* Styles for the "How It Works" process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Space between each step */
  position: relative;
  padding-left: 1.5rem; /* Space for the line/indicator */
}

/* Vertical line indicator for process steps */
.process-steps::before {
  content: '';
  position: absolute;
  left: 0.75rem; /* Center the line */
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--bs-gray-300);
}

.process-steps .step {
  position: relative;
  padding-left: 1.5rem; /* Space for the dot */
}

/* Dot indicator for each step */
.process-steps .step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem; /* Align with text */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--bs-dark); /* Dark dot */
  border: 2px solid var(--bs-white); /* White ring */
  box-shadow: 0 0 0 2px var(--bs-dark); /* Dark outer ring */
}

.process-steps .step h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.process-steps .step p {
  margin-bottom: 0;
}

/* Styles for "Common Questions" individual items */
/* The .col handles grid and spacing, common-question-card handles visual styling */
.common-question-card {
  padding: 1.25rem; /* Internal padding */
  background-color: var(--bs-white);
  border: 1px solid var(--bs-gray-200); /* Lighter border */
  border-radius: 0.75rem; /* Slightly more rounded */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08); /* More pronounced shadow */
  transition: all 0.2s ease-in-out; /* Add transition for hover effect */
  height: 100%; /* Ensure equal height */
}

.common-question-card:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12); /* Even more pronounced shadow on hover */
  transform: translateY(-3px); /* Subtle lift on hover */
}

/* Adjust heading and paragraph margins within these items */
.common-question-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.common-question-card p {
  margin-bottom: 0;
}

/* Styles for Email Contact Card */
.email-contact-card a {
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 500;
}

/* ========================================
   CUSTOM UTILITY CLASSES FOR HOMEPAGE
   ======================================== */

/* Section Spacing Utilities */
.section {
  padding-block: clamp(2.5rem, 4vw, 4rem);
}

.section-tight {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-wide {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-lead {
  max-width: 56ch;
  margin-inline: auto;
}

/* Consistent Section Headings */
.section-heading {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

/* Custom Button Hierarchy */
.btn-primary-custom {
  background-color: var(--bs-light);
  color: var(--bs-dark);
  border: 2px solid var(--bs-light);
  font-weight: 600;
  padding: 0.75rem 2rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease-in-out;
}

.btn-primary-custom:hover {
  background-color: var(--bs-white);
  color: var(--bs-dark);
  border-color: var(--bs-white);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.2);
}

.btn-secondary-custom {
  background-color: transparent;
  color: var(--bs-light);
  border: 2px solid var(--bs-light);
  font-weight: 500;
  padding: 0.75rem 2rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease-in-out;
}

.btn-secondary-custom:hover {
  background-color: var(--bs-light);
  color: var(--bs-dark);
  border-color: var(--bs-light);
}

/* Dark background variant for secondary CTA */
.section-cta .btn-secondary-custom {
  background-color: transparent;
  color: var(--bs-light);
  border-color: var(--bs-light);
}

.section-cta .btn-secondary-custom:hover {
  background-color: var(--bs-light);
  color: var(--bs-dark);
}

/* Section-specific heading color overrides */
.section-cta .section-heading {
  font-weight: 600;
}

/* Soft panel container for process steps and similar content */
.soft-panel {
  background: var(--bs-white);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 2vw, 2rem);
}

/* Soft card styling for good fit / bad fit cards */
.soft-card {
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.soft-card .card-header {
  border-bottom: var(--border-soft);
}

/* ======================================== */








