/*
Theme Name: SvetiYarko
Author: MiMo Code
Description: Тема SvetiYarko - нейрокоучинг
Version: 1.0.0
Text Domain: sveti-yarko
*/

/* === VARIABLES === */
:root {
    --primary: #53b8cc;
    --primary-dark: #3a9eb2;
    --primary-light: #7cc8d5;
    --dark: #333333;
    --text: #555555;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

/* === BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
}
a { color: var(--primary); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-white { color: #fff !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-dark-section { background-color: var(--dark) !important; }
.uppercase { text-transform: uppercase; }
.mb-0 { margin-bottom: 0 !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.pt-50 { padding-top: 50px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pt-30 { padding-top: 30px !important; }
.pb-30 { padding-bottom: 30px !important; }

/* === HEADER === */
.site-header { position: relative; z-index: 100; }
.header-top {
    background: var(--white);
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
}
.header-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header-nav-sticky-placeholder {
    display: none;
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.header-logo img { height: 75px; }
.header-contacts { display: flex; gap: 30px; align-items: center; }
.header-contact { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.header-contact i { color: var(--primary); font-size: 18px; align-self: flex-start; }
.header-contact .label { text-transform: uppercase; font-size: 11px; color: #888; }
.header-contact .value { font-weight: 700; color: var(--dark); margin-left: -2rem;}
.header-socials { display: flex; gap: 10px; }
.header-socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    background: #eee; color: #999; font-size: 14px; transition: all 0.3s;
}
.header-socials a:hover { background: var(--primary); color: #fff; }
.header-nav {
    background: var(--dark);
    padding: 12px 0;
}
.header-nav .container { display: flex; align-items: center; }
.nav-menu { display: flex; list-style: none; gap: 0; flex: 1; }
.nav-menu li a {
    display: block;
    padding: 8px 15px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}
.nav-menu li a:hover { color: var(--primary); }
.nav-toggler {
    display: none;
    background: none; border: none; color: #fff;
    font-size: 24px; cursor: pointer;
}

/* === HERO === */
.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    background: rgba(80,80,80,1);
    color: #fff;
    padding: 6px 15px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 45px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    margin-top: 5rem;

}
.hero-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 35px;
}
.btn-hero {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-hero:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* === ABOUT SECTION === */
.about-section { padding: 50px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.about-photo img { width: 100%; border-radius: 4px; }
.about-subtitle { color: var(--primary); font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
.about-title { font-size: 36px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; }
.about-text { color: var(--text); margin-bottom: 25px; }
.info-card { margin-bottom: 30px; display: flex; gap: 20px; }
.info-card-icon {
    flex-shrink: 0;
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 26px;
}
.info-card h6 { text-transform: uppercase; font-weight: 700; font-size: 22px; margin-bottom: 10px; }
.info-card p { color: var(--text); margin: 0; }

/* === PORTFOLIO / CLIENT LOGOS === */
.portfolio-section { padding: 50px 0 30px; background: var(--white); }
.section-subtitle { color: var(--primary); font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
.section-title { font-size: 36px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; }
.section-desc {     color: var(--primary);  margin-bottom: 30px; font-weight: 600;  font-size: 1.1rem; }
.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}
.logos-grid img { max-width: 150px; height: auto; opacity: 0.7; transition: opacity 0.3s; }
.logos-grid img:hover { opacity: 1; }

/* === STATS === */
.stats-section {
    background: var(--primary);
    padding: 25px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat-item { color: #fff; }
.stat-icon { font-size: 30px; margin-bottom: 10px; opacity: 0.6; }
.stat-number { font-size: 35px; margin-bottom: 0; }
.stat-label { text-transform: uppercase; font-weight: 700; font-size: 11px; margin-bottom: 10px; }
.stat-text { opacity: 0.6; font-size: 13px; }

/* === SPHERES === */
.spheres-section { padding: 50px 0; background: var(--white); }
.spheres-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.sphere-card {
    text-align: center;
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s;
}
.sphere-card:hover { transform: translateY(-3px); }
.sphere-card img { width: 100%; height: 200px; object-fit: cover; }
.sphere-card-body { padding: 20px; }
.sphere-card h3 { text-transform: uppercase; font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.sphere-card p { color: var(--text); font-size: 14px; }

/* === PROBLEMS / REQUESTS === */
.problems-section { padding: 50px 0; background: var(--white); }
.problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.problem-item { margin-bottom: 30px; display: flex; gap: 15px; }
.problem-icon { flex-shrink: 0; color: var(--primary); font-size: 24px; margin-top: 3px; }
.problem-item h6 { font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.problem-item p { color: var(--text); margin: 0; }

/* === PROMO BANNER === */
.promo-section {
    background: var(--primary);
    padding: 30px 0;
}
.promo-grid { display: flex; align-items: center; gap: 30px; }
.promo-img img { width: 200px; border-radius: 4px; }
.promo-text { flex: 1; color: #fff; }
.promo-text h2 { font-size: 26px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.promo-text p { margin-bottom: 15px; }
.btn-promo {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-promo:hover { background: var(--dark); border-color: var(--dark); color: #fff; }

/* === STAGES === */
.stages-section { padding: 50px 0; background: var(--white); }
.stages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stage-item { text-align: center; position:relative;padding-bottom: 2rem;}
.stage-item::after { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 5rem; border-top-width: 10px;    content: "";  display: inline-block;  border-top-style: solid;  border-color: #df69c5; }
.stage-step { color: var(--primary); font-size: 14px; letter-spacing: 2px; font-weight: 700; margin-bottom: 5px; }
.stage-title { font-size: 32px; font-weight: 400; margin-bottom: 10px; }
.stage-text { color: var(--text); }

/* === SERVICES === */
.services-title-section {
    background: var(--primary);
    padding: 25px 0;
    text-align: center;
    color: #fff;
}
.services-title-section .section-subtitle { color: rgba(255,255,255,0.8); font-size: 12px; }
.services-title-section .section-title { color: #fff; margin-bottom: 0; }
.services-section { padding: 50px 0; background: var(--light-bg); }
.services-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.service-card {
    width: 240px;
    text-align: center;
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-3px); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card-body { padding: 15px; }
.service-card h4 { text-transform: uppercase; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.service-card p { color: var(--text); font-size: 12px; margin-bottom: 12px; }
.btn-service {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-service:hover { background: var(--primary); color: #fff; }

/* === PRICING === */
.pricing-title-section { padding: 30px 0; text-align: center; }
.pricing-section { padding: 0 0 50px; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; align-items: stretch; }
.pricing-card {
    background: var(--white);
    border: 2px solid #e7c8e0;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(93, 55, 83, 0.08);
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pricing-card:hover {
    border-color: #df69c5;
    box-shadow: 0 8px 22px rgba(223, 105, 197, 0.18);
    transform: translateY(-3px);
}
.pricing-card.featured {
    border-color: var(--primary);
    margin-top: -20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.pricing-card .subtitle { font-size: 1.2rem; color: var(--text); margin-bottom: 15px; }
.pricing-card .price { font-size: 48px; font-weight: 700; margin-bottom: 5px; color: #df69c5;}
.pricing-card .currency { font-size: 14px; color: var(--text); margin-bottom: 20px; display: block; color: #df69c5;}
.pricing-card .features { list-style: none; text-align: left; margin-bottom: 25px; flex: 1; text-align: center;}
.pricing-card .features li { padding: 8px 0; border-bottom: 1px solid #eee; color: var(--text); }
.pricing-card .features li:last-child { border-bottom: none; }
.pricing-card .features li strong { color: var(--dark); }
.btn-pricing {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}
.btn-pricing:hover { background: transparent; color: var(--primary); }
.btn-pricing-outline {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-pricing-outline:hover { background: var(--primary); color: #fff; }

/* === PROGRAMS === */
.programs-title-section {
    background: var(--primary);
    padding: 25px 0;
    text-align: center;
    color: #fff;
}
.programs-title-section .section-subtitle { color: rgba(255,255,255,0.8); font-size: 12px; }
.programs-title-section .section-title { color: #fff; margin-bottom: 0; }
.programs-section { padding: 40px 0; background: var(--white); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.program-card {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden;
    border-radius: 4px;
}
.program-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.7));
}
.program-card-body { position: relative; z-index: 2; padding: 30px; width: 100%; }
.program-card h5 { font-size: 28px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.program-card p { font-size: 13px; margin-bottom: 15px; opacity: 0.9; }
.btn-program {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-program:hover { background: #fff; color: var(--dark); }

/* === REVIEWS === */
.reviews-title-section { padding: 50px 0 20px; text-align: center; }
.reviews-section { padding: 0 0 50px; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.review-card {
    background: var(--white);
    border: 1px solid rgba(83, 184, 204, 0.45);
    border-radius: 12px;
    padding: 30px 20px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.review-avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    margin: -55px auto 15px;
    overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 700; text-transform: uppercase; margin-bottom: 2px; }
.review-location { color: var(--text); font-size: 12px; margin-bottom: 12px; }
.review-text { color: var(--text); font-size: 13px; line-height: 1.5; }

/* === CONTACT === */
.contact-section {
    position: relative;
    padding: 60px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
}
.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}
.contact-content { position: relative; z-index: 2; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-title { font-size: 36px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; }
.contact-desc { margin-bottom: 25px; }
.contact-block h4 { text-transform: uppercase; font-size: 13px; font-weight: 700; margin-bottom: 15px; }
.contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.contact-item i { font-size: 16px; }
.contact-item a { color: #fff; }
.contact-form { background: rgba(255,255,255,0.1); padding: 30px; border-radius: 4px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
    border-radius: 3px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--primary); }
.contact-form textarea { min-height: 100px; resize: vertical; }
.btn-submit {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-submit:hover { background: var(--primary-dark); }

/* === FOOTER === */
.site-footer {
    background: var(--dark);
    color: #999;
    padding: 20px 0;
    font-size: 12px;
    text-align: center;
}
.footer-content { margin-bottom: 10px; }
.footer-socials { display: flex; justify-content: center; gap: 10px; margin-bottom: 10px; }
.footer-socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: #999; font-size: 14px; transition: all 0.3s;
}
.footer-socials a:hover { background: var(--primary); color: #fff; }
.footer-disclaimer { opacity: 0.6; font-size: 11px; }

/* === SUBPAGE TEMPLATES === */
.subpage-hero {
    background: var(--primary);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}
.subpage-hero h1 { font-size: 42px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; }
.subpage-content { padding: 50px 0; }
.subpage-content .container { max-width: 900px; }
.subpage-content h2 { font-size: 28px; font-weight: 700; margin: 30px 0 15px; text-transform: uppercase; }
.subpage-content h3 { font-size: 22px; font-weight: 700; margin: 25px 0 10px; }
.subpage-content p { color: var(--text); margin-bottom: 15px; line-height: 1.7; }
.subpage-content ul { margin: 15px 0; padding-left: 20px; }
.subpage-content ul li { color: var(--text); margin-bottom: 8px; line-height: 1.6; }
.subpage-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin: 20px 0;
    background: var(--light-bg);
    font-style: italic;
    color: var(--text);
}
.btn-back {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    margin-top: 30px;
    transition: all 0.3s;
}
.btn-back:hover { background: var(--primary-dark); color: #fff; }

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .problems-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.featured { margin-top: 0; }
}
@media (max-width: 768px) {
    .hero-section { display: none; }
    .contact-section {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    }
    .contact-overlay { display: none; }
    .header-contacts { display: none; }
    .nav-toggler { display: block; margin-left: auto; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 10px 0;
        z-index: 999;
    }
    .nav-menu.active { display: flex; }
    .nav-menu li a { padding: 12px 20px; }
    .hero-title { font-size: 28px; }
    .programs-grid { grid-template-columns: 1fr; }
    .spheres-grid { grid-template-columns: 1fr; }
    .stages-grid { grid-template-columns: 1fr; }
    .promo-grid { flex-direction: column; text-align: center; }
    .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
    .logos-grid img { max-width: 100px; }
}
