@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* =========================
   CSS Variables & Root Styles
   ========================= */
:root {
    --color-primary: #10b5cb;
    --color-calm: #87CEEB;
    --color-accent: #8a2ce2;
    --color-background: #FFFFFF;
    --color-foreground: #1A1A1A;
    --color-muted: #6B7280;
    --color-border: #E5E7EB;
    --color-card: #F9FAFB;
    --color-secondary: #F3F4F6;

    --gradient-primary: linear-gradient(to right, #10b5cb, #0da2e7, rgb(138 44 226));
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

em {
    color: inherit;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-foreground);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================
   Utility Classes
   ========================= */
.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted {
    color: var(--color-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: rgba(139, 123, 168, 0.1);
}


/* =========================
   Header & Navigation
   ========================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all var(--transition-normal);
}

.site-header .custom-logo-link img {
    max-height: 50px;
    width: auto;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.site-header .uk-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo-link {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity var(--transition-fast);
}

.logo-link:hover {
    opacity: 0.8;
}

.header-main-menu{
    padding-left: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    gap: 15px;
}
.header-main-menu .sub-menu {
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    padding: 15px;
    list-style-type: none;
    background: #fff;
    position: absolute;
    top: 100%;
    text-align: left;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.header-main-menu .menu-item.menu-item-has-multidepth .sub-menu {
    left: 0;
    right: 0
}

.header-main-menu .menu-item-has-children.active .sub-menu {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

.header-main-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 20px
}

.header-main-menu .menu-item-has-children > a:after {
    content: "";
    background: url('../images/chevron-down.svg') center/cover no-repeat;
    height: 15px;
    width: 15px;
    display: inline-block;
    top: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0

}


.main-nav a {
    color: var(--color-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    font-size: 15px;
    padding: 5px 10px ;
    display: inline-block;
}

.main-nav a:hover {
    color: var(--color-primary);
    background-color: #10b5cb1a;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-foreground);
}


.uk-navbar-nav > li > a {
    padding: 0 15px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.uk-navbar-dropdown {
    min-width: 200px;
}


/* =========================
Hero Section
========================= */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-section .uk-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section .hero-buttons .btn-outline {
    background-color: #fff;
}


.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--color-background), transparent);
    z-index: 10;
}

/* =========================
   Services Section
   ========================= */
.services-section {
    padding: 6rem 0;
    background-image: linear-gradient(to bottom, #fff, #f3f6fc);
}

.services-section .uk-container {
    max-width: 1152px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-muted);
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.service-card {
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-image: linear-gradient(to bottom right, #10b5cb, #8a2ce2);
    margin-bottom: 1.5rem;
}

.service-icon svg,
.service-icon img {
    width: 2rem;
    height: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-description ul {
    list-style: none;
    padding: 0;
}

.service-description ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.service-benefits li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    flex-shrink: 0;
}

/* =========================
   About Section
   ========================= */
.about-section {
    padding: 6rem 0;
    background-color: var(--color-background);
}

.about-section .section-title span {
    color: var(--color-primary);
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 16rem;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 123, 168, 0.1), transparent);
}

.about-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.credential-card {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.credential-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.credential-icon.primary {
    background-color: rgba(139, 123, 168, 0.1);
}

.credential-icon.accent {
    background-color: rgba(184, 169, 201, 0.1);
}

.credential-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Карточки 1 и 4 (и далее 5, 8, 11... по паттерну 4n+1) */
.credentials-grid .credential-card:nth-child(4n+1) .credential-icon {
    color: var(--color-primary);
    background-color: #10b5cb1a;
}

/* Карточки 2 и 3 (и далее 6, 7, 10, 11... по паттерну) */
.credentials-grid .credential-card:nth-child(4n+2) .credential-icon,
.credentials-grid .credential-card:nth-child(4n+3) .credential-icon {
    color: var(--color-accent);
    background-color: #8a2ce21a;
}

/* Карточка 4 */
.credentials-grid .credential-card:nth-child(4n) .credential-icon {
    color: var(--color-primary);
    background-color: #10b5cb1a;
}


.credential-card .card-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.credential-card .cart-description {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin: 0;
}

.wellness-banner {
    margin-top: 6rem;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.wellness-banner img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.wellness-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.4));
    display: flex;
    align-items: center;
}

.wellness-content {
    padding: 2rem;
}

.wellness-content h3 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.wellness-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 32rem;
}

.btn-white {
    background-color: white;
    color: var(--color-foreground);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.95);
}

/* =========================
   Questions (FAQ) Section
   ========================= */
.questions-section {
    padding: 5rem 0;
    background-color: #f1f2f44d;
}

.faq-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: #10b5cb1a;
    border: 1px solid #10b5cb33;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
}

.faq-container {
    background-color: #fff;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.faq-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-item {
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 1rem;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: background-color var(--transition-fast);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-foreground);
    display: block;
    padding: 1.5rem;
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

.faq-question:hover {
    color: var(--color-primary);
}

/* UIKit accordion icon override */
.faq-question::before {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    float: right;
    margin-left: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform var(--transition-fast);
}

.uk-open > .faq-question::before {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

.questions-section .btn-book-session {
    background-image: linear-gradient(to right, #10b5cb, #0da2e7, #8a2ce2);
}


/* =========================
   Contact Section
   ========================= */
.contact-section {
    padding: 6rem 0;
    background-image: linear-gradient(to bottom, #f3f6fc, white);
}

.contact-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    height: 100%;
    border: none;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon.primary {
    background-color: #10b5cb1a;
}

.contact-icon.accent {
    background-color: #8a2ce21a;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-icon.primary svg {
    color: var(--color-primary);
}

.contact-icon.accent svg {
    color: var(--color-accent);
}

.contact-card .contact-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card .contact-card__description {
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: text-decoration var(--transition-fast);
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: none;
}

.contact-form-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form-card__description {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 123, 168, 0.1);
}

.form-group textarea {
    resize: none;
    min-height: 150px;
}

.wpcf7 .wpcf7-submit {
    width: 100%;
    background-color: var(--color-primary);
    font-size: 15px;
    border-radius: 30px;
    padding: 15px;
    color: #fff;
    border: none;
}

.wpcf7-spinner {
    position: absolute;
    top: 12px;
    right: 10px;
}

/* =========================
   Footer
   ========================= */
.site-footer {
    background-color: rgba(26, 26, 26, 0.03);
    border-top: 1px solid var(--color-border);
    padding: 35px 0 20px;
}

/* Removed .footer-grid - now using UIKit grid system */

.footer-column h3,
.footer-column h4 {
    font-weight: 700;
}

.footer-column p {
    line-height: 1.6;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-primary) !important;
}

.footer-bottom {
    padding-top: 20px;
    font-size: 13px;
    color: #65758b;
    border-top: 1px solid #e5e7eb;
    margin-top: 30px;
}


/* Footer bottom - styled with UIKit classes in HTML */


/**
    default page setting
 */
.default-page .page-title {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 45px;
}


.default-page .page-expert {
    color: #65758b;
    font-size: 18px;
    line-height: 1.3;
}

.default-page .page-body .uk-container {
    max-width: 900px;
}

.default-page {
    padding: 128px 0 80px;
    background-image: linear-gradient(to bottom right, hsl(0 0% 100%), hsl(199 89% 48% / .1), hsl(0 0% 100% / 0));
}

.page-header__wrapper {
    margin-bottom: 48px;
}

.therapy-block__content {
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 1px 10px -3px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid #10b5cb33;
}

.therapy-block__content:not(:last-child) {
    margin-bottom: 40px;
}

.therapy-block__section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.therapy-block__section-title .icon {
    color: var(--color-primary);
    margin-right: 8px;
}

.therapy-block__section-title .icon svg {
    height: 25px;
    width: 25px;
}

.therapy-block__section-description ul {
    padding-left: 0;
}

.therapy-block__section-description ul li {
    list-style-type: none;
    position: relative;
    padding-left: 30px;
}

.therapy-block__section-description ul li:not(:last-child) {
    margin-bottom: 10px;
}

.therapy-block__section-description ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/svg/check.svg") no-repeat center;
    background-size: 20px;
    display: inline-block;
    height: 25px;
    width: 25px;
}

