* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #ffffff;
}

/* Header Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 6px;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 107, 107, 1);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - with parallax effect */
.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    perspective: 1000px;
}

.hero-parallax-bg {
    position: absolute;
    width: 100%;
    height: 130%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
    transform: translateY(0);
    z-index: 0;
    will-change: transform;
}

/* Прозрачный overlay для улучшения читаемости текста */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Декоративные элементы с градиентами */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: 0;
    box-shadow: 0 0 100px rgba(255, 107, 107, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.btn {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.45);
    letter-spacing: 1.5px;
}

.btn-primary:active {
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.btn-secondary:active {
    transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Header Responsive */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 0 15px;
    }

    .logo {
        font-size: 1.3rem;
        gap: 8px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    nav ul {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }

    nav ul.active {
        max-height: 500px;
    }

    nav ul li {
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 15px 20px;
    }

    nav a::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .hero {
        height: 100vh;
    }

    .hero h1 {
        margin-bottom: 15px;
    }

    .hero .subtitle {
        margin-bottom: 30px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-content {
        padding: 30px 15px;
    }
}

@media (min-width: 769px) {
    .hero {
        height: 100vh;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
    }

    .header-container {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.1rem;
        gap: 5px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    nav ul {
        top: 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .hero .subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 15px 18px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.92);
    color: #fff;
    padding: 14px 20px;
    z-index: 99999 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
}
.cookie-banner .cookie-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}
.cookie-banner p { margin: 0; color: #fff; font-size: 0.95rem; }
.cookie-banner a.cookie-link { color: #ffd1c1; text-decoration: underline; margin-right: 12px; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; align-items: center; }
.cookie-banner .btn { padding: 10px 18px; border-radius: 8px; }

@media (max-width: 720px) {
    .cookie-banner { padding: 12px; }
    .cookie-banner .cookie-container { flex-direction: column; align-items: stretch; text-align: left; gap: 10px; }
    .cookie-banner .cookie-actions { justify-content: flex-end; }
}

/* Reduce cookie banner button size on small screens */
@media (max-width: 480px) {
    .cookie-banner .cookie-actions .btn {
        padding: 6px 10px;
        font-size: 0.85rem;
        min-width: 48px;
        max-width: 110px;
        width: auto;
        border-radius: 8px;
        letter-spacing: 0.6px;
    }
}

/* Further tighten layout so button doesn't push banner height */
@media (max-width: 480px) {
    .cookie-banner { padding: 10px 12px; }
    .cookie-banner .cookie-container p { font-size: 0.95rem; margin-bottom: 6px; }
    .cookie-banner .cookie-actions { gap: 8px; }
}


/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .btn {
        padding: 18px 45px;
        font-size: 1.05rem;
    }
}

/* Benefits Section - MODERN 2026 DESIGN */
.benefits {
    width: 100%;
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    border-radius: 50%;
    z-index: 0;
    animation: float 20s infinite ease-in-out;
}

.benefits::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
    animation: float 25s infinite ease-in-out reverse;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

.benefits-header h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.benefits-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out backwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.15) rotateZ(5deg);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2);
}

.benefit-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.benefit-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffb347);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-accent {
    width: 60px;
}

/* Responsive Benefits */
@media (max-width: 768px) {
    .benefits {
        padding: 70px 15px;
    }

    .benefits-header {
        margin-bottom: 60px;
    }

    .benefits-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .benefits-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .benefit-card {
        padding: 35px 25px;
        border-radius: 16px;
    }

    .benefit-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .benefits {
        padding: 50px 12px;
    }

    .benefits-header {
        margin-bottom: 40px;
    }

    .benefits-header h2 {
        font-size: 1.6rem;
    }

    .benefits-header p {
        font-size: 0.95rem;
    }

    .benefits-grid {
        gap: 15px;
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .benefit-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .benefit-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .benefit-icon {
        font-size: 1.8rem;
    }

    .benefit-card h3 {
        font-size: 1.05rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .benefit-accent {
        display: none;
    }
}

/* Testimonials Section - MODERN 2026 DESIGN */
.testimonials {
    width: 100%;
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    z-index: 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInUp 1s ease-out;
}

.testimonials-header h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.testimonials-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1), box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    animation: fadeInUp 1s ease-out backwards;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }



.testimonial-card:hover {
    transform: translateY(-12px) scale(1.01);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    margin-bottom: 20px;
    font-size: 1.5rem;
    letter-spacing: 5px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.testimonial-card:hover .testimonial-stars {
    transform: scale(1.15) rotate(5deg);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffb347 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.25) rotate(-10deg);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.testimonial-info {
    position: relative;
    z-index: 1;
}

.testimonial-info h4 {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-info h4 {
    color: #ffb347;
}

.testimonial-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-info p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================== */
/* CONTACTS MAP SECTION - MODERN 2026 DESIGN */
/* ============================================== */

.contacts-map-section {
    width: 100%;
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.contacts-map-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    border-radius: 50%;
    z-index: 0;
    animation: float 20s infinite ease-in-out;
}

.contacts-map-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
    animation: float 25s infinite ease-in-out reverse;
}

/* Centered Header for Contacts Section */
.contacts-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease-out;
}

.contacts-header h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contacts-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contacts-map-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.contacts-info-column {
    animation: fadeInUp 1s ease-out;
}

.contacts-map-column {
    animation: fadeInRight 1s ease-out;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contacts-info-wrapper {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    animation: fadeInUp 0.8s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.contact-info-item:hover::before {
    left: 100%;
}

.contact-info-item:nth-child(2) { animation-delay: 0.1s; }
.contact-info-item:nth-child(3) { animation-delay: 0.2s; }
.contact-info-item:nth-child(4) { animation-delay: 0.3s; }
.contact-info-item:nth-child(5) { animation-delay: 0.4s; }

.contact-info-item:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.contact-info-icon {
    font-size: 2.5rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.15) rotateZ(5deg);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-info-content {
    position: relative;
    z-index: 1;
}

.contact-info-content h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.5;
    font-weight: 500;
}

.contact-info-content p:last-child {
    margin-bottom: 0;
}

.contact-info-content a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.contact-info-content a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    transform: translateX(4px);
}

.contacts-cta-button {
    margin-top: 45px;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.contacts-cta-button .btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    color: #667eea;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contacts-cta-button .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.contacts-cta-button .btn:hover::before {
    left: 100%;
}

.contacts-cta-button .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.contacts-cta-button .btn:active {
    transform: translateY(-2px);
}

.yandex-map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: fadeInRight 1s ease-out;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    width: 100%;
    height: auto;
    aspect-ratio: 560 / 400;
    flex-grow: 1;
}

.yandex-map-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

.yandex-map-container > div {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.yandex-map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.yandex-map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

/* Animation Keyframes */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contacts-map-container {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: auto;
    }

    .contacts-header h2 {
        font-size: 2.2rem;
    }

    .contacts-info-wrapper {
        padding: 0;
        height: auto;
    }

    .yandex-map-container {
        aspect-ratio: 560 / 400;
    }
}

@media (max-width: 768px) {
    .contacts-map-section {
        padding: 70px 20px;
    }

    .contacts-header {
        margin-bottom: 60px;
    }

    .contacts-map-container {
        gap: 30px;
        align-items: auto;
    }

    .contacts-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .contacts-header p {
        font-size: 1rem;
    }

    .contact-info-item {
        margin-bottom: 30px;
        padding: 20px;
        gap: 15px;
    }

    .contact-info-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .contact-info-content h3 {
        font-size: 1rem;
        font-weight: 700;
    }

    .contact-info-content p {
        font-size: 0.9rem;
    }

    .contact-info-content a {
        font-size: 0.9rem;
    }

    .yandex-map-container {
        width: 100%;
        aspect-ratio: 560 / 400;
        min-height: 300px;
    }

    .contacts-cta-button .btn {
        padding: 16px 25px;
        font-size: 0.95rem;
        font-weight: 700;
    }

    .contacts-info-column {
        animation: fadeInUp 1s ease-out;
    }

    .contacts-map-column {
        animation: fadeInUp 1s ease-out;
    }
}

@media (max-width: 480px) {
    .contacts-map-section {
        padding: 50px 15px;
    }

    .contacts-header {
        margin-bottom: 50px;
    }

    .contacts-header h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }

    .contacts-header p {
        font-size: 0.95rem;
    }

    .contact-info-item {
        margin-bottom: 20px;
        padding: 16px;
        gap: 12px;
    }

    .contact-info-item:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .contact-info-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .contact-info-content h3 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .contact-info-content p {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .contact-info-content a {
        font-size: 0.85rem;
    }

    .contacts-cta-button {
        margin-top: 30px;
    }

    .contacts-cta-button .btn {
        padding: 14px 20px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        font-weight: 700;
        border-radius: 10px;
    }

    .contacts-cta-button .btn:hover {
        transform: translateY(-3px);
    }

    .yandex-map-container {
        width: 100%;
        aspect-ratio: 560 / 400;
        border-radius: 16px;
        min-height: 250px;
    }

    .yandex-map-container:hover {
        transform: translateY(-4px);
    }
}

/* Contact Form Section - MODERN 2026 */
.contact {
    width: 100%;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    border-radius: 50%;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    border-radius: 50%;
    z-index: 0;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.contact-header h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    transition: all 0.3s ease;
}

/* === Clearable input wrapper === */
.input-clearable {
    position: relative;
    display: flex;
    align-items: center;
}

/* Higher specificity: override .form-group input padding */
.form-group .input-clearable input {
    padding-right: 42px;
}

.form-group .input-clearable .input-clear-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    border: none;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.18);
    color: #667eea;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    padding: 0;
    margin: 0;
    outline: none;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(102, 126, 234, 0.12);
    -webkit-appearance: none;
    appearance: none;
}

.form-group .input-clearable .input-clear-btn:hover {
    background: rgba(102, 126, 234, 0.35);
    color: #4a5ed0;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.22);
}

.form-group .input-clearable .input-clear-btn:active {
    background: rgba(102, 126, 234, 0.5);
    transform: translateY(-50%) scale(0.92);
}
/* === end clearable === */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(102, 126, 234, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
    transform: scale(1.01);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: #555;
}

.form-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    font-weight: 600;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}

.form-group.error .form-error {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
    letter-spacing: 1.5px;
}

.btn-submit:active {
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    background: rgba(102, 200, 100, 0.1);
    border: 2px solid #66c864;
    color: #2d5a2d;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
    font-weight: 600;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 25px 18px;
        border-radius: 16px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 12px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
}

/* Scroll animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Footer Section - MODERN 2026 */
footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: rgba(255, 255, 255, 0.95);
    padding: 80px 20px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s infinite ease-in-out;
}

footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(30px) translateX(-20px); }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.footer-logo:hover .footer-logo-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 280px;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, transparent);
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a,
.footer-list li span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-list li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-list li a:hover::before {
    width: 100%;
}

.footer-list li a:hover,
.footer-list li span:hover {
    color: #ffb347;
    transform: translateX(5px);
}

.footer-contact-icon {
    font-size: 1.2rem;
    min-width: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    text-decoration: none;
    color: white;
}

.social-link:hover {
    background: rgba(255, 107, 107, 0.3);
    transform: translateY(-6px) scale(1.1);
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links-bottom a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    background: #ffb347;
    bottom: -3px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #ffb347;
}

.footer-links-bottom a:hover::after {
    width: 100%;
}

.footer-company-info {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 400;
}

/* Footer Responsive */
@media (max-width: 768px) {
    footer {
        padding: 45px 20px 0;
        margin-top: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-links-bottom {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 35px 15px 0;
        margin-top: 30px;
    }

    .footer-top {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-title {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }

    .footer-list li a,
    .footer-list li span {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 12px;
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .footer-company-info {
        font-size: 0.8rem;
    }
}

/* Header Contacts and CTA Button */
.header-contacts {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-right: 20px;
}

.header-contacts-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.header-contacts-phone {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contacts-phone:hover {
    color: #ff8c8c;
}

.header-contacts-hours {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
}

.btn-header {
    padding: 11px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    white-space: nowrap;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.btn-header:active {
    transform: translateY(-1px);
}

/* Header Responsive */
@media (max-width: 1024px) {
    .header-contacts {
        display: none;
    }
}

@media (max-width: 768px) {
    .btn-header {
        padding: 10px 20px;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .header-contacts {
        display: none;
    }

    .btn-header {
        padding: 9px 16px;
        font-size: 0.75rem;
    }
}
