/* Base Styles */
:root {
    --color-bg: #F9F9F9;
    --color-accent-1: #EA3A60;
    --color-accent-2: #1E1E2F;
    --color-accent-3: #FDBE34;
    --color-text-primary: #333333;
    --color-text-secondary: #666666;
    --font-main: 'Arial', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    color: var(--color-accent-1);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent-2);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-accent-2);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--color-accent-1), var(--color-accent-3));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(to right, var(--color-accent-1), var(--color-accent-3));
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(234, 58, 96, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(234, 58, 96, 0.4);
    color: white;
}

.btn--large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Header */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 150px;
}

.logo__svg {
    width: 100%;
    height: auto;
}

.nav__list {
    display: flex;
    gap: 20px;
}

.nav__link {
    color: var(--color-text-primary);
    font-weight: 500;
    padding: 5px;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-accent-1), var(--color-accent-3));
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--color-accent-1);
}

.nav__link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    z-index: 110;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: white;
    overflow: hidden;
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero__content {
    flex: 1;
}

.hero__image {
    flex: 1;
}

.hero__image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero__image:hover img {
    transform: perspective(1000px) rotateY(0);
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-accent-2);
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.about__inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about__image {
    flex: 1;
    position: relative;
}

.about__image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__content {
    flex: 1;
}

.about__content h3 {
    font-size: 2rem;
    color: var(--color-accent-2);
    margin-bottom: 20px;
}

.about__content p {
    margin-bottom: 15px;
}

.about__list {
    margin-top: 20px;
    padding-left: 20px;
}

.about__list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent-1);
    font-weight: bold;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: white;
}

.advantages__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: var(--color-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.advantage-card__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-accent-2);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.services__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card__image {
    flex: 0.6;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 0;
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__content {
    flex: 1.4;
    padding: 30px;
}

.service-card__title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-accent-2);
}

.service-card__text {
    margin-bottom: 20px;
}

.service-card__list {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-card__list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent-1);
    font-weight: bold;
}

/* Order Form */
.order-form {
    padding: 80px 0;
    background-color: white;
}

.order-form__inner {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-accent-1);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(234, 58, 96, 0.2);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__group {
    position: relative;
}

.form__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.form__input,
.form__select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(5px);
    color: var(--color-text-primary);
    font-size: 1rem;
}

.form__input:focus,
.form__select:focus {
    outline: 2px solid var(--color-accent-3);
}

.form__group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form__checkbox {
    margin-top: 5px;
}

.form__checkbox-label {
    color: white;
    font-size: 0.9rem;
}

.form__checkbox-label a {
    color: var(--color-accent-3);
    text-decoration: underline;
}

.form__checkbox-label a:hover {
    color: white;
}

.form__group--submit {
    margin-top: 10px;
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--color-bg);
}

.faq__inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item__question {
    margin: 0;
    font-size: 1.1rem;
}

.faq-item__toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%;
    text-align: left;
    color: var(--color-accent-2);
}

.faq-item__icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: var(--transition);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 20px;
}

.faq-item--open .faq-item__answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background-color: var(--color-accent-2);
    color: white;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__info {
    flex: 2;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__description {
    margin-bottom: 20px;
}

.footer__contacts p {
    margin-bottom: 10px;
}

.footer__contacts a {
    color: var(--color-accent-3);
}

.footer__links,
.footer__legal {
    flex: 1;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-accent-1);
}

.footer__nav li {
    margin-bottom: 10px;
}

.footer__nav a {
    color: white;
    opacity: 0.8;
}

.footer__nav a:hover {
    opacity: 1;
    color: var(--color-accent-3);
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
    transition: bottom 0.5s ease;
}

.cookie-consent--show {
    bottom: 0;
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-consent p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero__title {
        font-size: 2.5rem;
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-card__image {
        min-height: 200px;
    }
    
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero__inner,
    .about__inner {
        flex-direction: column;
    }
    
    .hero__image {
        order: -1;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-button,
    .mobile-menu-close {
        font-size: 1.5rem;
        color: var(--color-accent-1);
        text-decoration: none;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav--open {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        text-align: center;
    }
    
    .nav__item {
        margin-bottom: 20px;
    }
    
    .nav__link {
        font-size: 1.2rem;
    }
    
    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .order-form__inner {
        padding: 30px 20px;
    }
}
