/* ========================================
   Specialist - Клининговая компания
   ======================================== */

/* --- Сброс и базовые стили --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-gradient: linear-gradient(135deg, #ffa05d 0%, #ff6a00 100%);
    --primary-hover: linear-gradient(135deg, #ffa05d 48%, #ff3200 100%);
    --text-dark: #222222;
    --text-gray: #525252;
    --text-light: #8a8a8a;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --font-main: 'Montserrat', Arial, sans-serif;
    --container-width: 1200px;
    --header-height: 70px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    padding-top: var(--header-height);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Типографика --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h1 { font-size: 48px; }
h2 { font-size: 42px; }
h3 { font-size: 20px; }

/* --- Кнопки --- */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: var(--primary-gradient);
    color: var(--white);
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ff6a00;
    color: #ff6a00;
}

.btn-outline:hover {
    background: #ff6a00;
    color: var(--white);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.header__logo {
    display: flex;
    align-items: center;
}

/* New logo style - no background */
.new-logo {
    height: 45px;
    width: auto;
    display: block;
}

.header__nav {
    display: flex;
    gap: 35px;
}

.header__nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header__nav a:hover {
    color: #ff6a00;
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header__phone {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

.header__btn {
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Мобильное меню */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.header__burger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
    padding: 100px 0;
    color: var(--white);
}

.hero--main {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/hero-bg.jpg') center/cover;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.hero__content {
    max-width: 1000px;
}

.hero__pretitle {
    font-size: 14px;
    font-weight: 600;
    color: #ffa05d;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero__title {
    font-size: 72px;
    margin-bottom: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero__subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero__slogan {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    line-height: 1.8;
}

.hero__buttons {
    margin-bottom: 60px;
}

/* Hero Stats */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #ffa05d;
    margin-bottom: 8px;
    line-height: 1;
    min-width: 80px;
    text-align: center;
}

.stat-number--sm {
    font-size: 42px;
    min-width: 100px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 120px;
    line-height: 1.4;
}

/* --- Services --- */
.services {
    padding: 100px 0;
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
}

.services__title {
    font-size: 48px;
    margin-bottom: 0;
}

.services__grid {
    display: grid;
    gap: 25px;
}

.services__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.service-card--text {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card--text:hover {
    border-color: #ff6a00;
    box-shadow: 0 5px 25px rgba(255, 106, 0, 0.15);
    transform: translateY(-3px);
}

.service-card__content {
    padding: 35px;
}

.service-card__title {
    font-size: 22px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-card__text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.services__cta {
    text-align: center;
    margin-top: 50px;
}

/* --- Cleaning Types --- */
.cleaning-types {
    padding: 80px 0;
    background: var(--bg-light);
}

.cleaning-types__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.cleaning-type-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.cleaning-type-card__title {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cleaning-type-card__text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* --- Trust Section --- */
.trust-section {
    padding: 100px 0;
}

.trust-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-section__title {
    font-size: 48px;
    margin-bottom: 25px;
}

.trust-section__subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-transform: uppercase;
}

.trust-section__stat {
    font-size: 20px;
    font-weight: 700;
    color: #ff6a00;
}

.trust-section__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.trust-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    height: 120px;
    overflow: hidden;
}

.trust-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.trust-item:hover img {
    transform: scale(1.05);
}

/* --- Advantages --- */
.advantages {
    padding: 100px 0;
    background: var(--bg-light);
}

.advantages__header {
    text-align: center;
    margin-bottom: 60px;
}

.advantages__title {
    font-size: 48px;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 10px;
    position: relative;
}

.advantage-card__number {
    font-size: 42px;
    font-weight: 700;
    color: rgba(255, 160, 93, 0.3);
    margin-bottom: 15px;
}

.advantage-card__title {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.advantage-card__text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- Economy --- */
.economy {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 160, 93, 0.1) 0%, rgba(255, 106, 0, 0.1) 100%);
}

.economy__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.economy__title {
    font-size: 42px;
    margin-bottom: 25px;
}

.economy__text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* --- Contact Form --- */
.contact-form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form__title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form__group {
    margin-bottom: 20px;
}

.contact-form__input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-main);
    transition: border-color 0.3s ease;
}

.contact-form__input:focus {
    outline: none;
    border-color: #ff6a00;
}

.contact-form__checkbox {
    margin-bottom: 25px;
}

.contact-form__checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
}

.contact-form__checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #ff6a00;
}

.contact-form__submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

/* --- Footer --- */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer__column h4 {
    font-size: 14px;
    margin-bottom: 25px;
    color: #ffa05d;
    letter-spacing: 1px;
}

.footer__column ul li {
    margin-bottom: 12px;
}

.footer__column a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer__column a:hover {
    color: #ffa05d;
}

.footer__contacts-list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer__contacts-list a {
    color: rgba(255, 255, 255, 0.8);
}

.footer__column--cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a:hover {
    color: #ffa05d;
}

/* --- Header Logo Mobile --- */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
    }

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

    .stat-number {
        font-size: 42px;
        min-width: 60px;
    }

    .stat-number--sm {
        font-size: 32px;
        min-width: 80px;
    }

    .stat-label {
        font-size: 11px;
        max-width: 100px;
    }

    .services__grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cleaning-types__grid {
        grid-template-columns: 1fr;
    }

    .trust-section__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }

    .hero__pretitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero--main {
        min-height: 600px;
        padding: 60px 0;
    }

    .hero__title {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__slogan {
        font-size: 14px;
    }

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

    .stat-number {
        font-size: 36px;
        min-width: 50px;
    }

    .stat-number--sm {
        font-size: 28px;
        min-width: 70px;
    }

    .stat-label {
        font-size: 10px;
        max-width: 90px;
    }

    .services__grid--3 {
        grid-template-columns: 1fr;
    }

    .trust-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages__grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }

    .header__inner {
        padding: 0 15px;
        justify-content: center;
    }

    .header__logo {
        flex: 0 0 auto;
    }

    .header__logo-bg {
        padding: 6px 14px;
        border: 2px solid #ffa05d;
    }

    .header__logo-bg img {
        height: 55px;
    }

    .header__nav {
        display: none;
    }

    .header__burger {
        display: block;
    }

    .header__contacts {
        display: none;
    }

    .hero__pretitle {
        font-size: 11px;
    }

    .hero__title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .hero__subtitle {
        font-size: 13px;
    }

    .hero__slogan {
        font-size: 12px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 13px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .trust-section__grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        height: 100px;
    }

    .advantages__title,
    .services-section__title,
    .contact-form__title {
        font-size: 24px;
    }
}

/* --- Mobile Nav --- */
.header__nav--mobile {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    gap: 15px;
}

.header__nav--mobile.active {
    display: flex;
}

.header__nav--mobile a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 1000;
    transition: bottom 0.3s ease;
    border-top: 3px solid #ffa05d;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner__text {
    flex: 1;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner__text a {
    color: #ff6a00;
    text-decoration: underline;
}

.cookie-banner__text a:hover {
    text-decoration: none;
}

.cookie-banner__btn {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

@media (max-width: 768px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner__btn {
        width: 100%;
    }
}
