/* =============================================
   NATIVIA BRAND STYLES v1.2.0
   Стилі брендбуку для всіх сторінок WordPress
   ============================================= */

/* --- ЗМІННІ КОЛЬОРІВ БРЕНДБУКУ --- */
:root {
    --primary-blue: #2B2C7C;
    --primary-pink: #FF7AF1;
    --text-dark: #2B2C7C;
    --violet: #7C32FD;
    --lime-green: #D4FF58;
    --penBlue: #220983;
    --white: #ffffff;
    --dark-bg: #333333;
}

/* --- ПІДКЛЮЧЕННЯ ШРИФТІВ --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Caveat:wght@400;700&display=swap');

/* --- БАЗОВІ СТИЛІ --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

/* --- ХЕДЕР --- */
.wp-block-template-part[data-area="header"],
header.wp-block-template-part {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    /*padding: 20px 0;*/
    position: relative;
    z-index: 100;
}

.wp-block-template-part[data-area="header"] a,
header.wp-block-template-part a,
.wp-block-template-part[data-area="header"] .wp-block-site-title a,
.wp-block-template-part[data-area="header"] .wp-block-navigation a {
    color: var(--white) !important;
    text-decoration: none;
    transition: 0.3s;
}

.wp-block-template-part[data-area="header"] a:hover,
header.wp-block-template-part a:hover,
.wp-block-template-part[data-area="header"] .wp-block-navigation a:hover {
    color: var(--primary-pink) !important;
}

.wp-block-site-logo img {
    max-width: 157px;
    height: auto;
}

.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
    color: var(--white);
}

/* --- КНОПКИ --- */
.wp-block-button__link,
.wp-element-button,
button.wp-element-button {
    border-radius: 50px !important;
    padding: 18px 30px !important;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.wp-block-button__link:hover,
.wp-element-button:hover,
button.wp-element-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    border: 1px solid var(--white) !important;
    color: var(--white) !important;
    background: transparent !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--white) !important;
    color: var(--primary-blue) !important;
}

/* Кнопки з основним синім фоном */
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    border: none;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
    background-color: var(--primary-pink) !important;
}

/* --- ЗАГОЛОВКИ --- */
h1, h2, h3, h4, h5, h6,
.wp-block-heading {
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* --- ПОСИЛАННЯ --- */
a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--primary-pink);
    text-decoration: none;
}

/* --- ФУТЕР --- */
.wp-block-template-part[data-area="footer"],
footer.wp-block-template-part,
.site-footer {
    /* background-color: var(--dark-bg) !important; */
    color: var(--white) !important;
    padding: 50px 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.wp-block-template-part[data-area="footer"] a,
footer.wp-block-template-part a,
.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.wp-block-template-part[data-area="footer"] a:hover,
footer.wp-block-template-part a:hover,
.site-footer a:hover {
    color: var(--primary-pink) !important;
}

.wp-block-template-part[data-area="footer"] h3,
.wp-block-template-part[data-area="footer"] h4,
footer.wp-block-template-part h3,
footer.wp-block-template-part h4,
.site-footer h3,
.site-footer h4 {
    color: var(--white);
    text-transform: uppercase;
}

/* --- СТИЛІ ФУТЕРА З PAGE-LANDING.PHP --- */
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-slogan {
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0 0 40px 0;
    text-align: center;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 157px;
    height: auto;
}

.footer-col-nav h4,
.footer-col-info h4,
.footer-col-contacts h4 {
    color: var(--primary-pink);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-pink);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-icon-pin {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-address-text {
    color: #ddd;
    line-height: 1.6;
}

.footer-contact-details {
    margin-bottom: 20px;
}

.footer-header {
    color: var(--primary-pink);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-phone,
.footer-email {
    display: block;
    color: var(--white);
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--primary-pink);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.2rem;
}

.btn-insta {
    background-color: #E4405F;
}

.btn-insta:hover {
    background-color: #C13584;
    transform: translateY(-2px);
}

.btn-tele {
    background-color: #0088cc;
}

.btn-tele:hover {
    background-color: #006699;
    transform: translateY(-2px);
}

/* Адаптивність футера */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-slogan {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* --- КАРТКИ ТА БЛОКИ --- */
.wp-block-group {
    border-radius: 24px;
}

.wp-block-group.has-background {
    padding: 40px;
}

/* --- СПИСКИ --- */
ul, ol {
    padding-left: 1.5rem;
}

ul li::marker {
    color: var(--primary-blue);
}

/* --- ЦИТАТИ --- */
.wp-block-quote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
    font-style: italic;
}

/* --- КОД --- */
.wp-block-code {
    background-color: var(--white);
    border: 1px solid var(--primary-blue);
    border-radius: 8px;
    padding: 1rem;
}

/* --- ПОСТИ --- */
.wp-block-post-title a {
    color: var(--primary-blue);
}

.wp-block-post-title a:hover {
    color: var(--primary-pink);
}

.wp-block-post-date,
.wp-block-post-author-name {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* --- ПОШУК --- */
.wp-block-search__input {
    border-radius: 8px;
    border: 1px solid var(--primary-blue);
    padding: 12px;
}

.wp-block-search__button {
    border-radius: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
}

.wp-block-search__button:hover {
    background-color: var(--primary-pink);
}

/* --- КОМЕНТАРІ --- */
.wp-block-comments {
    margin-top: 2rem;
}

.wp-block-comment-author-name a {
    color: var(--primary-blue);
    font-weight: 600;
}

.wp-block-comment-date {
    color: #636363;
    font-size: 0.9rem;
}

/* --- ПАГІНАЦІЯ --- */
.wp-block-query-pagination a,
.wp-block-query-pagination-numbers a {
    color: var(--primary-blue);
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
}

.wp-block-query-pagination a:hover,
.wp-block-query-pagination-numbers a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.wp-block-query-pagination-numbers .page-numbers.current {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* --- АДАПТИВНІСТЬ --- */
@media (max-width: 1024px) {
    .wp-block-template-part[data-area="header"] {
        padding: 15px 0;
    }
    
    .wp-block-site-logo img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .wp-block-button__link,
    .wp-element-button {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .wp-block-group.has-background {
        padding: 30px 20px;
    }
}

/* --- ДЕКОРАТИВНИЙ ШРИФТ ДЛЯ СПЕЦІАЛЬНИХ ЕЛЕМЕНТІВ --- */
.has-caveat-font {
    font-family: 'Caveat', cursive;
    font-weight: 700;
}

/* --- КОЛЬОРОВІ КЛАСИ --- */
.has-primary-blue-color {
    color: var(--primary-blue) !important;
}

.has-primary-pink-color {
    color: var(--primary-pink) !important;
}

.has-primary-blue-background-color {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
}

.has-primary-pink-background-color {
    background-color: var(--primary-pink) !important;
    color: var(--white) !important;
}

.has-lime-green-color {
    color: var(--lime-green) !important;
}

.has-violet-color {
    color: var(--violet) !important;
}

/* =============================================
   LANDING PAGE STYLES v1.2.0
   Стилі для landing page з page-landing1.php
   ============================================= */

/* --- КОНТЕЙНЕР --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

@media (max-width: 1024px) {
    .container { padding: 0 60px; }
}

@media (max-width: 992px) {
    .container { padding: 0 20px; }
}

/* --- ХЕДЕР LANDING PAGE --- */
.site-header {
    background-color: var(--primary-blue);
    padding: 20px 0;
    color: var(--white);
    position: relative;
    z-index: 100;
}
.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { z-index: 101; }
.logo img {
    width: 157px;
    height: auto; 
}

/* Меню десктопне */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}
.main-nav a {
    font-size: 16px;
    font-weight: 500; 
    color: var(--white);
}
.main-nav a:hover { color: var(--primary-pink); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 101;
}

.header-btn {
    border: 1px solid var(--white);
    padding: 18px 37px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    color: var(--white);
}
.header-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* --- БУРГЕР КНОПКА --- */
.burger-btn {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    padding: 0;
    z-index: 102;
}
.burger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.burger-btn span:nth-child(1) { top: 0; }
.burger-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger-btn span:nth-child(3) { bottom: 0; }

.burger-btn.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* --- МОБІЛЬНЕ МЕНЮ --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 99;
    padding-top: 80px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.mobile-menu a {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

@media (max-width: 1024px) {
    .main-nav { display: none; }
    .burger-btn { display: block; }
    .header-btn { display: flex; padding: 12px 24px; font-size: 14px;}
}

/* --- СЕКЦІЯ HERO --- */
.hero {
    padding-bottom: 148px;
    padding-top: 48px; 
    background: var(--white);
    overflow: hidden;
}
.hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-content {
    flex: 0 0 50%;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 26px;
    text-transform: uppercase;
}
.text-pink { color: var(--primary-pink); }

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 26px;
}

.hero-divider {
    width: 100%;
    height: 1px;
    background: var(--primary-blue);
    margin-bottom: 26px;
}

.hero-desc {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 40px; 
    max-width: 454px;
    line-height: 1.5; 
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: 0.3s;
    text-decoration: none;
}
.btn-blue {
    background-color: var(--primary-blue);
    color: var(--white);
}
.btn-pink {
    background-color: var(--primary-pink);
    color: var(--white);
}
.btn:hover { opacity: 0.9; transform: translateY(-2px); }

.hero-image {
    flex: 1; 
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-mobile-visual {
    display: none;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    justify-content: center;
    align-items: flex-end;
}
.mobile-main-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero {
        padding-bottom: 90px;
    }
    .hero-title { font-size: 36px; }
    .hero-wrap { gap: 20px; }
}

@media (max-width: 768px) {
    .hero { padding-bottom: 48px; } 
    .hero-wrap {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        flex: 0 0 100%;
        width: 100%;
    }

    .hero-image { display: none; }
    .hero-divider { display: none; }

    .hero-mobile-visual { display: flex; }

    .hero-title { 
        font-size: 40px;
        margin-bottom: 20px;
        order: 1;
    }
    
    .hero-subtitle { 
        font-size: 18px;
        margin-bottom: 10px;
        opacity: 0.9;
        order: 2;
    }

    .hero-mobile-visual {
        order: 3;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .hero-buttons {
        order: 5;
        gap: 15px;
        margin-bottom: 0;
        align-self: center;
        flex-wrap: wrap;
    }

    .hero-desc {
        order: 4;
        font-size: 17px;
        align-self: center;
        max-width: 650px;
    }
}

@media (max-width: 500px) {
    .hero-title {
        font-size: 25px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
}

/* --- СЕКЦІЯ: ПРОБЛЕМА / РІШЕННЯ --- */
.problem-solution {
    background: var(--white);
}
.ps-box {
    background-color: var(--primary-blue);
    border-radius: 30px;
    padding: 44px 28px;
    color: var(--white);
    overflow: hidden; 
}
.ps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ps-first-col { width: 48%; }
.ps-sec-col {
    width: 48%; 
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 55px;
    margin-top: 32px;
}

.ps-title {
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 10px;
}
.ps-script {
    font-family: 'Caveat', cursive;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 10px;
    display: block;
}

.ps-list { margin-bottom: 64px; }
.ps-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.5;
}
.ps-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -3px;
    padding-left: 12px; 
    color: var(--white);
    font-size: 30px;
    line-height: 1;
}

.ps-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 26px;
    opacity: 0.9;
}

.ps-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 10px;
}
.ps-image-wrap::before {
    content: "";
    position: absolute;
    top: -3px;
    left: calc(50% - 124px); 
    width: 100%;
    max-width: 294px;
    height: 100%;
    max-height: 200px;
    background: var(--white);
    border-radius: 16px;
    z-index: -1;
    transform: rotate(-7deg);
}
.ps-image-wrap.reverse::before { transform: rotate(-7deg); }
.ps-image-wrap img {
    border-radius: 16px;
    width: 100%;
    max-width: 294px;
    height: auto;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .ps-title { font-size: 32px; }
    .ps-box { padding: 40px 30px; }
}

@media (max-width: 768px) {
    .ps-box { padding: 36px 26px; }
    .ps-first-col { width: 100%;}
    .ps-sec-col { width: 100%;}
    .problem-solution { padding: 50px 0; }
    .ps-box { padding: 40px 20px; }
    
    .ps-grid {
        flex-direction: column;
        gap: 60px;
    }
    
    .ps-first-col .ps-image-wrap { order: 2; margin-top: 20px; }
    .ps-first-col .ps-text { display: flex; flex-direction: column; align-items: center; justify-content: center }

    .ps-sec-col { flex-direction: column-reverse; gap: 30px; height: auto; }
    .ps-title { font-size: 26px; margin-bottom: 16px; text-align: center; }
    .ps-script { font-size: 26px; margin-bottom: 16px; }
}

@media (max-width: 450px) {
    .ps-list { margin-bottom: 26px; }
    .ps-list li {
        padding-left: 24px;
        margin-bottom: 5px;
        font-size: 12px;
    }
    .ps-desc {
        font-size: 12px;
        text-align: center; 
    }
    .ps-image-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        padding: 10px;
    }
    .ps-image-wrap::before {
        top: -3px;
        left: calc(50% - 95px); 
        max-width: 222px;
        max-height: 150px;
    }
    .ps-image-wrap img {
        max-width: 222px;
    }
    .ps-sec-col { width: auto;}
}

/* --- СЕКЦІЯ: ДЛЯ КОГО МИ ПРАЦЮЄМО --- */
.for-whom {
    padding: 100px 0 0;
    background: var(--white);
}

.text-violet { color: var(--violet); }

.fw-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 60px;
}

.fw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fw-card {
    background-color: var(--primary-blue);
    border-radius: 16px;
    padding: 30px;
    color: var(--white);
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}
.fw-card:hover { transform: translateY(-5px); }

.fw-card-content { margin-bottom: 40px; }

.fw-card-title {
    font-weight: 700;
    font-size: 20px;
    display: inline;
}

.fw-card-text {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    display: inline;
}

.fw-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 24px;
    padding: 8px 12px;
    border-radius: 8px;
    line-height: 1;
}

@media (max-width: 1024px) {
    .fw-title { font-size: 40px; }
    .fw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .for-whom { padding: 60px 0; }
    .fw-title { font-size: 32px; }
    .fw-grid {
        grid-template-columns: 2fr;
        gap: 8px;
    }
    .fw-card { min-height: auto; padding: 24px; }

    .fw-card {
        padding: 26px;
        flex-direction: row-reverse;
        margin: 0;
        gap: 26px;
        align-items: center;
        justify-content: flex-end;
        min-height: 130px;
    }

    .fw-badge {
        position: relative;
        font-size: 26px;
        right: 0;
        bottom:0;
        padding: 12px;
        border-radius: 8px;
    }
    .fw-card-content { margin-bottom: 0; }
}

@media (max-width: 425px) {
    .fw-card-text {
        font-size: 14px;
    }

    .fw-title { margin-bottom: 48px; }
}

/* --- СЕКЦІЯ: НАШ ПІДХІД --- */
.approach {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden; 
}

.approach-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 58px; 
    text-align: left;
}

.approach-wrap { position: relative; }

.approach-line {
    position: absolute;
    top: 130px; 
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 91px;
    background-color: #B7BFC3;
    z-index: 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px;
    position: relative;
    z-index: 1; 
}

.ap-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0px 4px 20px 0px #2B2C7C40;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 260px;
    gap: 16px;
    justify-content: center;
}

.ap-icon { width: 48px; height: 48px; margin-bottom: 10px; }
.ap-icon img { width: 100%; height: 100%; object-fit: contain; }
.ap-title { font-size: 22px; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.ap-desc { font-size: 16px; color: var(--text-dark); line-height: 1.4; }

.ap-quote-wrapper {
    grid-column: span 2; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.approach-quote {
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 32px;
    color: var(--primary-blue);
    margin: 0;
}
.stickers-image {
    display: block;
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 60px auto 0;
}

@media (max-width: 992px) {
    .approach-title { font-size: 36px; text-align: center; }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ap-quote-wrapper {
        grid-column: span 2;
        margin-top: 20px;
        padding: 0;
    }

    .approach-line {
        height: 140px;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 600px) {
    .approach-title { font-size: 30px; }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .ap-quote-wrapper {
        grid-column: span 1;
        margin-top: 10px;
    }
    
    .approach-quote { font-size: 24px; }
    .approach-line { display: none; }
}

@media (max-width: 480px) {
    .approach-title {
        font-size: 32px;
        text-align: center;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .approach-line {
        display: none;
    }

    .ap-card {
        padding: 24px 16px;
    }

    .approach-quote {
        font-size: 24px;
        margin: 50px 0;
    }
}

/* --- СЕКЦІЯ: ЧОМУ НАС ОБИРАЮТЬ --- */
.why-us {
    background: var(--white);
    padding-bottom: 20px;
}

.wu-wrap {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
}

.wu-card {
    flex: 0 0 55%;
    background: var(--white);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0px 4px 20px 0px #2B2C7C40;
    display: flex;
    flex-direction: column;
}

.wu-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.2;
}

.wu-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wu-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wu-num {
    flex-shrink: 0;
    width: 64px;
    height: 52px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
}

.wu-text {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-blue);
    line-height: 1.2;
}

.wu-image {
    flex: 0 0 42%;
    position: relative;
}
.wu-image img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    min-height: 600px; 
}

.wu-mobile-img {
    display: none;
    width: 100%;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}
.wu-mobile-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .wu-text { font-size: 16px; }
    .wu-card {
        max-width: 441px;
    }
    .wu-image { flex: unset; }
}

@media (max-width: 768px) {
    .why-us { padding: 60px 0; }
    .wu-title { font-size: 32px; text-align: center; }
    
    .wu-wrap {
        flex-direction: column;
    }
    
    .wu-card {
        flex: 0 0 100%;
        width: 100%;
        padding: 30px 20px;
        max-width: unset;
    }
    
    .wu-image { display: none; }
    
    .wu-mobile-img { display: block; }
    
    .wu-item { gap: 12px; }
    .wu-num { width: 50px; height: 40px; font-size: 18px; }
}

/* --- СЕКЦІЯ: ДЛЯ КОМПАНІЙ --- */
.companies {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.comp-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    padding-top: 0;
    margin-bottom: 133px;
    text-align: left;
}

.comp-title-background {
    position: absolute;
    height: 183px;
    width: 100%;
    background-image: url('/wp-content/uploads/companyBG.svg');
    background-repeat: repeat-x;
    top: 56px;
}

.comp-top-wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.comp-main-card {
    flex: 1;
    max-width: 588px;
    background-color: var(--primary-blue);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 411px;
}

.comp-main-text {
    width: 60%;
    max-width:160px;
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.text-lime { color: var(--lime-green); }

.comp-img {
    position: absolute;
    right: -6vw;
    bottom: 0;
    width: 60%;
    max-width: 294px;
    height: auto;
    z-index: 1;
    object-fit: contain;
}

.comp-benefits-list {
    flex: 1;
    max-width:486px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.comp-benefit-item {
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 16px;
    padding: 0 30px;
    height: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    transition: transform 0.3s;
}
.comp-benefit-item:hover { transform: translateX(-5px); }

.comp-banner {
    background-color: var(--primary-blue);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
}

.comp-banner-text {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.btn-white {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
}
.btn-white:hover { background-color: var(--lime-green); }

@media (max-width: 1024px) {
    .comp-title {
        margin-bottom: 91px;
    }

    .comp-top-wrap {
        flex-direction: column;
        gap: 20px;
    }

    .comp-main-card {
        width: 100%;
        max-width: unset;
        min-height: 300px;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    
    .comp-img {
        left: -10px;
        right: auto;
        width: 100%;
        max-width: 227px;
    }
    
    .comp-main-text {
        width: 100%;
        text-align: center;
        max-width: 667px;
        margin-left: auto;
    }

    .comp-benefits-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        max-width: unset;
    }
    .comp-benefit-item {
        min-height: 100px;
    }
}

@media (max-width: 867px) {
    .comp-main-text {
        font-size: 32px;
        max-width: 455px;
    }

    .comp-img {
        max-width: 24vw;
    }
}

@media (max-width: 660px) {
    .comp-main-text {
        font-size: 32px;
        max-width: 455px;
    }

    .comp-img {
        max-width: 24vw;
    }

    .comp-main-card {
        padding: 40px 20px 0 20px;
    }
}

@media (max-width: 571px) {
    .companies { padding: 28px 0; }
    .comp-title { font-size: 32px; text-align: center; margin-bottom: 40px; }

    .comp-main-card {
        padding: 20px 20px 0 20px;
        align-items: center;
        text-align: center;
        min-height: auto;
    }

    .comp-main-text {
        font-size: 20px;
    }

    .comp-img {
        position: relative;
        max-width: 24vw;
    }

    .comp-benefits-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .comp-benefit-item {
        padding: 20px;
        font-size: 16px;
    }

    .comp-banner { padding: 40px 20px; }
    .comp-banner-text { font-size: 18px; margin-bottom: 30px; }
    .btn-white { width: 100%; padding: 16px; font-size: 14px; }

    .comp-title-background {
        height: 109px;
        top: 0;
    }
}

@media (max-width: 390px) {
    .comp-top-wrap {
        margin-bottom: 16px;
    }

    .comp-img {
        max-width: 36vw;
        left: -26px;
    }

    .comp-main-text {
        font-size: 16px;
    }

    .comp-main-card {
        padding: 0px 12px 0 16px;
    }
}

/* --- СЕКЦІЯ: БАНЕР ЗАКЛИКУ (CTA) --- */
.cta-testing {
    background: var(--white);
}

.cta-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    padding: 60px 80px;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.cta-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 30, 0.6);
    z-index: 1;
}

.cta-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.cta-script {
    font-family: 'Caveat', cursive;
    color: var(--white);
    font-size: 32px;
    transform: rotate(-3deg);
}

.cta-title {
    text-align: right;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.3;
    max-width: 600px;
}

.cta-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-cta {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-cta:hover { transform: translateY(-3px); background-color: #35368f; }

@media (max-width: 1024px) {
    .cta-box { padding: 50px 40px; }
    .cta-title { font-size: 28px; }
}

@media (max-width: 768px) {
    .cta-box {
        padding: 40px 20px;
        min-height: auto;
        gap: 40px;
        text-align: center;
    }

    .cta-top {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .cta-title {
        order: 1;
        text-align: center;
        font-size: 24px;
        margin-bottom: 30px;
    }

    .cta-bottom {
        order: 2;
        margin-top: 0;
        width: 100%;
    }
    .btn-cta {
        width: 100%;
        text-align: center;
    }

    .cta-script {
        order: 3;
        margin-top: 30px;
        font-size: 24px;
        transform: rotate(-2deg);
    }
}

@media (max-width: 390px) {
    .cta-box {
        padding: 40px 20px;
        min-height: auto;
        gap: 40px;
        text-align: center;
    }

    .cta-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cta-script {
        margin-top: 0;
        transform: rotate(0deg);
    }
}

/* --- СЕКЦІЯ: НАШІ ЦІНИ --- */
.prices {
    padding: 120px 0;
    background: var(--white);
}

.prices-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 80px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 52px;
}

.price-card {
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0px 4px 20px 0px #2B2C7C40;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    min-height: 200px;
    max-height: 205px;
    cursor: pointer;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-icon {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-icon img {
    height: 100%;
    width: auto;
}

.price-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.price-cost {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-card.corporate {
    grid-column: span 2;
    background-color: #FFE8FE;
}
.price-card.corporate .price-cost {
    font-size: 36px;
}

.price-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    max-width: 180px;
}

.prices-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    flex-direction: column;
}
.star-icon {
    color: var(--violet);
    font-size: 24px;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .prices { padding: 90px 0; }
    .prices-title { font-size: 40px; margin-bottom: 60px; }
    
    .prices-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 24px;
    }

    .price-card {
        min-height: 200px;
    }
    .price-name { font-size: 22px; }
    .price-cost { font-size: 36px; }

    .price-card.image-card {
        order: 1; 
    }

    .price-card.corporate {
        order: 2; 
        grid-column: span 3;
        background-color: #FFE8FE;
    }
    .price-card.corporate .price-cost { font-size: 30px; }
}

@media (max-width: 768px) {
    .prices-title { font-size: 32px; margin-bottom: 40px; }

    .prices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .price-card {
        min-height: 180px;
    }

    .price-icon { height: 32px; }
    .price-name { font-size: 16px; }
    .price-cost { font-size: 22px; }

    .price-card.corporate {
        order: 10;
        grid-column: span 2;
        padding: 20px;
    }
    .price-card.corporate .price-cost { font-size: 24px; }

    .prices-footer {
        flex-direction: column;
        gap: 10px;
        font-size: 16px;
        align-items: center;
    }
}

@media (max-width: 375px){
    .prices { padding: 45px 0; }
}

/* --- СЕКЦІЯ: НАШІ ВИКЛАДАЧІ --- */
.teachers {
    background: var(--white);
}

.teachers-title {
    text-align: left;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 97px;
}

.teacher-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
    gap: 40px;
}

.teacher-row.reverse {
    flex-direction: row-reverse;
}

.t-photo-block {
    flex: 0 0 45%;
    position: relative;
}

.t-bg-shape {
    margin-top: -4.5vw;
}

.t-name {
    font-size: 80px;
    font-weight: 700;
    color: var(--primary-pink);
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    line-height: 1;
}

.t-name-anas {
    color: var(--violet);
}

.t-info-card {
    flex: 0 0 48%;
    background-color: #FFE8FE;
    border-radius: 16px;
    padding: 60px 26px 32px;
    position: relative;
    max-width: 486px;
}

.t-paperclip {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.t-header {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 26px;
    line-height: 1.4;
}

.text-pink-bold {
    color: var(--primary-pink);
}

.t-desc {
    font-size: 22px;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 26px;
    font-weight: 500;
}

.t-quote {
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    color: var(--primary-blue);
}

.t-quote span {
    color: var(--primary-pink);
    font-weight: 700;
    font-style: normal;
}

.teachers-bottom-text {
    margin-bottom: 90px;
    color: var(--primary-blue);
}
.tb-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 26px;
}
.tb-desc {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 15px;
    max-width: 900px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .teacher-row { gap: 30px; align-items: center; }
    
    .t-name { font-size: 60px; top: -10px; }
    
    .t-info-card { padding: 40px 20px 30px; }
}

@media (max-width: 768px) {
    .teachers-title { font-size: 48px; margin-bottom: 90px; }

    .teacher-row {
        flex-direction: column;
        margin-bottom: 60px;
        gap: 20px;
    }

    .teacher-row.reverse {
        flex-direction: column;
    }

    .t-photo-block {
        margin-bottom: 20px;
    }

    .t-name {
        font-size: 64px;
        top: -10px;
        left: 0;
    }

    .t-info-card {
        width: 100%;
    }

    .teachers-bottom-text {
        margin-top: 40px;
    }

    .t-bg-shape {
        margin-top: -8.5vw;
    }
}

/* --- СЕКЦІЯ: ВІДГУКИ (КАРУСЕЛЬ) --- */
.reviews {
    padding: 120px 0;
    overflow: hidden;
}

.reviews-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 60px;
}

.reviews-window {
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.review-card {
    flex: 0 0 calc(50% - 12px);
    margin-right: 24px;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.review-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    display: block;
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

.nav-btn:hover {
    background-color: var(--violet);
}

.nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #ccc;
}

.nav-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 40px;
    height: 4px;
    background-color: #D9D9D9;
    border-radius: 2px;
    transition: 0.3s;
}

.dot.active {
    background-color: var(--primary-blue);
}

@media (max-width: 1024px) {
    .reviews {
        padding: 80px 0;
    }
    .reviews-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 60px 0; 
    }
    .reviews-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .review-card {
        flex: 0 0 100%;
        margin-right: 0;
    }
}

@media (max-width: 500px) {
    .nav-dots {
        gap: 5px;
    }

    .dot {
        width: 20px;
    }
}

@media (max-width: 375px) {
    .reviews {
        padding: 48px 0; 
    }
}

/* --- СЕКЦІЯ: ФОТОГАЛЕРЕЯ (LIFE) --- */
.life-gallery {
    background: var(--white);
}

.gallery-window {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.gallery-item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

@media (max-width: 768px) {
    .gallery-window {
        border-radius: 12px;
        margin-bottom: 30px;
    }
}

/* --- СЕКЦІЯ: КОНТАКТИ --- */
.contacts {
    padding: 120px 0 238px;
    background: var(--white);
}

.contacts-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 60px;
}

.contacts-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.contacts-info {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 18px;
    color: var(--primary-blue);
    opacity: 0.8;
    font-weight: 400;
}

.contact-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.4;
}

a.contact-value {
    text-decoration: none;
    transition: color 0.3s;
}
a.contact-value:hover {
    color: var(--primary-pink);
}

.contacts-visuals {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 486px;
}

.qr-wrap {
    display: flex;
    gap: 20px;
    justify-content: space-between; 
}

.qr-code {
    width: 230px; 
    height: 230px;
    object-fit: contain;
}

.map-wrap {
    width: 100%;
    height: 272px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1024px) {
    .contacts { padding: 90px 0 178px; }
    .contacts-wrap { gap: 30px; align-items: center; }
    
    .contacts-title { margin-bottom: 50px; }
    
    .contacts-info { flex: 1; }
    .contacts-visuals { flex: 1; }

    .contacts-visuals {
        gap: 20px;
        max-width: 441px;
    }
    
    .qr-code { width: 20vw; height: auto; }
}

@media (max-width: 768px) {
    .contacts { padding: 90px 0 128px; }
    .contacts-title { font-size: 32px; margin-bottom: 40px; }

    .contacts-wrap {
        flex-direction: column;
        gap: 50px;
    }

    .contacts-info {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 30px;
    }
    
    .contact-label { font-size: 16px; }
    .contact-value { font-size: 18px; }

    .contacts-visuals {
        width: 100%;
        gap: 40px;
    }

    .qr-wrap {
        justify-content: center;
        gap: 15px;
    }
    .qr-code { width: 42vw; }
    .map-wrap { height: 250px; }
}

@media (max-width: 375px) {
    .contacts { padding: 90px 0 98px; }
}

/* --- ОНОВЛЕННЯ ФУТЕРА ДЛЯ LANDING PAGE --- */
.site-footer {
    background-color: var(--primary-blue) !important;
    color: var(--white);
    margin-top: 0;
    padding: 80px 0 60px 0;
    overflow: hidden;
}

.footer-slogan {
    text-align: right;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer-col-logo {
    flex: 0 0 20%;
}
.footer-logo img {
    width: 200px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1); 
}

.footer-col-nav {
    flex: 0 0 20%;
}
.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-nav a {
    font-size: 16px;
    font-weight: 500;
    opacity: 1;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}
.footer-nav a:hover {
    color: var(--primary-pink);
}

.footer-col-info {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-address {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.footer-icon-pin {
    font-size: 24px;
    color: var(--primary-pink);
    margin-top: -2px;
}
.footer-address-text {
    font-size: 16px;
    line-height: 1.5;
}

.footer-col-contacts {
    flex: 0 0 25%;
    display: flex;
    gap: 20px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: transform 0.3s;
}
.social-btn:hover { transform: scale(1.1); }
.btn-insta { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.btn-tele { background-color: #0088cc; }

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-header {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}
.footer-phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}
.footer-email {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .site-footer {
        padding: 60px 0;
    }
    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
    }
    .footer-col-logo {
        flex: 0 0 100%;
        order: 1;
        margin-bottom: 20px;
    }
    .footer-col-nav {
        flex: 0 0 30%;
        order: 2;
    }
    .footer-col-info {
        flex: 0 0 30%;
        order: 3;
    }
    .footer-col-contacts {
        flex: 0 0 30%;
        order: 4;
    }
    .footer-slogan {
        text-align: right;
        margin-bottom: 80px;
    }

    .footer-contact-details {
        display: none;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 50px 0 40px 0;
        text-align: center;
    }

    .footer-slogan {
        text-align: center;
        font-size: 24px;
        margin-top: 0;
        margin-bottom: 26px;
        line-height: 1.3;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .footer-col-nav {
        order: 1;
        width: 100%;
    }
    .footer-nav ul {
        align-items: center;
        gap: 20px;
    }

    .footer-col-info {
        order: 3;
        width: 100%;
        align-items: center;
        gap: 20px;
    }
    .footer-address {
        justify-content: center;
    }

    .footer-col-contacts {
        order: 2;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 30px;
    }
    
    .footer-socials {
        flex-direction: row;
        order: 2;
        gap: 20px;
    }
    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .footer-header {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-col-logo {
        order: 10;
        margin-top: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .footer-logo img {
        width: 180px;
    }
}

@media (max-width: 450px) {
    .footer-slogan {
        font-size: 16px;
        font-weight: 700;
    }
}

