/* ================================
   CSS RESET & BASE STYLES
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #F9F7F1;
    background-color: #3E2C41;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ================================
   COLOR VARIABLES
   ================================ */

:root {
    --midnight-plum: #3E2C41;
    --honey-gold: #FEC260;
    --arctic-white: #F9F7F1;
    --cool-cyan: #6FB3B8;
    --earth-gray: #A89F91;
    
    --gradient-primary: linear-gradient(135deg, var(--midnight-plum) 0%, #4A3355 100%);
    --gradient-gold: linear-gradient(135deg, var(--honey-gold) 0%, #FFD280 100%);
    --gradient-cyan: linear-gradient(135deg, var(--cool-cyan) 0%, #7FC3C8 100%);
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--arctic-white);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    color: var(--arctic-white);
    opacity: 0.9;
    margin-bottom: 1rem;
}

a {
    color: var(--cool-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--honey-gold);
    transform: translateY(-1px);
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ================================
   COOKIE BANNER
   ================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 1rem;
    border-top: 2px solid var(--honey-gold);
    z-index: 1000;
    animation: fadeInUp 0.5s ease;
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-cookie-accept {
    background: var(--gradient-gold);
    color: var(--midnight-plum);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cookie-policy-link {
    color: var(--cool-cyan);
    font-size: 0.9rem;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(62, 44, 65, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(254, 194, 96, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--arctic-white);
}

.logo-img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--arctic-white);
    font-weight: 500;
    opacity: 0.9;
    position: relative;
}

.nav-link:hover {
    opacity: 1;
    color: var(--honey-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--honey-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    background: var(--gradient-gold);
    color: var(--midnight-plum);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--midnight-plum);
}

/* ================================
   MAIN CONTENT
   ================================ */

.main-content {
    padding-top: 80px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.6s ease;
}

.section-title.centered::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   HERO SECTION
   ================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/hero-pattern.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow-x: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-text {
    animation: fadeInLeft 0.8s ease;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--midnight-plum);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    color: var(--midnight-plum);
}

.btn-secondary {
    background: transparent;
    color: var(--arctic-white);
    padding: 1rem 2rem;
    border: 2px solid var(--cool-cyan);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--cool-cyan);
    color: var(--midnight-plum);
    transform: translateY(-3px);
}

.hero-image {
    animation: fadeInRight 0.8s ease;
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 194, 96, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--honey-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--arctic-white);
    font-weight: 500;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    animation: fadeInLeft 0.6s ease;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 2rem;
    filter: grayscale(0.2);
}

.feature-text h3 {
    color: var(--honey-gold);
    margin-bottom: 0.5rem;
}

.about-image {
    animation: fadeInRight 0.6s ease;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* ================================
   ADVANTAGES SECTION
   ================================ */

.advantages-section {
    background: var(--gradient-primary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(254, 194, 96, 0.2);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease;
    backdrop-filter: blur(10px);
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-strong);
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.advantage-svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.advantage-title {
    color: var(--honey-gold);
    margin-bottom: 1rem;
}

.advantage-description {
    opacity: 0.9;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services-section {
    background: rgba(255, 255, 255, 0.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    animation: fadeInUp 0.6s ease;
}

.service-card.featured {
    border: 2px solid var(--honey-gold);
    background: rgba(254, 194, 96, 0.1);
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--midnight-plum);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-title {
    color: var(--honey-gold);
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-from {
    font-size: 0.9rem;
    color: var(--earth-gray);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--arctic-white);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cool-cyan);
    font-weight: 700;
}

.btn-service {
    display: block;
    text-align: center;
    background: var(--gradient-cyan);
    color: var(--midnight-plum);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--midnight-plum);
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/cta-pattern.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow-x: hidden;
}

.cta-content {
    animation: fadeInLeft 0.6s ease;
}

.cta-title {
    margin-bottom: 1.5rem;
    color: var(--arctic-white);
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--gradient-gold);
    color: var(--midnight-plum);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    color: var(--midnight-plum);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--arctic-white);
    padding: 1rem 2rem;
    border: 2px solid var(--cool-cyan);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--cool-cyan);
    color: var(--midnight-plum);
    transform: translateY(-3px);
}

.cta-image {
    animation: fadeInRight 0.6s ease;
}

.cta-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials-section {
    background: rgba(255, 255, 255, 0.02);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: var(--honey-gold);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--earth-gray);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--honey-gold);
    font-size: 1.2rem;
}

/* ================================
   ORDER FORM SECTION
   ================================ */

.order-section {
    background: var(--gradient-primary);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-errors {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.3s ease;
}

.form-errors h3 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.form-errors ul {
    list-style: none;
}

.form-errors li {
    color: #ff6b6b;
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.form-errors li::before {
    content: '⚠';
    position: absolute;
    left: 0;
}

.order-form {
    animation: fadeInUp 0.6s ease;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(254, 194, 96, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-card.full-width {
    grid-column: 1 / -1;
}

.form-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.form-label {
    display: block;
    color: var(--honey-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--arctic-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--honey-gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(254, 194, 96, 0.2);
}

.form-input::placeholder {
    color: var(--earth-gray);
}

/* Исправляем проблему с выпадающим списком */
.form-select option {
    background: var(--midnight-plum);
    color: var(--arctic-white);
    padding: 0.5rem;
}

.form-select option:checked,
.form-select option:hover {
    background: var(--honey-gold);
    color: var(--midnight-plum);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--arctic-white);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--cool-cyan);
    border-radius: 4px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--cool-cyan);
    border-color: var(--cool-cyan);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--midnight-plum);
    font-weight: 700;
    font-size: 0.8rem;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--midnight-plum);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    animation: pulse 0.6s ease;
}

/* ================================
   CONTACT SECTION - УЛУЧШЕННЫЙ ДИЗАЙН
   ================================ */

.contact-section {
    background: linear-gradient(135deg, var(--midnight-plum) 0%, #2A1F31 50%, var(--midnight-plum) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(254, 194, 96, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(111, 179, 184, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    overflow-x: hidden;
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.6s ease;
    color: var(--arctic-white);
}

.contact-section .section-title.centered::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInLeft 0.6s ease;
    width: 100%;
}

.contact-item-large {
    padding: 2rem 1.5rem;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(254, 194, 96, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.contact-item-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.contact-item-large:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--honey-gold);
}

.contact-item-large:hover::before {
    width: 8px;
}

.contact-icon-large {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--cool-cyan);
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--honey-gold);
    text-decoration: underline;
}

.contact-hours {
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
}

.map-container {
    animation: fadeInRight 0.6s ease;
    position: relative;
    width: 100%;
}

.map-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
    background: var(--gradient-primary);
    width: 100%;
}

.map-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.map-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.map-placeholder:hover .map-image {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(62, 44, 65, 0.95));
    padding: 2rem 1.5rem 1.5rem;
    color: var(--arctic-white);
    text-align: center;
    backdrop-filter: blur(10px);
}

.map-overlay p {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--honey-gold);
}

.map-overlay span {
    color: var(--arctic-white);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Добавляем эффект "пульсации" для иконок */
@keyframes iconPulse {
    0%, 100% { 
        box-shadow: var(--shadow-medium);
    }
    50% { 
        box-shadow: var(--shadow-strong), 0 0 20px rgba(254, 194, 96, 0.4);
    }
}

.contact-item-large:hover .contact-icon-large {
    animation: iconPulse 2s infinite;
}

/* ================================
   FOOTER
   ================================ */

.main-footer {
    background: var(--gradient-primary);
    border-top: 1px solid rgba(254, 194, 96, 0.2);
    margin-top: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
    width: 100%;
    overflow-x: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--honey-gold);
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--arctic-white);
}

.footer-description {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--arctic-white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--honey-gold);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
    opacity: 0.8;
}

.footer-domain {
    margin-top: 0.5rem;
    color: var(--earth-gray);
    font-size: 0.9rem;
}

/* ================================
   THANK YOU PAGE
   ================================ */

.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
}

.thankyou-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.thankyou-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.thankyou-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.thankyou-title {
    color: var(--honey-gold);
    margin-bottom: 1.5rem;
}

.thankyou-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    color: var(--arctic-white);
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(254, 194, 96, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--midnight-plum);
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--honey-gold);
    margin-bottom: 0.5rem;
}

.contact-urgent {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(111, 179, 184, 0.3);
}

.contact-urgent h3 {
    color: var(--cool-cyan);
    margin-bottom: 1rem;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   LEGAL PAGES
   ================================ */

.legal-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    padding-top: 80px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease;
}

.legal-content h1 {
    color: var(--honey-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--earth-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--cool-cyan);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--honey-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--honey-gold);
    margin: 1rem 0;
}

.legal-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    /* Открепляем шапку для мобильной версии */
    .main-header {
        position: relative;
        background: var(--gradient-primary);
        border-bottom: 1px solid rgba(254, 194, 96, 0.2);
    }
    
    /* Убираем отступ сверху, так как шапка больше не фиксированная */
    .main-content {
        padding-top: 0;
    }
    
    /* Исправляем навигацию для мобильных */
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    /* Мобильная верстка секций */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-container {
        padding: 2rem 1rem;
    }
    
    /* Убираем переполнение контента */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Исправляем размеры для мобильных */
    .hero-container,
    .cta-container {
        padding: 0 1rem;
    }
    
    /* Убираем трансформации которые могут вызывать overflow */
    .service-card.featured {
        transform: none;
    }
    
    .advantage-card:hover,
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    /* Исправляем кнопки для тач-устройств */
    .btn-primary,
    .btn-secondary,
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-service,
    .btn-header,
    .btn-submit {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }
}
