/* 
==============================================
DOMAIN - STYLES CSS 
Цветовая палитра:
- Основной фон: глубокий индиго (#2E2A4F)
- Акцент 1: ярко-оранжевый коралл (#FF6F4F)
- Акцент 2: неоново-голубой (#3DF0E1)  
- Текст: мягкий бежевый (#F5EAD0)
- Дополнительный фон: теплый серый (#E6E1DC)
==============================================
*/

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #F5EAD0;
    background: linear-gradient(135deg, #2E2A4F 0%, #1a1635 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F5EAD0;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, #FF6F4F, #3DF0E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: #3DF0E1;
}

h3 {
    font-size: 1.8rem;
    color: #FF6F4F;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #2E2A4F 0%, #FF6F4F 100%);
    padding: 20px;
    z-index: 1000;
    border-top: 3px solid #3DF0E1;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
    transition: opacity 0.3s ease;
}

.cookie-banner.hidden {
    opacity: 0;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept {
    background: #3DF0E1;
    color: #2E2A4F;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: #2bc4b5;
    transform: translateY(-2px);
}

.btn-info {
    color: #F5EAD0;
    text-decoration: underline;
    padding: 12px 16px;
    transition: color 0.3s ease;
}

.btn-info:hover {
    color: #3DF0E1;
}

/* === HEADER & NAVIGATION === */
.header {
    background: rgba(46, 42, 79, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 2px solid #FF6F4F;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #3DF0E1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #F5EAD0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #3DF0E1;
    background: rgba(61, 240, 225, 0.1);
}

.btn-cta {
    background: linear-gradient(45deg, #FF6F4F, #3DF0E1);
    color: #2E2A4F !important;
    font-weight: 600;
    padding: 12px 24px !important;
    border-radius: 25px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 79, 0.4);
}

/* === MAIN CONTENT === */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* === SECTIONS === */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, rgba(230, 225, 220, 0.05) 0%, rgba(61, 240, 225, 0.05) 100%);
}

.section:nth-child(odd) {
    background: linear-gradient(135deg, rgba(255, 111, 79, 0.05) 0%, rgba(46, 42, 79, 0.1) 100%);
}

/* === HERO SECTION === */
.hero {
    text-align: center;
    padding: 120px 0;
    background: linear-gradient(135deg, #2E2A4F 0%, #1a1635 50%, #2E2A4F 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FF6F4F" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #E6E1DC;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #FF6F4F, #3DF0E1);
    color: #2E2A4F;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(255, 111, 79, 0.3);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 111, 79, 0.5);
}

/* === CONTENT SECTIONS === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6F4F, #3DF0E1);
    border-radius: 2px;
}

/* === SERVICES GRID === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, rgba(230, 225, 220, 0.1) 0%, rgba(46, 42, 79, 0.2) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(61, 240, 225, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: #3DF0E1;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(61, 240, 225, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FF6F4F;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #3DF0E1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6F4F;
    margin: 20px 0;
}

/* === FEATURES GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px;
    background: rgba(230, 225, 220, 0.08);
    border-radius: 15px;
    border-left: 4px solid #FF6F4F;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-item:hover {
    background: rgba(61, 240, 225, 0.08);
    border-left-color: #3DF0E1;
    transform: translateY(-5px);
}

.feature-item div {
    width: 100%;
}

.feature-item h3,
.feature-item h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 15px;
}

.feature-item p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    margin: 0;
}

.feature-icon {
    font-size: 3rem;
    color: #3DF0E1;
    margin-bottom: 15px;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(61, 240, 225, 0.1) 0%, rgba(255, 111, 79, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(61, 240, 225, 0.2);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: #FF6F4F;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 30px;
}

.testimonial-author {
    font-weight: 600;
    color: #3DF0E1;
}

/* === PROCESS STEPS === */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF6F4F, #3DF0E1);
    color: #2E2A4F;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 20px;
}

.step-title {
    color: #3DF0E1;
    margin-bottom: 15px;
}

/* === FORM SECTION === */
.form-section {
    background: linear-gradient(135deg, rgba(230, 225, 220, 0.1) 0%, rgba(46, 42, 79, 0.3) 100%);
    padding: 80px 0;
    text-align: center;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(230, 225, 220, 0.1);
    padding: 50px 40px;
    border-radius: 25px;
    border: 2px solid #3DF0E1;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #3DF0E1;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 15px;
    background: rgba(245, 234, 208, 0.1);
    color: #F5EAD0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    background: rgba(245, 234, 208, 0.15);
    color: #2E2A4F;
    font-weight: 500;
}

.form-group select option {
    background: #F5EAD0;
    color: #2E2A4F;
    padding: 10px;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3DF0E1;
    background: rgba(245, 234, 208, 0.2);
    box-shadow: 0 0 15px rgba(61, 240, 225, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 25px 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    color: #E6E1DC;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #3DF0E1;
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(45deg, #FF6F4F, #3DF0E1);
    color: #2E2A4F;
    border: none;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 111, 79, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* === CONTACT SECTION === */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: rgba(61, 240, 225, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(61, 240, 225, 0.2);
}

.contact-card a {
    color: #F5EAD0 !important;
    font-weight: 600;
}

.contact-card a:hover {
    color: #3DF0E1 !important;
}

.contact-icon {
    font-size: 3rem;
    color: #FF6F4F;
    margin-bottom: 20px;
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    background: rgba(230, 225, 220, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #3DF0E1;
}

.map-placeholder {
    color: #3DF0E1;
    font-size: 1.2rem;
    text-align: center;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, #1a1635 0%, #2E2A4F 100%);
    padding: 60px 0 30px;
    border-top: 3px solid #FF6F4F;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #3DF0E1;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #E6E1DC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3DF0E1;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, #FF6F4F, #3DF0E1);
    margin: 30px 0;
    border-radius: 1px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #E6E1DC;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.7;
    margin-top: 10px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
    }

    .navbar .container {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .order-form {
        margin: 0 15px;
        padding: 30px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 10px;
    }

    .section {
        padding: 40px 0;
    }

    .service-card,
    .feature-item,
    .testimonial-card {
        padding: 25px 20px;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.hidden { display: none; }
.visible { display: block; }
