/*
Theme Name: FreshClean
Theme URI: https://freshclean.ru
Author: Grok
Description: Премиальная тема для химчистки мягкой мебели в Москве
Version: 2.0
*/

:root {
    --bg: #f8f9f7;
    --card: #ffffff;
    --text: #1f2928;
    --muted: #5a6a68;
    --brand: #3eb8a3;
    --brand-dark: #1e8b7a;
    --accent: #f4a261;
    --soft: #e6f4f1;
    --line: #dce9e7;
    --radius: 28px;
    --radius-sm: 18px;
    --shadow: 0 20px 50px rgba(30, 139, 122, 0.12);
    --shadow-hover: 0 30px 70px rgba(30, 139, 122, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 17px;
}

/* CONTAINER */
.container {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
}

/* HERO */
.hero {
    padding: 120px 0 140px;
    background: linear-gradient(135deg, #f8f9f7 0%, #e6f4f1 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    font-size: 68px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 20px 0 28px;
    font-weight: 900;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 21px;
    color: var(--muted);
    max-width: 580px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 9999px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
    box-shadow: 0 16px 40px rgba(30, 139, 122, 0.35);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(30, 139, 122, 0.45);
}

.btn-secondary {
    background: white;
    border: 2px solid var(--line);
    color: var(--brand-dark);
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--soft);
    border-color: var(--brand);
}

.phone-btn strong {
    font-size: 18px;
}

.trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255,255,255,0.85);
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-weight: 700;
    font-size: 15px;
    color: var(--brand-dark);
}

/* HERO IMAGE */
.hero-image-wrapper img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

/* SECTION STYLES */
section {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    font-weight: 900;
}

.section-head p {
    font-size: 20px;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-body p {
    color: var(--muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 24px;
    font-weight: 900;
    color: var(--brand-dark);
    margin-top: auto;
}

/* WORKS */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.work-card {
    background: var(--card);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.work-image {
    position: relative;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.06);
}

.work-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    color: var(--brand-dark);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.work-body {
    padding: 32px;
}

.work-body h3 {
    font-size: 26px;
    margin-bottom: 14px;
}

.work-body p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.work-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 15px;
    color: var(--muted);
    font-weight: 600;
}

/* FEEDBACK */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.review {
    background: var(--card);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.review:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.stars {
    color: #f4a261;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.review p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 24px;
}

.review strong {
    display: block;
    color: var(--text);
    font-weight: 700;
}

/* ORDER SECTION */
#order {
    background: var(--soft);
}

/* FOOTER */
.footer {
    background: #1f2928;
    color: #a3b8b4;
    padding: 80px 0 40px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 52px;
    }
    
    .services-grid,
    .works-grid,
    .feedback-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .section-head h2 {
        font-size: 42px;
    }
    

/* ====================== BENEFITS SECTION ====================== */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9f7 0%, #f0f7f4 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3eb8a3, #2d9e8c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(62, 184, 163, 0.15);
    border-color: #3eb8a3;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 42px;
    margin-bottom: 18px;
    display: block;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15);
}

.benefit-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2928;
}

.benefit-card p {
    color: #5a6a68;
    line-height: 1.55;
    font-size: 15.8px;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .benefits {
        padding: 80px 0;
    }
    
    .benefit-card {
        padding: 28px 24px;
    }
    
    .benefits-grid {
        gap: 18px;
    }
}






    /* ====================== SCROLL ANIMATIONS ====================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Разные типы анимаций */
.hero-content.animate-on-scroll,
.section-head.animate-on-scroll {
    transform: translateY(30px);
}

.hero-image-wrapper.animate-on-scroll {
    transform: scale(0.92);
}

.hero-image-wrapper.animate-on-scroll.visible {
    transform: scale(1);
}

/* Ступенчатая анимация для карточек */
.service-card.animate-on-scroll,
.work-card.animate-on-scroll,
.review.animate-on-scroll {
    transition-delay: 0.1s;
}

/* Дополнительные красивые эффекты */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-image img,
.hero-image-wrapper img {
    transition: transform 0.7s ease;
}

/* Плавное появление секций */
section {
    overflow: hidden;
}
    .btn {
        padding: 16px 28px;
        font-size: 16px;
    }
}

/* ====================== FOOTER ====================== */
.footer {
    background: #1a2523;
    color: #a3b8b4;
    padding: 90px 0 40px;
    margin-top: 80px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 700;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #a3b8b4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #3eb8a3;
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    color: #3eb8a3;
    display: block;
    line-height: 1;
}

.logo-sub {
    font-size: 14px;
    font-weight: 700;
    color: #7ed6c5;
    letter-spacing: 1px;
}

.footer-phone {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-phone:hover {
    color: #3eb8a3;
}

.social-icons a {
    font-size: 28px;
    margin-right: 16px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.3);
}

.footer-bottom {
    border-top: 1px solid #2e3f3c;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #7a8f8b;
}

.footer-bottom small {
    display: block;
    margin-top: 8px;
    font-size: 13px;
}

/* Адаптивность */
@media (max-width: 980px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 640px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* ====================== PREMIUM HEADER ====================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: all 0.4s ease;
}

.header-top-bar {
    background: #1e8b7a;
    color: white;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header-main {
    padding: 20px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 36px;
    font-weight: 900;
    color: var(--brand-dark);
}

.logo-sub {
    font-size: 14px;
    color: var(--brand);
    font-weight: 700;
}

.desktop-nav {
    display: flex;
    gap: 10px;
}

.nav-link {
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.nav-link:hover {
    background: var(--soft);
    color: var(--brand-dark);
}

.header-phone {
    font-weight: 800;
    font-size: 18px;
    color: var(--brand-dark);
    text-decoration: none;
}

.premium-cta {
    padding: 14px 28px;
    font-weight: 800;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #1e8b7a;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1200;
    transition: 0.4s ease;
    padding: 30px;
}

.mobile-menu.active {
    left: 0;
}

/* Адаптив */
@media (max-width: 980px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
}

/* ====================== FLOATING BUTTON ====================== */
.floating-calc-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 24px 14px 18px;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(62, 184, 163, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    animation: pulse 2.5s infinite;
}

.floating-calc-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(62, 184, 163, 0.5);
}

.floating-icon {
    font-size: 24px;
    line-height: 1;
}

.floating-text {
    white-space: nowrap;
}

/* Пульсация */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(62, 184, 163, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(62, 184, 163, 0); }
    100% { box-shadow: 0 0 0 0 rgba(62, 184, 163, 0); }
}

/* Адаптив */
@media (max-width: 768px) {
    .floating-calc-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px 12px 16px;
        font-size: 15px;
    }
    
    .floating-text {
        font-size: 15px;
    }
}

/* ====================== МОЩНЫЕ АНИМАЦИИ (Varyag Style) ====================== */
.animate-on-scroll {
    opacity: 0 !important;
    transform: translateY(100px) !important;
    transition: all 1.1s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}

.animate-on-scroll.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Для карточек услуг и работ */
.service-card.animate-on-scroll,
.work-card.animate-on-scroll,
.review.animate-on-scroll {
    opacity: 0 !important;
    transform: translateY(80px) !important;
}

.service-card.animate-on-scroll.visible,
.work-card.animate-on-scroll.visible,
.review.animate-on-scroll.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Parallax изображения */
.parallax-img {
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-card:hover .parallax-img,
.work-card:hover .parallax-img {
    transform: scale(1.12) !important;
}

.hidden {
    display: none !important;
}

/* ====================== PREMIUM MOBILE-FIRST CALCULATOR ====================== */

.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 12px;
    overflow-y: auto;
}

.popup-overlay.active {
    display: flex;
}

.popup {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 460px;
    padding: 24px 20px;
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Заголовки */
.popup h2 {
    font-size: 23px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.popup p {
    text-align: center;
    color: #5a6a68;
    font-size: 15.8px;
    margin-bottom: 20px;
}

/* Услуги */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 18px 0 24px;
}

.service-btn {
    padding: 14px 8px;
    background: #f8f9f7;
    border: 2px solid #e5e9e7;
    border-radius: 16px;
    cursor: pointer;
    font-size: 14.8px;
    font-weight: 600;
    min-height: 64px;
}

.service-btn.active {
    background: #3eb8a3;
    color: white;
    border-color: #3eb8a3;
}

/* Параметры */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 16px 0 22px;
}

.option-btn {
    padding: 14px;
    background: #f8f9f7;
    border: 2px solid #e5e9e7;
    border-radius: 16px;
    font-size: 15.2px;
}

/* Корзина и кнопки */
.cart-section {
    padding: 16px;
    background: #f8f9f7;
    border-radius: 18px;
    margin: 20px 0;
}

.full-width {
    padding: 16px;
    font-size: 17px;
    font-weight: 800;
    border-radius: 16px;
}

/* Поля ввода */
.popup input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e9e7;
    border-radius: 16px;
    font-size: 16px;
    margin-bottom: 12px;
}

/* ====================== МОБИЛЬНАЯ АДАПТАЦИЯ ====================== */
@media (max-width: 768px) {
    .popup {
        padding: 22px 18px;
        max-height: 90vh;
    }

    .service-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }
}

@media (max-width: 480px) {
    .popup {
        padding: 20px 16px;
        max-width: 98%;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .service-btn {
        min-height: 58px;
        font-size: 14.5px;
    }

    .popup h2 {
        font-size: 21.5px;
    }
}

/* Hero Title - мягкий и приятный цвет */
.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1.2px;
    color: #1f2a28;           /* Мягкий тёмно-зелёный / глубокий серо-зелёный */
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
        letter-spacing: -0.8px;
    }
}

/* Дополнительно можно сделать ещё мягче */
.hero h1 {
    color: #23312e;   /* Вариант 1 - мягкий */
    /* color: #1c2926; */   /* Вариант 2 - ещё теплее */
}

/* ====================== ORDER SECTION ====================== */
.order-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9f7 0%, #e6f4f1 100%);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.order-form {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

.form-header h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16.2px;
}

.check {
    color: #3eb8a3;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    flex-shrink: 0;
}

.calc-button-wrapper {
    margin: 32px 0;
}

.big-phone {
    font-size: 28px;
    font-weight: 800;
    color: #1f2928;
    text-decoration: none;
    display: block;
    margin: 12px 0 8px;
}

.schedule {
    color: #5a6a68;
    font-size: 15px;
}

/* Мобильная версия */
@media (max-width: 980px) {
    .order-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .order-form {
        padding: 32px 28px;
    }
}

/* ====================== УЛУЧШЕННАЯ ФОРМА ====================== */
.order-form {
    background: white;
    padding: 42px 38px;
    border-radius: 26px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1f2928;
}

.form-header p {
    color: #5a6a68;
    font-size: 16.2px;
}

/* ====================== КРАСИВАЯ CONTACT FORM 7 ====================== */

.form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-wrapper .wpcf7-form input[type="text"],
.form-wrapper .wpcf7-form input[type="email"],
.form-wrapper .wpcf7-form input[type="tel"],
.form-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e5e9e7;
    border-radius: 16px;
    font-size: 16.5px;
    transition: all 0.3s ease;
}

.form-wrapper .wpcf7-form input:focus,
.form-wrapper .wpcf7-form textarea:focus {
    border-color: #3eb8a3;
    box-shadow: 0 0 0 4px rgba(62, 184, 163, 0.12);
    outline: none;
}

.form-wrapper .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #3eb8a3, #2da18f);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 17.5px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.form-wrapper .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(62, 184, 163, 0.3);
}

/* Сообщения об успехе/ошибке */
.wpcf7-response-output {
    padding: 16px;
    border-radius: 12px;
    margin-top: 10px;
    font-weight: 500;
}

/* ====================== КРАСИВАЯ ЧИСТАЯ ФОРМА ====================== */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e5e9e7;
    border-radius: 16px;
    font-size: 16.5px;
    transition: all 0.3s ease;
}

.custom-form input:focus,
.custom-form textarea:focus {
    border-color: #3eb8a3;
    box-shadow: 0 0 0 4px rgba(62, 184, 163, 0.12);
}

.custom-form textarea {
    resize: vertical;
    min-height: 110px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #6b8079;
}

/* ====================== LUXURY PREMIUM HEADER ====================== */

.site-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1100;
}

.header-top-bar {
    background: linear-gradient(90deg, #1f2928, #2d3a37);
    color: white;
    font-size: 13.8px;
    padding: 9px 0;
}

/* Main Header */
.header-main {
    padding: 20px 0;
}

.logo-text {
    font-size: 29px;
    font-weight: 900;
    letter-spacing: -1.1px;
}

.logo-sub {
    font-size: 12.5px;
    color: #3eb8a3;
    font-weight: 500;
}

/* Навигация */
.desktop-nav .nav-link {
    font-weight: 600;
    color: #1f2928;
    padding: 6px 0;
    position: relative;
}

.desktop-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: #3eb8a3;
    transition: width 0.4s ease;
}

.desktop-nav .nav-link:hover:after,
.desktop-nav .highlight:after {
    width: 100%;
}

.highlight {
    color: #3eb8a3;
    font-weight: 700;
}

/* Кнопка "Заказать химчистку" */
.main-cta {
    background: linear-gradient(135deg, #3eb8a3, #2a9c8a);
    color: white;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16.2px;
    box-shadow: 0 10px 30px rgba(62, 184, 163, 0.35);
    transition: all 0.4s ease;
}

.main-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(62, 184, 163, 0.45);
}

/* Мобильная адаптация */
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 768px) {
    .header-main { padding: 14px 0; }
    .logo-text { font-size: 24px; }
    .main-cta { padding: 12px 24px; font-size: 15.5px; }
}

/* ====================== КОМПАКТНЫЙ HEADER БЕЗ УМЕНЬШЕНИЯ ШРИФТА ====================== */

@media (max-width: 768px) {

    /* Топбар — уменьшаем высоту, но шрифт оставляем */
    .header-top-bar {
        padding: 5px 0 !important;
    }

    .top-bar-inner {
        gap: 6px !important;
        line-height: 1.15 !important;
    }

    /* Основная шапка — сильно уменьшаем отступы */
    .header-main {
        padding: 8px 0 !important;
    }

    .header-inner {
        padding: 0 12px !important;
    }

    /* Логотип — шрифт не трогаем, только вертикальные отступы */
    .logo-text {
        font-size: 26px !important;     /* оставляем почти прежний */
    }

    .logo-sub {
        font-size: 11.5px !important;
        margin-top: -2px !important;
    }

    /* Телефон */
    .header-phone {
        font-size: 17px !important;
        padding: 6px 12px !important;
    }

    /* Главная кнопка "Заказать химчистку" */
    .main-cta {
        padding: 10px 24px !important;
        font-size: 16px !important;
    }

    /* Гамбургер */
    .hamburger {
        padding: 6px !important;
    }
}

/* Ещё чуть плотнее для очень маленьких экранов */
@media (max-width: 480px) {
    .header-top-bar {
        padding: 4px 0 !important;
    }

    .header-main {
        padding: 7px 0 !important;
    }

    .logo-text {
        font-size: 24px !important;
    }
}

/* ====================== МОБИЛЬНАЯ КОМПОНОВКА HEADER ====================== */

@media (max-width: 768px) {

    .header-main {
        padding: 12px 0;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }

    /* Логотип слева */
    .premium-logo {
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 36px;
    }

    .logo-sub {
        font-size: 15px;
    }

    /* Блок с телефоном и кнопкой */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
        width: 100%;
        margin-top: 8px;
    }

    /* Телефон */
    .header-phone {
        font-size: 16.5px;
        white-space: nowrap;
        order: 1;
    }

    /* Кнопка "Заказать химчистку" */
    .main-cta {
        order: 2;
        padding: 11px 24px;
        font-size: 15.5px;
        white-space: nowrap;
    }

    /* Если экран совсем маленький — телефон и кнопка в одну строку */
    @media (max-width: 480px) {
        .header-actions {
            gap: 8px;
        }
        
        .main-cta {
            padding: 10px 20px;
            font-size: 15px;
        }
    }
}