/*
Theme Name: Kick The Habit Theme
Theme URI: https://kickthehabitcoaching.com/
Author: Vadim H
Author URI: https://webdevworld.org
Description: Custom WordPress theme for Kick The Habit Coaching.
Version: 1.0.0
License: Proprietary
License URI: none
Text Domain: ki ck-the-habit
*/
/* Reset some WP defaults that might interfere with Tailwind */
/* Ensure body uses the CSS variables */
body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: background-color 0.3s ease, color 0.3s ease;
}

:root {
  --background: 210 40% 98%;
  --foreground: 222 47% 11%;
}
:root:is(.dark) {
  --background: 222.2 84% 4.9%;
  --foreground: 210 40% 98%;
}
:root {
  --menu-item-color: #475569;
  --menu-item-hover-color: #0d9488;
  --menu-item-focus-outline-color: #475569;
  --current-menu-item-color: #10a396;
  --current-menu-item-focus-outline-color: #10a396;
}
:root:is(.dark) {
  --menu-item-color: #cbd5e1;
  --menu-item-hover-color: #2dd4bf;
  --menu-item-focus-outline-color: #b0bdca;
  --current-menu-item-color: #14B8A6;
  --current-menu-item-focus-outline-color: #0e9a8b;
}
:root {
  --card-bg-color: rgb(255 255 255);
  --green-card-bg-gradient: linear-gradient(
    to right bottom,
    rgb(232 250 246),
    rgb(204 251 233)
  );
  --green-card-border-color: rgb(153 246 228);
  --card-border-radius: 1.5rem;
  --card-border-color: rgb(241 245 249);
  --card-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
  --card-padding: 2rem;
  --tight-card-padding: 1.5rem;
}
:root:is(.dark) {
  --card-bg-color: rgb(15 23 42);
  --green-card-bg-gradient: linear-gradient(
    to right bottom,
    rgb(4 47 46),
    rgb(19 78 74)
  );
  --green-card-border-color: rgb(24 102 96);
  --card-border-color: rgb(30 41 59);
}
@media (width <= 1024px) {
  :root {
    --card-padding: 1.5rem;
    --tight-card-padding: 1.25rem;
  }
}
@media (width <= 768px) {
  :root {
    --card-border-radius: 0.75rem;
  }
}
@media (width <= 600px) {
  :root {
    --card-padding: 1rem;
    --tight-card-padding: 0.75rem;
  }
}
@media (width <= 475px) {
  :root {
    --card-padding: 0.75rem;
    --tight-card-padding: 0.6rem;
  }
}
:root {
  --cta-section-bg-gradient: linear-gradient(
    to right bottom,
    rgb(227 244 240),
    rgb(185 232 221)
  );
  --cta-section-text-color: rgb(5 32 30);
}
:root:is(.dark) {
  --cta-section-bg-gradient: linear-gradient(
    to right bottom,
    rgb(17 94 89),
    rgb(13 66 62)
  );
  --cta-section-text-color: rgb(223 250 245);
}
:root {
  --btn-bg-gradient: linear-gradient(
    to right bottom,
    rgb(18 159 146),
    rgb(12 112 103)
  );
  --btn-hover-bg-gradient: linear-gradient(
    to right bottom,
    rgb(16 152 140),
    rgb(11 106 98)
  );
  --btn-focus-outline-color: rgb(13 148 136);
  --btn-text-color: rgb(255 255 255);
  --btn-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(13 148 136 / 20%) 0px 10px 15px -3px,
    rgb(13 148 136 / 20%) 0px 4px 6px -4px;
}
:root:is(.dark) {
  --btn-bg-gradient: linear-gradient(
    to right bottom,
    rgb(15 104 97),
    rgb(6 66 60)
  );
  --btn-hover-bg-gradient: linear-gradient(
    to right bottom,
    rgb(12 90 84),
    rgb(4 55 50)
  );
  --btn-focus-outline-color: rgb(8 81 75);
  --btn-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px,
    rgb(8 81 75 / 20%) 0px 10px 15px -3px,
    rgb(7 80 73 / 20%) 0px 4px 6px -4px;
}

.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  transition: background-color 0.3s ease, border-color 0.3s ease;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (width <= 1024px) {
  .site-header {
    padding: 1rem 0;
  }
}
@media (width <= 475px) {
  .site-header {
    padding: 0.75rem 0;
  }
}
@media (width <= 400px) {
  .site-header {
    height: auto;
    padding: 0.5rem 0;
  }
  .site-header h1 {
    line-height: 1.2;
  }
}
.site-header .site-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  padding: 0 1.5rem;
}
@media (width <= 1024px) {
  .site-header .site-header-content {
    padding: 0 1rem;
  }
}
@media (width <= 475px) {
  .site-header .site-header-content {
    padding: 0 0.5rem;
  }
}
.site-header .site-branding {
  margin-right: 1rem;
}
.site-header .site-branding a:focus {
  outline: 2px solid var(--menu-item-focus-outline-color);
  outline-offset: 5px;
  -moz-outline-radius: 5px;
}
@media (width <= 550px) {
  .site-header .book-consultation-btn {
    display: none;
  }
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}
.main-navigation li {
  display: block;
  margin: 0;
  padding: 0;
}
.main-navigation a {
  text-decoration: none;
  color: var(--menu-item-color);
  display: block;
  position: relative;
  padding: 0.25rem 0.75rem;
}
.main-navigation a:hover {
  color: var(--menu-item-hover-color);
}
.main-navigation a:focus {
  outline: 2px solid var(--menu-item-focus-outline-color);
}
.main-navigation .current-menu-item > a {
  color: var(--current-menu-item-color);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.main-navigation .current-menu-item > a:focus {
  outline-color: var(--current-menu-item-focus-outline-color);
}

/* Mobile Navigation Styling */
.mobile-navigation ul,
.mobile-navigation div > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-navigation li {
  margin: 0;
  padding: 0;
  display: block;
}
.mobile-navigation a {
  display: block;
  padding: 0.875rem 1.2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s ease;
  text-decoration: none;
}
.mobile-navigation a:hover, .mobile-navigation a:focus {
  background-color: #e9edf0;
  outline: none;
  color: #3c3e40;
}
.mobile-navigation .current-menu-item > a,
.mobile-navigation .current_page_item > a {
  background-color: #c8f0e7;
  color: #1c6f67;
  font-weight: 600;
}
.mobile-navigation .current-menu-item > a:hover, .mobile-navigation .current-menu-item > a:focus,
.mobile-navigation .current_page_item > a:hover,
.mobile-navigation .current_page_item > a:focus {
  background-color: #b7e3d9;
  color: #156059;
}

.dark .site-header {
  background-color: rgba(15, 23, 42, 0.95);
  border-color: rgba(51, 65, 85, 0.7);
}
.dark #mobile-menu {
  background-color: #0f172a;
  border-color: rgba(51, 65, 85, 0.6);
}
.dark .mobile-navigation a {
  color: #cbd5e1;
}
.dark .mobile-navigation a:hover, .dark .mobile-navigation a:focus {
  background-color: #172130;
}
.dark .mobile-navigation .current-menu-item > a,
.dark .mobile-navigation .current_page_item > a {
  background-color: rgba(13, 148, 136, 0.1);
  color: #2dd4bf;
}
.dark .mobile-navigation .current-menu-item > a:hover, .dark .mobile-navigation .current-menu-item > a:focus,
.dark .mobile-navigation .current_page_item > a:hover,
.dark .mobile-navigation .current_page_item > a:focus {
  background-color: rgba(13, 148, 136, 0.15);
}

.site-footer {
  padding: 3rem 0 2rem;
}
@media (width <= 768px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }
}
.site-footer .branding-menu-support {
  display: grid;
  gap: 3rem;
  grid-template-columns: 3fr 3fr 3fr;
}
@media (width <= 1024px) {
  .site-footer .branding-menu-support {
    grid-template-columns: 5fr 2fr 5fr;
  }
}
@media (width <= 768px) {
  .site-footer .branding-menu-support {
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
  }
}
@media (width <= 600px) {
  .site-footer .branding-menu-support {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
  }
}
.site-footer .footer-menu.vertical ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
@media (width <= 768px) {
  .site-footer .footer-menu.vertical {
    display: none;
  }
}
.site-footer .footer-menu.horizontal {
  display: none;
}
@media (width <= 768px) {
  .site-footer .footer-menu.horizontal {
    display: flex;
    gap: 1rem;
  }
}
.site-footer .footer-menu li {
  margin: 0;
}
.site-footer .footer-menu a {
  color: #475569;
  transition: color 0.2s ease;
}
.site-footer .footer-menu a:hover {
  color: #0d9488;
}
.site-footer .footer-menu .current-menu-item > a,
.site-footer .footer-menu .current_page_item > a,
.site-footer .footer-menu .current-menu-ancestor > a,
.site-footer .footer-menu .current-page-ancestor > a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.dark .site-footer .footer-menu a {
  color: #94a3b8;
}
.dark .site-footer .footer-menu a:hover {
  color: #2dd4bf;
}

.section-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.8rem;
}
@media (width <= 1024px) {
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 0.9rem;
  }
}
@media (width <= 768px) {
  .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
@media (width <= 480px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  line-height: 1.75;
}
@media (width <= 768px) {
  .section-subtitle {
    font-size: 1.1rem;
  }
}

.section-paragraph {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
@media (width <= 768px) {
  .section-paragraph {
    font-size: 1rem;
    line-height: 1.625;
  }
}
.section-paragraph p:not(:last-child), .section-paragraph p:not(:last-child) {
  margin-bottom: 1rem;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (width <= 768px) {
  .subsection-title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
}

.subsection-subtitle {
  font-size: 1.2rem;
}
@media (width <= 768px) {
  .subsection-subtitle {
    font-size: 1rem;
  }
}

.btn {
  text-align: center;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75rem;
  background-image: var(--btn-bg-gradient);
  color: var(--btn-text-color);
  box-shadow: var(--btn-shadow);
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-image 0.5s ease;
}
.btn:hover, .btn:active {
  background-image: var(--btn-hover-bg-gradient);
}
.btn:focus {
  outline: 2px solid var(--btn-focus-outline-color);
  outline-offset: 2px;
}
@media (width <= 1024px) {
  .btn {
    padding: 0.9rem 1.8rem;
  }
}
@media (width <= 600px) {
  .btn {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5rem;
    padding: 0.7rem 1.5rem;
  }
}
.btn.btn-sm {
  padding: 0.6rem 0.99rem;
  font-size: 1rem;
  line-height: 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

.card {
  background-color: var(--card-bg-color);
  box-shadow: var(--card-shadow);
  border-radius: var(--card-border-radius);
  border: 1px solid var(--card-border-color);
  padding: var(--card-padding);
}
.card.green-card {
  background-color: transparent;
  background-image: var(--green-card-bg-gradient);
  border-color: var(--green-card-border-color);
}
.card.tight-card {
  padding: var(--tight-card-padding);
}
@media (width <= 600px) {
  .card.tight-card {
    font-size: 0.875rem;
  }
  .card.tight-card .subsection-title {
    font-size: 1rem;
  }
}

.cta-section {
  padding: 6rem 0;
  text-align: center;
  background-image: var(--cta-section-bg-gradient);
  color: var(--cta-section-text-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (width <= 1024px) {
  .cta-section {
    padding: 5rem 0;
  }
}
@media (width <= 768px) {
  .cta-section {
    padding: 4rem 0;
  }
}
@media (width <= 475px) {
  .cta-section {
    padding: 3rem 0;
  }
}
.cta-section.tight-cta-section {
  padding: 4rem 0;
}
@media (width <= 1024px) {
  .cta-section.tight-cta-section {
    padding: 3rem 0;
  }
}
@media (width <= 768px) {
  .cta-section.tight-cta-section {
    padding: 2rem 0;
  }
}
.dark .cta-section .btn {
  background-image: linear-gradient(to bottom right, #eefbf9 0%, #d8f8f2 100%);
  color: #05201E;
}
.dark .cta-section .btn:hover {
  background-image: linear-gradient(to bottom right, #e1f6f1 0%, #cdf3eb 100%);
}
.dark .cta-section .btn:focus {
  outline-color: #d8f8f2;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
}
@media (width <= 1024px) {
  .program-cards {
    gap: 1.5rem;
  }
}
@media (width <= 768px) {
  .program-cards {
    margin: 2rem auto;
  }
}
@media (width <= 639px) {
  .program-cards {
    display: flex;
    flex-direction: column;
    max-width: 350px;
  }
}
@media (width <= 475px) {
  .program-cards {
    margin: 1.5rem auto;
  }
}

.hero {
  padding: 8rem 0;
}
@media (width <= 1024px) {
  .hero {
    padding: 6rem 0;
  }
}
@media (width <= 639px) {
  .hero {
    padding: 4rem 0;
  }
}
@media (width <= 475px) {
  .hero {
    padding: 2rem 0;
  }
}

.hero-title {
  line-height: 1.8;
  font-size: 3.9rem;
  font-weight: bold;
}
@media (width <= 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (width <= 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
}
@media (width <= 480px) {
  .hero-title {
    font-size: 2.1rem;
  }
}
@media (width <= 375px) {
  .hero-title {
    font-size: 1.8rem;
  }
}

.hero-description {
  line-height: 1.8;
  font-size: 1.5rem;
}
@media (width <= 1024px) {
  .hero-description {
    font-size: 1.2rem;
  }
}
@media (width <= 480px) {
  .hero-description {
    font-size: 1rem;
  }
}

.intro-container {
  width: 100%;
  overflow: hidden;
  padding: 5rem 2rem;
}
@media (width <= 1024px) {
  .intro-container {
    padding: 3rem 2rem;
  }
}
@media (width <= 530px) {
  .intro-container {
    padding: 2rem 1.5rem;
  }
}

.intro {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  justify-content: center;
  max-width: 1024px;
  margin: 0 auto;
}
@media (width <= 1024px) {
  .intro {
    gap: 3rem;
  }
}
@media (width <= 768px) {
  .intro {
    gap: 2rem;
  }
}
@media (width <= 600px) {
  .intro {
    gap: 1.5rem;
  }
}
@media (width <= 530px) {
  .intro .btn {
    width: 100%;
  }
}

@media (width <= 530px) {
  .intro-img-n-quote {
    display: none;
  }
}

.intro-img {
  width: auto;
  height: auto;
  max-width: 400px;
  max-height: 500px;
  border-radius: 1rem;
}
@media (width <= 1024px) {
  .intro-img {
    max-width: 300px;
    max-height: 400px;
  }
}
@media (width <= 768px) {
  .intro-img {
    max-width: 250px;
    max-height: 300px;
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (width <= 600px) {
  .intro-img {
    max-width: 200px;
    max-height: 250px;
  }
}

.intro-quote {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  padding: 1.5rem;
  max-width: 330px;
  border-radius: 1rem;
}
.intro-quote blockquote {
  font-weight: bold;
  margin-bottom: 0.6rem;
}
@media (width <= 1024px) {
  .intro-quote blockquote {
    font-weight: normal;
    font-size: 0.9rem;
  }
}
@media (width <= 1024px) {
  .intro-quote {
    bottom: -1rem;
    right: -0.5rem;
    padding: 1rem;
    max-width: 280px;
  }
}
@media (width <= 768px) {
  .intro-quote {
    position: relative;
    bottom: unset;
    right: unset;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
  }
}
@media (width <= 600px) {
  .intro-quote {
    padding: 0.75rem;
    max-width: 230px;
  }
}

@media (width <= 530px) {
  .intro-title {
    text-align: center;
  }
}

.intro-text {
  margin-bottom: 1.5rem;
}
@media (width <= 768px) {
  .intro-text {
    margin-bottom: 1.2rem;
  }
}

.intro-highlights {
  display: flex;
  gap: 1.8rem;
  row-gap: 1rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}
@media (width <= 768px) {
  .intro-highlights {
    margin-bottom: 1.8rem;
  }
}

.mini-intro-img {
  display: none;
  float: left;
  max-width: 120px;
  max-height: 180px;
  border-radius: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0.6rem;
}
@media (width <= 530px) {
  .mini-intro-img {
    display: block;
  }
}
@media (width <= 480px) {
  .mini-intro-img {
    max-width: 100px;
    max-height: 140px;
  }
}
@media (width <= 375px) {
  .mini-intro-img {
    max-width: 80px;
    max-height: 120px;
  }
}

.intro-highlight-title {
  line-height: 1;
}

@media (width <= 530px) {
  .intro-highlight-icon {
    display: none;
  }
}

.mini-intro-highlight-icon {
  display: none;
  flex-shrink: 0;
}
@media (width <= 530px) {
  .mini-intro-highlight-icon {
    display: block;
  }
}

@media (width <= 530px) {
  .intro-highlight-text {
    margin-top: 0.25rem;
  }
}

.plan .step .inner-icon {
  display: none;
}
.plan .step .step-title {
  margin-bottom: 0.25rem;
}
@media (width <= 1024px) {
  .plan .step .step-title {
    margin-bottom: 0.5rem;
  }
  .plan .step .outer-icon {
    display: none;
  }
  .plan .step .inner-icon {
    display: block;
  }
}
@media (width <= 768px) {
  .plan .step .step-title {
    margin-bottom: 0.25rem;
  }
  .plan .step .inner-icon {
    display: none;
  }
  .plan .step .outer-icon {
    display: block;
  }
}
@media (width <= 475px) {
  .plan .step .step-title {
    margin-bottom: 0.5rem;
  }
  .plan .step .inner-icon {
    display: block;
  }
  .plan .step .outer-icon {
    display: none;
  }
}

.kt-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width <= 475px) {
  .kt-contact-form {
    gap: 0.75rem;
  }
}
.kt-contact-form label {
  margin-left: 0.25rem;
}
@media (width <= 475px) {
  .kt-contact-form label {
    font-size: 0.875rem;
  }
}
.kt-contact-form p {
  margin: 0;
}
.kt-contact-form > p:nth-last-child(2) {
  position: relative;
  margin-bottom: -0.5rem;
}
.kt-contact-form .wpcf7-spinner {
  position: absolute;
  right: 1rem;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  pointer-events: none;
}
.kt-contact-form .kt-consent {
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
  margin-top: 0;
}
.kt-contact-form .kt-consent br {
  display: none;
}
.kt-contact-form .kt-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (width <= 475px) {
  .kt-contact-form .kt-field {
    gap: 0.25rem;
  }
}
.kt-contact-form .kt-input,
.kt-contact-form .kt-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 0.875rem;
  font-size: 1rem;
  color: #0f172a;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.kt-contact-form .kt-input:focus,
.kt-contact-form .kt-textarea:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.kt-contact-form .kt-textarea {
  height: 12rem;
  resize: vertical;
}
@media (width <= 1024px) {
  .kt-contact-form .kt-textarea {
    height: 10rem;
  }
}
.kt-contact-form .kt-submit {
  width: 100%;
  border-radius: 0.75rem;
  border: 0;
  background-color: #0d9488;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 3rem 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.kt-contact-form .kt-submit:hover, .kt-contact-form .kt-submit:focus {
  background-color: #0f766e;
  transform: translateY(-1px);
}
.kt-contact-form .kt-submit::after {
  content: " >";
  margin-left: 0.5rem;
}
.kt-contact-form .wpcf7-response-output {
  margin: 0;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #0f172a;
  background-color: #f8fafc;
}

.wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.25rem;
}

.wpcf7 form .wpcf7-response-output {
  margin: 1em 0 0 !important;
  border-radius: 0.75rem;
}
.wpcf7 form.failed .wpcf7-response-output {
  border-color: #fecaca;
  color: #b91c1c;
  background-color: #fef2f2;
}
.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #fed7aa;
  color: #7d5b34;
  background-color: #fff7ed;
}
.wpcf7 form.success .wpcf7-response-output {
  border-color: #99f6e4;
  color: #0f766e;
  background-color: #f0fdfa;
}

.dark .kt-contact-form label {
  color: #e2e8f0;
}
.dark .kt-contact-form .kt-input,
.dark .kt-contact-form .kt-textarea {
  border-color: #1f2937;
  color: #f8fafc;
  background-color: #0f172a;
}
.dark .kt-contact-form .kt-input:focus,
.dark .kt-contact-form .kt-textarea:focus {
  border-color: #2dd4bf;
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.2);
}
.dark .kt-contact-form .kt-consent {
  color: #94a3b8;
}
.dark .kt-contact-form .wpcf7-response-output {
  border-color: #1f2937;
  color: #e2e8f0;
  background-color: rgba(15, 23, 42, 0.6);
}
.dark .wpcf7 form.failed .wpcf7-response-output {
  border-color: rgba(248, 113, 113, 0.5);
  color: #fca5a5;
  background-color: rgba(127, 29, 29, 0.25);
}
.dark .wpcf7 form.invalid .wpcf7-response-output {
  border-color: rgba(251, 146, 60, 0.5);
  color: #fdba74;
  background-color: rgba(124, 45, 18, 0.25);
}
.dark .wpcf7 form.success .wpcf7-response-output {
  border-color: rgba(45, 212, 191, 0.5);
  color: #5eead4;
  background-color: rgba(13, 148, 136, 0.2);
}

.programs-preview-container {
  max-width: 963px;
  margin: 0 auto;
}

.programs-preview {
  padding: 6rem 0;
}
@media (width <= 1024px) {
  .programs-preview {
    padding: 4rem 0;
  }
}
@media (width <= 768px) {
  .programs-preview {
    padding: 3rem 0;
  }
}
@media (width <= 475px) {
  .programs-preview {
    padding: 2rem 0;
  }
}
.programs-preview .recommended-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem 0.75rem;
  border-bottom-left-radius: 0.75rem;
  font-weight: bold;
  font-size: 0.75rem;
}
@media (width <= 768px) {
  .programs-preview .recommended-badge {
    padding: 0.15rem 0.39rem;
    border-bottom-left-radius: 0.5rem;
    font-size: 0.65rem;
  }
}
.programs-preview .program-content {
  padding: 2rem;
}
@media (width <= 768px) {
  .programs-preview .program-content {
    padding: 1.25rem;
  }
}
@media (width <= 350px) {
  .programs-preview .program-content {
    padding: 1rem;
  }
}
.programs-preview .program-feature {
  display: flex;
  gap: 0.9rem;
}
.programs-preview .program-feature .feature-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
}
@media (width <= 475px) {
  .programs-preview .program-feature {
    gap: 0.5rem;
  }
  .programs-preview .program-feature .feature-icon {
    width: 1rem;
    height: 1rem;
  }
}

.coach-profile {
  display: grid;
  gap: 2rem;
  grid-template-columns: 3fr 9fr;
}
@media (width <= 1024px) {
  .coach-profile {
    grid-template-columns: 2fr 5fr;
    gap: 1.5rem;
  }
}
@media (width <= 888px) {
  .coach-profile {
    grid-template-columns: 1fr 2fr;
  }
}
@media (width <= 768px) {
  .coach-profile {
    grid-template-columns: 2fr 3fr;
    gap: 1rem;
  }
}
@media (width <= 600px) {
  .coach-profile {
    display: flex;
    flex-direction: column;
  }
}

.profile-card {
  gap: 1.5rem;
  align-items: center;
}
@media (width <= 600px) {
  .profile-card {
    display: grid;
    gap: 0;
    grid-template-columns: 2fr 3fr;
    align-items: stretch;
  }
}
@media (width <= 390px) {
  .profile-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}
.profile-card .photo {
  border-top-right-radius: var(--card-border-radius);
  border-top-left-radius: var(--card-border-radius);
  border-top: 1px solid var(--card-border-color);
  border-left: 1px solid var(--card-border-color);
  border-right: 1px solid var(--card-border-color);
  overflow: hidden;
}
.profile-card .photo .short-photo {
  display: none;
}
.profile-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width <= 600px) {
  .profile-card .photo {
    border-top-right-radius: 0;
    border-top-left-radius: var(--card-border-radius);
    border-bottom-left-radius: var(--card-border-radius);
    border-top: 1px solid var(--card-border-color);
    border-left: 1px solid var(--card-border-color);
    border-bottom: 1px solid var(--card-border-color);
    border-right: none;
  }
  .profile-card .photo .short-photo {
    display: block;
  }
  .profile-card .photo .tall-photo {
    display: none;
  }
}
@media (width <= 390px) {
  .profile-card .photo {
    max-width: 150px;
    border-radius: 50%;
    border: 1px solid var(--card-border-color);
  }
}
.profile-card .name-title-quote {
  border-bottom-right-radius: var(--card-border-radius);
  border-bottom-left-radius: var(--card-border-radius);
  background-color: var(--card-bg-color);
  border-left: 1px solid var(--card-border-color);
  border-right: 1px solid var(--card-border-color);
  border-bottom: 1px solid var(--card-border-color);
  padding: 1.5rem;
  display: grid;
}
@media (width <= 1024px) {
  .profile-card .name-title-quote {
    padding: 1rem;
  }
}
@media (width <= 600px) {
  .profile-card .name-title-quote {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: var(--card-border-radius);
    border-top-right-radius: var(--card-border-radius);
    border-left: none;
    border-right: 1px solid var(--card-border-color);
    border-top: 1px solid var(--card-border-color);
    border-bottom: 1px solid var(--card-border-color);
  }
}
@media (width <= 475px) {
  .profile-card .name-title-quote {
    padding: 0.75rem;
  }
}
@media (width <= 390px) {
  .profile-card .name-title-quote {
    border-radius: var(--card-border-radius);
    border: 1px solid var(--card-border-color);
  }
  .profile-card .name-title-quote .name-title {
    text-align: center;
  }
}

.coach-info {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}
@media (width <= 1024px) {
  .coach-info {
    gap: 1.5rem;
  }
}
@media (width <= 888px) {
  .coach-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.programs .program-cards {
  margin-top: 0;
  margin-bottom: 4rem;
}
.programs .program-cards .program-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
}
.programs .program-cards .recommended-badge {
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
}
@media (width <= 888px) {
  .programs .program-cards .recommended-badge {
    position: absolute;
    left: 50%;
    top: -1rem;
    transform: translateX(-50%);
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}
@media (width <= 639px) {
  .programs .program-cards .recommended-badge {
    padding: 0.25rem 0.75rem;
    top: -0.9rem;
  }
}
@media (width <= 600px) {
  .programs .program-cards .card.recommended {
    padding-top: 1.5rem;
  }
}
@media (width <= 475px) {
  .programs .program-cards .card.recommended {
    padding-top: 1.25rem;
  }
}
@media (width <= 888px) {
  .programs .program-cards {
    margin-bottom: 3rem;
  }
  .programs .program-cards .program-header {
    text-align: center;
  }
  .programs .program-cards .program-title {
    display: block;
  }
}
@media (width <= 600px) {
  .programs .program-cards {
    margin-bottom: 2rem;
  }
}

.expectations {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (width <= 1024px) {
  .expectations {
    gap: 1.5rem;
  }
}
@media (width <= 768px) {
  .expectations {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width <= 475px) {
  .expectations {
    gap: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
