/*-----------------------------------*\
  style.css — League Construction Landing Page
  Design tokens match https://www.leagueconstruction.ca/
\*-----------------------------------*/


/*-----------------------------------*\
  #CUSTOM PROPERTIES
\*-----------------------------------*/

:root {

  /* Colors */
  --dark-jungle-green: hsl(188, 63%, 7%);
  --prussian-blue:     hsl(200, 69%, 14%);
  --raisin-black-1:    hsl(227, 29%, 13%);
  --raisin-black-2:    hsl(229, 17%, 19%);
  --orange-soda:       hsl(9, 100%, 62%);
  --yellow-green:      hsl(89, 72%, 45%);
  --cultured-1:        hsl(0, 0%, 93%);
  --cultured-2:        hsl(192, 24%, 96%);
  --misty-rose:        hsl(7, 56%, 91%);
  --seashell:          hsl(8, 100%, 97%);
  --cadet:             hsl(200, 15%, 43%);
  --opal:              hsl(180, 20%, 62%);
  --white:             hsl(0, 0%, 100%);
  --black:             hsl(0, 0%, 0%);

  /* Shadows */
  --shadow-1: 0 5px 20px 0 hsla(219, 56%, 21%, 0.10);
  --shadow-2: 0 16px 32px hsla(188, 63%, 7%, 0.10);

  /* Typography */
  --ff-body:    "Nunito Sans", sans-serif;
  --ff-heading: "Poppins", sans-serif;

  /* Font sizes */
  --fs-1: 1.875rem;
  --fs-2: 1.5rem;
  --fs-3: 1.375rem;
  --fs-4: 1.125rem;
  --fs-5: 0.875rem;
  --fs-6: 0.813rem;
  --fs-7: 0.75rem;

  /* Spacing */
  --section-padding: 80px;

  /* Motion */
  --transition: 0.25s ease;

}


/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

html {
  font-family: var(--ff-body);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--white);
  color: var(--cadet);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
}

address { font-style: normal; }

ion-icon {
  pointer-events: none;
  display: block;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb {
  background: var(--cadet);
  border-left: 2px solid var(--white);
}


/*-----------------------------------*\
  #KEYFRAMES
\*-----------------------------------*/

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}


/*-----------------------------------*\
  #UTILITIES
\*-----------------------------------*/

.container {
  width: 100%;
  padding-inline: 15px;
  margin-inline: auto;
}

/* Section subtitle pill — matches main site pattern */
.section-subtitle {
  display: flex;
  width: fit-content;
  margin-inline: auto;
  align-items: center;
  gap: 6px;
  color: var(--orange-soda);
  font-family: var(--ff-heading);
  font-size: var(--fs-5);
  font-weight: 600;
  padding: 5px 20px;
  background: hsla(9, 100%, 62%, 0.10);
  border-radius: 50px;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2);
  font-weight: 700;
  color: var(--dark-jungle-green);
  line-height: 1.25;
  margin-bottom: 40px;
  text-align: center;
}

/* Button — sharp corners, orange-soda, white slide hover effect */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  background: var(--orange-soda);
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: var(--fs-5);
  font-weight: 600;
  border: 1px solid var(--orange-soda);
  padding: 11px 26px;
  cursor: pointer;
  z-index: 1;
  transition: color var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform var(--transition);
  z-index: -1;
}

.btn:hover,
.btn:focus-visible {
  color: var(--dark-jungle-green);
  outline: none;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(0);
}

/* Full-width button variant */
.btn--full {
  width: 100%;
  padding-block: 14px;
}

/* Light button variant (used on dark/orange backgrounds) */
.btn--light {
  background: var(--white);
  color: var(--dark-jungle-green);
  border-color: var(--white);
}

.btn--light::after {
  background: var(--black);
}

.btn--light:hover,
.btn--light:focus-visible {
  color: var(--white);
}

/* Outline button variant (used on thank-you page) */
.btn--outline {
  background: transparent;
  color: var(--dark-jungle-green);
  border-color: var(--dark-jungle-green);
}

.btn--outline::after {
  background: var(--dark-jungle-green);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  color: var(--white);
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-left.revealed {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-right.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.site-header {
  position: relative;
  z-index: 100;
}

/* Sticky state — JS adds .sticky on scroll */
.site-header.sticky .header-bottom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.12);
  animation: slideDown 0.25s ease-out;
}

/* Top bar (prussian-blue) */
.header-top {
  background: var(--prussian-blue);
  padding-block: 10px;
}

.header-top__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
}

.header-top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: 700;
}

.header-top-link ion-icon {
  color: var(--orange-soda);
  font-size: 15px;
}

.header-top-link:hover { color: var(--orange-soda); }

.header-top-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social-link {
  color: var(--white);
  font-size: 16px;
}

.header-social-link:hover { color: var(--orange-soda); }

/* Bottom bar (white) */
.header-bottom {
  background: var(--white);
  padding-block: 16px;
  border-bottom: 1px solid var(--cultured-1);
}

.header-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header-logo img { display: block; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-jungle-green);
  font-family: var(--ff-heading);
  font-size: var(--fs-5);
  font-weight: 700;
}

.header-phone ion-icon {
  color: var(--orange-soda);
  font-size: 18px;
}

.header-phone:hover { color: var(--orange-soda); }

.header-cta-btn { display: none; }


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background: var(--cultured-2);
  padding-block: 40px;
}

/* Keep hero subtitle left-aligned */
.hero__content .section-subtitle { margin-inline: 0; }

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero__content { order: 1; }
.hero__form-wrapper { order: 2; }

.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--dark-jungle-green);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero__lead {
  font-size: var(--fs-5);
  color: var(--cadet);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 520px;
  padding-left: 16px;
  border-left: 3px solid var(--orange-soda);
}

.hero__phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-jungle-green);
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-phone-link ion-icon {
  color: var(--orange-soda);
  font-size: 20px;
}

.hero-phone-link:hover { color: var(--orange-soda); }

.hero__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero__badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-jungle-green);
  font-family: var(--ff-heading);
  font-size: var(--fs-5);
  font-weight: 600;
}

.hero__badges ion-icon {
  color: var(--yellow-green);
  font-size: 20px;
  flex-shrink: 0;
}

/* Hero trust stats bar */
.hero__trust {
  display: flex;
  margin-top: 28px;
  background: var(--white);
  box-shadow: var(--shadow-1);
  border-left: 3px solid var(--orange-soda);
  overflow: hidden;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 16px 10px;
  text-align: center;
  border-right: 1px solid var(--cultured-1);
}

.trust-stat:last-child { border-right: none; }

.trust-stat__number {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange-soda);
  line-height: 1;
  margin-bottom: 5px;
}

.trust-stat__label {
  font-family: var(--ff-heading);
  font-size: var(--fs-7);
  font-weight: 600;
  color: var(--cadet);
  line-height: 1.3;
}

/* Form Card */
.form-card {
  background: var(--white);
  box-shadow: var(--shadow-2);
}

.form-card__header {
  background: var(--orange-soda);
  padding: 14px 22px;
  color: var(--white);
}

.form-card__header h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-3);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.form-card__header p {
  font-size: var(--fs-5);
  opacity: 0.9;
}

form { padding: 16px 20px; }

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

.form-group label {
  display: block;
  font-family: var(--ff-heading);
  font-size: var(--fs-6);
  font-weight: 600;
  color: var(--dark-jungle-green);
  margin-bottom: 6px;
}

.form-group .required { color: var(--orange-soda); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--cultured-1);
  background: hsl(0, 0%, 99%);
  color: var(--dark-jungle-green);
  font-size: var(--fs-5);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23627d98' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 56px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-soda);
  box-shadow: 0 0 0 3px hsla(9, 100%, 62%, 0.12);
}

.form-group input.error,
.form-group select.error {
  border-color: hsl(0, 75%, 55%);
}

.field-error {
  display: block;
  color: hsl(0, 75%, 50%);
  font-size: var(--fs-7);
  margin-top: 4px;
  min-height: 16px;
}

#submit-btn {
  margin-top: 2px;
  font-size: 0.9rem;
}

#submit-btn .btn-spinner svg {
  animation: spin 0.8s linear infinite;
}

.form-error {
  background: hsl(0, 75%, 97%);
  border: 1px solid hsl(0, 75%, 80%);
  color: hsl(0, 65%, 38%);
  font-size: var(--fs-6);
  padding: 10px 14px;
  margin-top: 12px;
  line-height: 1.5;
}

.form-disclaimer {
  font-size: var(--fs-7);
  color: var(--opal);
  margin-top: 8px;
  text-align: center;
  line-height: 1.4;
}


/*-----------------------------------*\
  #WHY CHOOSE US
\*-----------------------------------*/

.why-us {
  padding-block: var(--section-padding);
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--cultured-1);
  padding: 32px 22px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  box-shadow: var(--shadow-1);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.feature-card:hover {
  background: var(--orange-soda);
  border-color: var(--orange-soda);
  box-shadow: var(--shadow-2);
}

.feature-card__icon {
  background: var(--seashell);
  color: var(--orange-soda);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 28px;
  transition: background var(--transition), color var(--transition);
}

.feature-card:hover .feature-card__icon {
  background: hsla(0, 0%, 100%, 0.20);
  color: var(--white);
}

.feature-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  color: var(--dark-jungle-green);
  transition: color var(--transition);
}

.feature-card:hover .feature-card__title { color: var(--white); }

.feature-card__text {
  font-size: var(--fs-5);
  color: var(--cadet);
  line-height: 1.75;
  transition: color var(--transition);
}

.feature-card:hover .feature-card__text { color: hsla(0, 0%, 100%, 0.85); }


/*-----------------------------------*\
  #SERVICE SECTIONS
\*-----------------------------------*/

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

.service-section--alt {
  background: var(--cultured-2);
}

.service-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.service-section__image {
  width: 100%;
  max-width: 580px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-2);
}

.service-section__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background-color: var(--cultured-2);
  transition: transform 0.5s ease;
}

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

.service-section__content {
  flex: 1;
  width: 100%;
}

.service-section__heading {
  text-align: left;
}

.service-section__text {
  font-size: var(--fs-5);
  color: var(--cadet);
  line-height: 1.85;
  margin-bottom: 28px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 32px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--ff-heading);
  font-size: var(--fs-5);
  font-weight: 600;
  color: var(--dark-jungle-green);
}

.service-features ion-icon {
  color: var(--yellow-green);
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

.service-section__content .section-subtitle {
  display: inline-flex;
  margin-inline: 0;
}

.service-section__content .service-section__heading {
  margin-bottom: 16px;
}


/*-----------------------------------*\
  #GALLERY
\*-----------------------------------*/

.gallery {
  padding-block: var(--section-padding);
  background: var(--cultured-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--cultured-2);
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, hsla(0, 0%, 0%, 0.78));
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: var(--fs-6);
  font-weight: 600;
  padding: 30px 16px 14px;
  transform: translateY(100%);
  transition: transform 0.32s ease;
}

.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption {
  transform: translateY(0);
}


/*-----------------------------------*\
  #PROCESS
\*-----------------------------------*/

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

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--cultured-1);
  border-top: 4px solid var(--orange-soda);
  padding: 38px 22px 28px;
  box-shadow: var(--shadow-1);
  text-align: center;
  transition: box-shadow var(--transition);
}

.process-step:hover { box-shadow: var(--shadow-2); }

.process-step__number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-soda);
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: var(--fs-7);
  font-weight: 700;
  padding: 4px 14px;
  letter-spacing: 1px;
}

.process-step__icon {
  background: var(--seashell);
  color: var(--orange-soda);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 26px;
  margin-inline: auto;
  margin-block: 8px 14px;
  transition: background var(--transition), color var(--transition);
}

.process-step:hover .process-step__icon {
  background: var(--orange-soda);
  color: var(--white);
}

.process-step__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-4);
  font-weight: 700;
  color: var(--dark-jungle-green);
  margin-bottom: 10px;
}

.process-step__text {
  font-size: var(--fs-5);
  color: var(--cadet);
  line-height: 1.75;
}


/*-----------------------------------*\
  #FAQ
\*-----------------------------------*/

.faq {
  padding-block: var(--section-padding);
  background: var(--cultured-2);
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq__heading { text-align: center; }

.faq__title { margin-bottom: 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--transition);
}

.faq-item.open,
.faq-item:hover {
  box-shadow: var(--shadow-2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--ff-heading);
  font-size: var(--fs-5);
  font-weight: 700;
  color: var(--dark-jungle-green);
  cursor: pointer;
  user-select: none;
  transition: color var(--transition);
}

.faq-question:hover,
.faq-item.open .faq-question {
  color: var(--orange-soda);
}

.faq-question ion-icon {
  font-size: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question ion-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-answer__inner {
  padding: 16px 22px 22px;
  font-size: var(--fs-5);
  color: var(--cadet);
  line-height: 1.85;
  border-top: 1px solid var(--cultured-1);
}


/*-----------------------------------*\
  #FINAL CTA
\*-----------------------------------*/

.cta-section {
  background: linear-gradient(to bottom, var(--white) 50%, var(--raisin-black-1) 50%);
}

.cta-card {
  background: var(--orange-soda);
  padding: 46px 28px;
  box-shadow: var(--shadow-2);
  text-align: center;
}

.cta-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-card__text {
  color: hsla(0, 0%, 100%, 0.92);
  font-size: var(--fs-5);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
  margin-inline: auto;
}

.cta-scroll-btn {
  display: inline-flex;
  margin-inline: auto;
  box-shadow: 0 8px 20px hsla(0, 0%, 0%, 0.18);
}


/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact {
  background: var(--raisin-black-1);
  padding-block: 60px;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-item__icon {
  background: hsla(9, 100%, 62%, 0.15);
  color: var(--orange-soda);
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-item__label {
  color: var(--opal);
  font-family: var(--ff-heading);
  font-size: var(--fs-7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.contact-item__value {
  display: block;
  color: var(--white);
  font-size: var(--fs-5);
  font-weight: 600;
  transition: color var(--transition);
}

a.contact-item__value:hover { color: var(--orange-soda); }


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.site-footer { background: var(--raisin-black-1); }

.footer-main {
  padding-block: 40px 28px;
  border-top: 1px solid hsla(0, 0%, 100%, 0.07);
}

.footer-main__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-logo { display: inline-block; margin-bottom: 14px; }

.footer-brand {
  text-align: center;
}

.footer-brand__text {
  color: hsla(0, 0%, 100%, 0.62);
  font-size: var(--fs-5);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 460px;
  margin-inline: auto;
}

.footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 18px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: hsla(0, 0%, 100%, 0.62);
  font-size: var(--fs-5);
  transition: color var(--transition);
}

.footer-contact-link ion-icon {
  color: var(--orange-soda);
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-link:hover { color: var(--orange-soda); }

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-social-link {
  color: hsla(0, 0%, 100%, 0.62);
  font-size: 22px;
  transition: color var(--transition);
}

.footer-social-link:hover { color: var(--orange-soda); }

.footer-links__title {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: hsla(0, 0%, 100%, 0.62);
  font-size: var(--fs-5);
  padding-block: 3px;
  transition: color var(--transition);
}

.footer-link:hover { color: var(--orange-soda); }

.footer-bottom {
  background: var(--raisin-black-2);
  padding-block: 22px;
}

.footer-copyright {
  color: hsla(0, 0%, 100%, 0.45);
  font-size: var(--fs-6);
  text-align: center;
}


/*-----------------------------------*\
  #THANK-YOU PAGE
\*-----------------------------------*/

.thank-you-section {
  background: var(--cultured-2);
  padding-block: 100px;
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
}

.thank-you__inner {
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
}

.thank-you__icon {
  margin-inline: auto;
  margin-bottom: 32px;
}

/* Animated SVG checkmark */
.checkmark-circle {
  fill: none;
  stroke: var(--yellow-green);
  stroke-width: 2;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.65s ease forwards 0.3s;
}

.checkmark-check {
  fill: none;
  stroke: var(--yellow-green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.4s ease forwards 0.95s;
}

.thank-you__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--dark-jungle-green);
  line-height: 1.2;
  margin-bottom: 16px;
}

.thank-you__text {
  font-size: var(--fs-5);
  color: var(--cadet);
  line-height: 1.85;
  margin-bottom: 40px;
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}


/*-----------------------------------*\
  #RESPONSIVE — 600px
\*-----------------------------------*/

@media (min-width: 600px) {

  .container { max-width: 550px; }

  .hero__phones { flex-direction: row; gap: 24px; }

  .features-grid { grid-template-columns: 1fr 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; }

}


/*-----------------------------------*\
  #RESPONSIVE — 768px
\*-----------------------------------*/

@media (min-width: 768px) {

  :root { --section-padding: 90px; }

  .container { max-width: 720px; }

  .btn { font-size: 1rem; padding: 12px 28px; }
  .btn--full { padding-block: 14px; }

  .header-cta-btn { display: inline-flex; }

  .hero { padding-block: 80px; }

  .features-grid { grid-template-columns: repeat(3, 1fr); }

  .service-features { grid-template-columns: 1fr 1fr; }

  .contact__inner { flex-direction: row; flex-wrap: wrap; }
  .contact-item { flex: 1; min-width: 200px; }

  .footer-main__inner { flex-direction: row; justify-content: center; }

}


/*-----------------------------------*\
  #RESPONSIVE — 992px
\*-----------------------------------*/

@media (min-width: 992px) {

  :root { --section-padding: 100px; }

  .container { max-width: 970px; }

  .btn { padding: 13px 34px; }

  .hero { padding-block: var(--section-padding); }

  .hero__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }

  .hero__content { order: 1; flex: 1; }
  .hero__form-wrapper { order: 2; flex: 0 0 420px; }

  .service-section__inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .service-section__inner--reverse { flex-direction: row-reverse; }

  .service-section__image { flex: 0 0 46%; max-width: none; }
  .service-section__content { flex: 1; }

  .process-steps { grid-template-columns: repeat(4, 1fr); }

  .faq__inner { flex-direction: row; align-items: flex-start; gap: 60px; }
  .faq__heading { flex: 0 0 280px; text-align: left; position: sticky; top: 100px; }
  .faq__heading .section-subtitle { margin-inline: 0; }
  .faq__title { text-align: left; }
  .faq-list { flex: 1; }

  .cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 50px 60px;
    gap: 40px;
  }

  .cta-card__content { flex: 1; }
  .cta-card__text { margin-inline: 0; margin-bottom: 0; }
  .cta-scroll-btn { margin-inline: 0; flex-shrink: 0; }

  .contact__inner { flex-direction: row; justify-content: space-between; }

}


/*-----------------------------------*\
  #RESPONSIVE — 1200px
\*-----------------------------------*/

@media (min-width: 1200px) {

  .container { max-width: 1200px; }

  .btn { padding: 14px 40px; }

  .hero__form-wrapper { flex: 0 0 460px; }

  .footer-brand { max-width: 560px; }

  .features-grid { grid-template-columns: repeat(3, 1fr); }

}
