/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Manrope", sans-serif;
    background: #f8f8f8;
    height: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    zoom: 0.9;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== 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 scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

@keyframes slideUpFade {
    from {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes checkboxPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 103, 183, 0.4);
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(0, 103, 183, 0);
        transform: scale(1);
    }
}

@keyframes checkmarkPop {
    0% {
        transform: rotate(45deg) scale(0);
        opacity: 0;
    }
    50% {
        transform: rotate(45deg) scale(1.2);
    }
    100% {
        transform: rotate(45deg) scale(1);
        opacity: 1;
    }
}

@keyframes textHighlight {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes buttonSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== LAYOUT ===== */
.wrap {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 24px;
    animation: fadeInUp 0.8s ease-out;
}

/* ===== HEADER ===== */
header {
    background: #fff;
    padding: 20px 0;
    margin-bottom: 20px;
    width: 100%;
    animation: fadeInUp 0.6s ease-out;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

header.scrolled .logo-img {
    height: 40px;
    transition: height 0.3s ease;
}

header.scrolled .schedule-title {
    font-size: 14px;
    transition: font-size 0.3s ease;
}

header.scrolled .schedule-time {
    font-size: 16px;
    transition: font-size 0.3s ease;
}

header.scrolled .phone,
header.scrolled .messenger-link {
    font-size: 14px;
    transition: font-size 0.3s ease;
}

header.scrolled .order-btn {
    padding: 12px 25px;
    font-size: 13px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeInLeft 0.8s ease-out;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.schedule-title {
    font-size: 16px;
    font-family: "Manrope";
    color: #6b7280;
    white-space: nowrap;
}

.schedule-time {
    font-size: 18.5px;
    font-family: "Manrope";
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.phone:hover {
    transform: translateY(-2px);
}

.phone i {
    color: #1e40af;
}

.messengers {
    display: flex;
    align-items: center;
    gap: 20px;
}

.messenger-link {
    font-family: "Manrope";
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4b5563;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 8px;
}

.messenger-link:hover {
    color: #1e40af;
    background: #f3f4f6;
    transform: translateY(-2px);
}

.messenger-link i {
    font-size: 16px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeInRight 0.8s ease-out;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    font-family: 'Manrope';
    font-weight: 800;
}

.nav-link:hover {
    color: #1e40af;
    background: #f3f4f6;
    transform: translateY(-2px);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    animation: scaleIn 0.5s ease-out;
}

.lang-btn {
    background: none;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.lang-btn.active {
    background: #fff;
    color: #1e40af;
    transform: scale(1.05);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.order-btn {
    padding: 15px 35px;
    border-radius: 15px;
    background: #0067B7;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.order-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-15deg);
    transition: left 0.7s ease;
    z-index: -1;
}

.order-btn:hover {
    background: #00569e;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 103, 183, 0.3);
}

.order-btn:hover::before {
    left: 150%;
}

.order-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(0, 103, 183, 0.2);
    transition-duration: 0.1s;
}

/* ===== MOBILE HEADER ===== */
.mobile-header-controls {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.mobile-header-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #1e40af;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-header-phone:hover {
    background: #e5e7eb;
    transform: scale(1.05);
}

.mobile-header-language {
    display: flex;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}

.mobile-header-lang-btn {
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.mobile-header-lang-btn.active {
    background: #fff;
    color: #1e40af;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-header-lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

.burger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 3px;
    background: #1e40af;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 80px 20px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.mobile-close-btn i {
    font-size: 20px;
    color: #374151;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    color: #111827;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: #f3f4f6;
    color: #1e40af;
    transform: translateX(5px);
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.mobile-schedule {
    margin: 20px 0;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 8px;
}

.mobile-schedule-title {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 5px;
}

.mobile-schedule-time {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.mobile-messengers {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.mobile-messenger-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f3f4f6;
    transition: all 0.3s ease;
}

.mobile-messenger-link:hover {
    background: #e5e7eb;
    color: #1e40af;
}

.mobile-language-switcher {
    display: flex;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    margin-top: 20px;
}

.mobile-lang-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.mobile-lang-btn.active {
    background: #fff;
    color: #1e40af;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #003071 0%, #0067B7 100%);
    border-radius: 60px;
    padding: 40px 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin: 20px 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s infinite linear;
}

.hero-text {
    max-width: 600px;
    color: white;
    position: relative;
    z-index: 1;
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 20px;
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
}

.hero p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
    font-family: "Manrope", sans-serif;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
    white-space: nowrap;
}

.hero-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-btn.primary-btn {
    background: #fff;
    color: black;
}

.hero-btn.primary-btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

.hero-btn.primary-btn:hover i {
    transform: translateX(5px);
}

.hero-btn.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid #fff;
    backdrop-filter: blur(10px);
}

.hero-btn.secondary-btn:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    color: black;
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.7s ease;
    z-index: -1;
}

.hero-btn:hover::after {
    left: 100%;
}

/* ===== HERO FORM ===== */
.hero-form {
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    width: 450px;
    padding: 40px;
    position: relative;
    z-index: 1;
    animation: fadeInRight 0.8s ease-out 0.6s both;
    transform-origin: center;
}

.hero-form input {
    padding: 18px 16px;
    border-radius: 10px;
    border: none;
    width: 100%;
    font-size: 14px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.hero-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form input:-webkit-autofill,
.hero-form input:-webkit-autofill:hover,
.hero-form input:-webkit-autofill:focus,
.hero-form input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.hero-form button {
    background: #FFFFFF;
    color: #000000;
    font-size: 16px;
    padding: 25px 20px;
    border: none;
    border-radius: 12px;
    width: 100%;
    cursor: pointer;
    font-family: "Manrope";
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-form button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent 0%,
        rgba(0, 103, 183, 0.2) 30%,
        rgba(0, 103, 183, 0.4) 50%,
        rgba(0, 103, 183, 0.2) 70%,
        transparent 100%
    );
    transform: skewX(-15deg);
    transition: left 1s ease;
    z-index: -1;
}

.hero-form button:hover::after {
    left: 150%;
}

.hero-form button::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 1s ease;
}

.hero-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 103, 183, 0.2);
}

.hero-form button:hover::before {
    left: 100%;
}

.hero-form button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 103, 183, 0.1);
    transition-duration: 0.1s;
}

.hero-form .note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin-top: 12px;
    text-align: left;
}

/* ===== SERVICES SECTION ===== */
.chaotic-services {
    margin-top: 50px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin: 40px 0 24px;
    color: #111827;
    font-family: "Unbounded";
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 1s both;
    width: 50%;
}

.services-header-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
}

.services-title-main {
    flex: 1;
    min-width: 300px;
}

.services-title-main .section-title {
    margin: 0;
    font-size: 40px;
    font-family: "Unbounded", sans-serif;
    font-weight: 400;
    color: #111827;
    line-height: 1.2;
}

.services-action-side {
    display: flex;
    align-items: center;
    min-width: 350px;
}

.services-subtitle-action {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.services-subtitle-side {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    max-width: 200px;
}

.services-action-btn-side {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0056A8, #0067B7);
    color: white;
    padding: 30px 40px;
    border-radius: 15px;
    font-family: "Unbounded", sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    height: 40px;
    box-sizing: border-box;
}

.services-action-btn-side:hover {
    background: linear-gradient(135deg, #004A95, #005AA3);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 90, 163, 0.3);
}

.services-action-btn-side i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.services-action-btn-side:hover i {
    transform: translateX(3px);
}

.services-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.service-block {
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    flex: 1;
    min-height: 120px;
}

.service-block.outline {
    border: 2px dashed #d1d5db;
}

.service-block.gradient {
    background: linear-gradient(135deg, #003071 0%, #0067B7 100%);
    color: white;
}

.service-block.wide {
    flex: 2;
}

.service-block.tall {
    min-height: 150px;
}

.service-block.extra-wide {
    flex: 3;
}

.service-block-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-block-title {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.outline .service-block-title {
    color: #111827;
}

.gradient .service-block-title {
    color: white;
}

.service-block-count {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.outline .service-block-count {
    color: #000;
}

.gradient .service-block-count {
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 20px 0;
}

.mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-content {
    padding-right: 40px;
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.mission-dash {
    width: 40px;
    height: 4px;
    background: #1e40af;
    border-radius: 2px;
}

.mission-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 42px;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

.mission-description {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 600px;
}

.mission-advantages {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
}

.advantage-outline {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 3px solid #1e40af;
    border-radius: 6px;
    margin-top: 3px;
}

.advantage-title {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #111827;
    margin: 0;
    line-height: 1.4;
}

.mission-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #111827;
    color: white;
    padding: 18px 35px;
    border-radius: 12px;
    font-family: "Unbounded", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.mission-btn:hover {
    background: #374151;
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mission-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mission-btn:hover i {
    transform: translateX(5px);
}

.mission-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 500px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.mission-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, rgba(0, 48, 113, 0.95), rgba(0, 103, 183, 0.95));
    color: #fff;
    border-radius: 40px;
    padding: 60px;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 1.6s both;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.cta h3 {
    font-size: 32px;
    font-family: "Unbounded";
    font-weight: 500;
    margin: 0;
    max-width: 500px;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.cta-btn {
    background: #FFFFFF;
    color: #000;
    padding: 20px 60px;
    border-radius: 15px;
    font-family: "Unbounded", sans-serif;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 220px;
    text-align: center;
}

.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 86, 168, 0.1), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 168, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-btn:hover {
    background: #FFFFFF;
    color: #004A95;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover::after {
    opacity: 1;
}

.cta-btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* ===== PROCESS SECTION ===== */
.process {
    margin: 40px 0;
    animation: fadeInUp 0.8s ease-out 1.8s both;
}

.process .section-title {
    text-align: center;
    margin: 0 auto 40px;
    display: block;
    font-weight: 500;
}

.steps {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    transition: transform 0.4s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step .num {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #cfd9df 0%, #e2ebf0 100%);
    color: #000;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 16px;
    font-family: "Unbounded";
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:nth-child(4) .num {
    background: linear-gradient(135deg, #0067B7 0%, #0067B7 100%);
    color: white;
    border: 3px solid white;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.step:hover .num {
    transform: scale(1.1) rotate(5deg);
}

.step:nth-child(4):hover .num {
    background: linear-gradient(135deg, #0067B7 0%, #0067B7 100%);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.step .title {
    font-weight: 450;
    font-family: "Unbounded";
    margin-bottom: 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.step:hover .title {
    color: #1e40af;
}

.step:nth-child(4) .title {
    color: #1e40af;
    font-weight: 500;
}

.step .desc {
    font-family: "Manrope";
    font-weight: 450;
    color: #6b7280;
    font-size: 14px;
    transition: color 0.3s ease;
}

.step:hover .desc {
    color: #374151;
}

/* ===== FAQ SECTION ===== */
.faq {
    margin: 80px 0;
    animation: fadeInUp 0.8s ease-out 2.2s both;
}

.faq .wrap {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.faq-title-main {
    flex: 1;
}

.faq-title-main .section-title {
    margin: 0;
    font-size: 40px;
    font-family: "Unbounded", sans-serif;
    font-weight: 300;
    color: #111827;
}

.faq-action {
    display: flex;
    align-items: center;
}

.faq-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0067B7, #0067B7);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    font-family: "Unbounded", sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.faq-action-btn:hover {
    background: linear-gradient(135deg, #0067B7, #2563eb);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.faq-action-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-action-btn:hover i {
    transform: translateX(3px);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.qa {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-left: 4px solid transparent;
    border: 1px solid #e5e7eb;
}

.qa:hover {
    transform: translateX(10px);
    border-left-color: #1e40af;
    border-color: #d1d5db;
}

.qa.active {
    background: #f8fafc;
    transform: translateX(10px);
    border-left-color: #1e40af;
    border-color: #d1d5db;
}

.qa .question {
    font-weight: 600;
    font-family: "Manrope";
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    transition: color 0.3s ease;
}

.qa:hover .question {
    color: #1e40af;
}

.qa.active .question {
    color: #1e40af;
}

.qa .question span {
    transition: transform 0.3s ease;
    color: #6b7280;
    font-size: 12px;
}

.qa.active .question span {
    transform: rotate(180deg);
}

.qa .answer {
    display: none;
    padding-top: 12px;
    color: #6b7280;
    font-size: 15px;
    font-family: "Manrope";
    animation: fadeInUp 0.3s ease;
    line-height: 1.6;
}

.qa.active .answer {
    display: block;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials .section-title {
    font-size: 32px;
}

.carousel-container {
    position: relative;
    max-width: 1350px;
    margin: 30px auto 40px;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
    margin: 0 -10px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 33.333%;
    min-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1e40af, #3b82f6);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.testimonial-card:hover::before {
    transform: translateY(0);
}

.testimonial-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #111827;
    font-family: "Unbounded";
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author strong {
    color: #1e40af;
}

.testimonial-author .company {
    font-size: 14px;
    color: #6b7280;
    font-family: "Manrope", sans-serif;
    margin: 0;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author .company {
    color: #374151;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-content .review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    font-family: "Manrope", sans-serif;
    margin: 0;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-content .review-text {
    transform: translateX(5px);
}

.testimonial-footer {
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.service-type {
    display: inline-block;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: #4b5563;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: "Manrope", sans-serif;
    transition: all 0.3s ease;
}

.testimonial-card:hover .service-type {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    transform: scale(1.05);
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.mobile-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.mobile-carousel-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1e40af;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-carousel-btn:hover {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
    transform: scale(1.1);
}

.mobile-carousel-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #e5e7eb;
}

.mobile-carousel-btn.disabled:hover {
    background: #f3f4f6;
    color: #9ca3af;
    transform: scale(1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: #1e40af;
    transform: scale(1.0);
}

.carousel-dot:hover:not(.active) {
    background: #c7d2fe;
}

/* ===== FOOTER ===== */
footer {
    margin: 40px 0 20px;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    animation: fadeInUp 0.8s ease-out 2.6s both;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1550px;
    margin: 0 auto;
}

.footer-logo-schedule {
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-contact-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-phone {
    font-weight: 500;
    color: #111827;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.footer-phone:hover {
    transform: translateY(-2px);
    color: #1e40af;
}

.footer-separator {
    color: #d1d5db;
    font-weight: 300;
}

.footer-messenger {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
}

.footer-messenger:hover {
    color: #1e40af;
    background: #f3f4f6;
    transform: translateY(-2px);
}

.footer-order-btn {
    padding: 12px 28px;
    border-radius: 10px;
    background: #0067b7;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-family: 'Manrope', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-order-btn:hover {
    background: #00569e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 103, 183, 0.4);
}

.footer-order-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.footer-order-btn:hover::after {
    transform: translateX(100%);
}

.footer-order-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition-duration: 0.1s;
}

.footer-copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #9ca3af;
    animation: fadeInUp 0.8s ease-out 2.8s both;
}

/* ===== CONTACTS POPUP ===== */
.contacts-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.contacts-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.contacts-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    overflow-y: auto;
}

.contacts-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.popup-close-btn i {
    font-size: 18px;
    color: #374151;
}

.popup-title {
    font-size: 28px;
    font-family: "Unbounded";
    font-weight: 500;
    color: #111827;
    margin-bottom: 30px;
    text-align: center;
}

.contact-items {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    flex-direction: row;
}

.contact-item:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-family: "Manrope";
}

.contact-details p {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f3f4f6;
}

.contact-details .phone-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
}

.call-btn, .email-btn, .map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1e40af;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 5px;
    width: fit-content;
}

.contact-details .email-btn {
    background: #10b981;
}

.contact-details .email-btn:hover {
    background: #059669;
}

.contact-details .map-btn {
    background: #8b5cf6;
}

.contact-details .map-btn:hover {
    background: #7c3aed;
}

.social-section {
    margin-bottom: 30px;
}

.social-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    font-family: "Manrope";
}

.social-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.social-btn.telegram {
    background: #0088cc;
    color: white;
}

.social-btn.whatsapp {
    background: #25D366;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    font-family: "Manrope";
}

.yandex-static-map {
    display: block;
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    background: #f3f4f6;
}

.static-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.map-interactive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.yandex-static-map:hover .map-interactive-overlay {
    opacity: 1;
}

.yandex-static-map:hover .static-map-img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.map-overlay-content {
    color: white;
    max-width: 300px;
}

.map-overlay-content i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.map-overlay-content h5 {
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 600;
    font-family: 'Unbounded', sans-serif;
}

.map-overlay-content p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.4;
}

.map-open-btn {
    background: white;
    color: #1e40af;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-open-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== FORM POPUP ===== */
.form-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.form-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    max-height: 120vh;
    background: white;
    border-radius: 20px;
    padding: 40px 30px 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.form-popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.form-popup-close-btn:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.form-popup-close-btn i {
    font-size: 18px;
    color: #374151;
}

.form-popup-content {
    text-align: center;
}

.form-popup-title {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
    font-family: 'Unbounded', sans-serif;
}

.form-popup-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-popup-form {
    text-align: left;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 16px 16px 16px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
}

.form-popup-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    margin-top: 10px;
}

.form-popup-submit-btn:hover {
    background: linear-gradient(135deg, #1e40af, #3730a3);
    transform: translateY(-2px);
}

.form-popup-submit-btn:active {
    transform: translateY(0);
}

.form-popup-agreement {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* ===== FLOAT CONTACT ===== */
.float-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9998;
}

.float-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0067B7;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.6);
}

.float-btn:active {
    transform: scale(0.95) translateY(0);
}

.float-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(30, 64, 175, 0.3);
    animation: pulseRing 2s ease-out infinite;
    pointer-events: none;
}

.float-icons {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.float-icons.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.float-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    text-decoration: none;
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.float-icons.active .float-icon {
    transform: translateX(0);
    opacity: 1;
}

.float-icons.active .float-icon:nth-child(1) {
    transition-delay: 0.1s;
}

.float-icons.active .float-icon:nth-child(2) {
    transition-delay: 0.2s;
}

.float-icons.active .float-icon:nth-child(3) {
    transition-delay: 0.3s;
}

.float-icons.active .float-icon:nth-child(4) {
    transition-delay: 0.4s;
}

.float-icon.phone {
    background: linear-gradient(135deg, #10b981, #059669);
}

.float-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-icon.telegram {
    background: linear-gradient(135deg, #0088cc, #005c8a);
}

.float-icon.email {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.float-icon:hover {
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.float-icon::after {
    content: attr(title);
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.float-icon:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ===== SCROLL ANCHORS ===== */
#services,
#process,
#advantages,
#faq,
#testimonials {
    scroll-margin-top: 100px;
}


/* General mobile styles */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        gap: 32px;
        padding: 40px;
        text-align: center;
    }
    
    .hero-text,
    .hero-form {
        margin-top: 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-form {
        padding: 32px 28px;
    }
    
    .services-row {
        flex-wrap: wrap;
    }
    
    .service-block {
        flex: 1 1 calc(50% - 20px);
        min-width: 0;
    }
    
    .service-block.wide,
    .service-block.extra-wide {
        flex: 1 1 100%;
    }
    
    .services-header-side {
        gap: 30px;
    }
    
    .section-title {
        font-size: 36px;
        align-content: center;
        width: 100%;
    }
    
    .services-action-side {
        min-width: 300px;
    }
    
    .services-subtitle-side {
        max-width: 180px;
    }
    
    .steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .step {
        flex: 0 0 calc(50% - 30px);
        min-width: 200px;
    }
    
    .step .num {
        width: 90px;
        height: 90px;
        font-size: 18px;
    }
    
    .mission-container {
        gap: 60px;
    }
    
    .mission-title {
        font-size: 36px;
    }
    
    .mission-image {
        height: 450px;
    }
    
    .cta {
        padding: 50px;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta h3 {
        font-size: 28px;
        max-width: 100%;
    }
    
    .cta-btn {
        padding: 18px 50px;
        min-width: 200px;
    }
    
    .carousel-slide {
        flex: 0 0 50%;
        min-width: 50%;
    }
    
    .carousel-container {
        padding: 0 50px;
    }
    
    .faq-header {
        gap: 20px;
    }
    
    .faq-title-main .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    header {
        position: sticky;
        top: 0;
    }
    
    header.scrolled {
        padding: 10px 0;
    }
    
    header.scrolled .logo-img {
        height: 35px;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0 20px;
    }
    
    .header-left {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 0;
    }
    
    .logo-section {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        gap: 20px;
        align-items: center;
    }
    
    .schedule-info,
    .contact-info,
    .header-right {
        display: none;
    }
    
    .mobile-header-controls {
        display: flex;
        align-items: center;
    }
    
    .burger-toggle {
        display: flex;
    }
    
    .mobile-contact {
        display: flex;
    }
    
    .hero {
        padding: 28px 20px;
        border-radius: 32px;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.25;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .hero-form input {
        font-size: 14px;
        padding: 14px;
    }
    
    .hero-form {
        margin-top: 0px;
        padding: 22px 18px;
    }
    
    .hero-form button {
        font-size: 14px;
        padding: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 16px;
    }
    
    .hero-btn i {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 22px;
        text-align: center;
    }
    
    .services-row {
        margin-bottom: 0;
    }
    
    .service-block {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }
    
    .services-header-side {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .services-action-side {
        min-width: auto;
        width: 100%;
        align-items: flex-start;
    }
    
    .services-subtitle-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .services-subtitle-side {
        max-width: 100%;
    }
    
    .services-action-btn-side {
        width: 100%;
        justify-content: center;
        height: auto;
        padding: 12px 20px;
    }
    
    .mission-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mission-content {
        padding-right: 0;
        text-align: center;
    }
    
    .mission-header {
        justify-content: center;
    }
    
    .mission-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .advantage-item {
        justify-content: center;
    }
    
    .mission-image {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .mission-section {
        padding: 20px 0;
    }
    
    .mission-title {
        font-size: 32px;
    }
    
    .mission-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .advantage-title {
        font-size: 18px;
    }
    
    .mission-advantages {
        gap: 20px;
        margin-bottom: 30px;
        align-items: baseline;
    }
    
    .mission-btn {
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .mission-image {
        height: 350px;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .step {
        width: 100%;
        max-width: 300px;
    }
    
    .process .section-title {
        margin-bottom: 30px;
        width: 100%;
    }
    
    .cta {
        padding: 40px 30px;
        border-radius: 30px;
        margin: 30px 0;
    }
    
    .cta h3 {
        font-size: 24px;
    }
    
    .cta-btn {
        padding: 16px 40px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .faq {
        margin: 60px 0;
    }
    
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .faq-action {
        width: 100%;
    }
    
    .faq-action-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .qa {
        padding: 20px;
    }
    
    .qa .question {
        font-size: 16px;
    }
    
    .qa .answer {
        font-size: 14px;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    .carousel-container {
        padding: 0 20px;
        margin: 40px auto 30px;
    }
    
    .carousel-track-container {
        margin: 0 -8px;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0 8px;
    }
    
    .testimonial-card {
        padding: 25px;
        min-height: auto;
    }
    
    .carousel-dots {
        margin-top: 30px;
    }
    
    #services,
    #process,
    #advantages,
    #faq,
    #testimonials {
        scroll-margin-top: 80px;
    }
    
    .testimonials .section-title {
        font-size: 32px;
    }
    
    footer {
        padding: 30px 0 20px;
        margin: 30px 0 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-left {
        width: 100%;
        order: 1;
    }
    
    .footer-logo-schedule {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .footer-logo-img {
        height: 45px;
    }
    
    .schedule {
        text-align: center;
    }
    
    .schedule-title {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .schedule-time {
        font-size: 16px;
        font-weight: 700;
    }
    
    .footer-right {
        width: 100%;
        order: 2;
    }
    
    .footer-contact-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 20px;
        background: #f9fafb;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .footer-phone {
        font-size: 18px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 5px;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-order-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
    }
    
    .footer-copyright {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
        font-size: 12px;
        color: #9ca3af;
        order: 3;
    }
    
    .contacts-popup {
        width: 95%;
        padding: 30px 20px 20px;
        max-height: 85vh;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        align-items: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
        min-width: auto;
    }
    
    .yandex-static-map {
        height: 250px;
    }
    
    .map-interactive-overlay {
        opacity: 0.9;
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.95), rgba(59, 130, 246, 0.95));
    }
    
    .map-overlay-content h5 {
        font-size: 18px;
    }
    
    .contact-details .call-btn,
    .contact-details .email-btn,
    .contact-details .map-btn {
        width: 100%;
        text-align: center;
    }
    
    .form-popup {
        width: 95%;
        padding: 30px 20px 25px;
        border-radius: 16px;
    }
    
    .form-popup-title {
        font-size: 24px;
    }
    
    .form-popup-subtitle {
        font-size: 14px;
    }
    
    .float-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .float-icons {
        bottom: 65px;
        gap: 12px;
    }
    
    .float-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .float-icon::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        bottom: -40px;
        font-size: 11px;
    }
    
    .float-icon:hover::after {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-buttons {
        margin-top: 20px;
    }
    
    .hero-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .services-title-main .section-title {
        font-size: 32px;
    }
    
    .services-subtitle-side {
        font-size: 13px;
    }
    
    .mission-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
    }
    
    .mission-dash {
        width: 30px;
    }
    
    .mission-title {
        font-size: 28px;
    }
    
    .mission-description {
        font-size: 15px;
        text-align: left;
    }
    
    .advantage-item {
        align-items: flex-start;
        text-align: left;
    }
    
    .mission-btn {
        width: 100%;
        justify-content: center;
    }
    
    .step .num {
        width: 80px;
        height: 80px;
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .step .title {
        font-size: 15px;
    }
    
    .step .desc {
        font-size: 13px;
    }
    
    .cta {
        padding: 30px 20px;
        border-radius: 25px;
    }
    
    .cta h3 {
        font-size: 22px;
    }
    
    .cta-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .faq-title-main .section-title {
        font-size: 32px;
    }
    
    .qa {
        padding: 18px;
    }
    
    .qa .question {
        font-size: 15px;
    }
    
    .qa .answer {
        font-size: 13px;
    }
    
    .carousel-container {
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-author strong {
        font-size: 15px;
    }
    
    .testimonial-author .company {
        font-size: 13px;
    }
    
    .testimonial-content .review-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .service-type {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .mobile-carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .contact-item {
        gap: 12px;
        padding: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-details h4 {
        font-size: 15px;
    }
    
    .contact-details p {
        font-size: 16px;
    }
    
    .yandex-static-map {
        height: 200px;
    }
    
    .map-overlay-content i {
        font-size: 36px;
    }
    
    .map-overlay-content h5 {
        font-size: 16px;
    }
    
    .form-popup {
        padding: 25px 15px 20px;
    }
    
    .form-popup-title {
        font-size: 22px;
    }
    
    .form-group input {
        padding: 14px 14px 14px 40px;
    }
    
    .form-group i {
        font-size: 15px;
        left: 14px;
    }
    
    .float-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .float-icons {
        bottom: 60px;
    }
}

@media (max-width: 400px) {
    .carousel-container {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 18px;
    }
    
    .mobile-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Mobile menu width */
@media (min-width: 481px) and (max-width: 768px) {
    .mobile-menu {
        width: 400px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-overlay {
        display: block;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        right: -100%;
        width: 100%;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu-overlay {
        display: block;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.5);
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
/* ===== ПРОСТОЙ МУЛЬТИСЕЛЕКТ ===== */
.service-select-simple {
    margin: 20px 0;
    width: 100%;
}

.service-multiselect {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-multiselect option {
    background: white;
    color: #111827;
    padding: 10px;
    font-family: 'Manrope', sans-serif;
}

.service-multiselect option:checked {
    background: linear-gradient(135deg, #0067B7, #3b82f6);
    color: white;
}

.service-multiselect:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.select-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    text-align: left;
}

/* Стили для мультиселекта в попапе */
.popup-service-select-simple .service-multiselect {
    border: 2px solid #e5e7eb;
    background: #f9fafb;
    color: #111827;
}

.popup-service-select-simple .service-multiselect:focus {
    border-color: #0067B7;
    background: white;
}

.popup-service-select-simple .select-hint {
    color: #9ca3af;
}

/* ===== ВЫПАДАЮЩИЙ МУЛЬТИСЕЛЕКТ С ЧЕКБОКСАМИ ===== */
.dropdown-checkbox {
    position: relative;
    width: 100%;
    margin: 20px 0;
    font-family: 'Manrope', sans-serif;
}

.dropdown-checkbox-header {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 5;
}

.dropdown-checkbox-header:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.dropdown-checkbox-header.active {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-checkbox-label {
    font-weight: 500;
    font-size: 15px;
}

.dropdown-checkbox-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 13px;
    margin-left: auto;
    margin-right: 15px;
}

.dropdown-checkbox-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.dropdown-checkbox-header.active .dropdown-checkbox-icon {
    transform: rotate(180deg);
    color: #fff;
}

.dropdown-checkbox-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-height: 250px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top: none;
}

.dropdown-checkbox-header.active + .dropdown-checkbox-list {
    display: block;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-checkbox-item {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-checkbox-item:last-child {
    border-bottom: none;
}

.dropdown-checkbox-item:hover {
    background: #f5f9ff;
}

.dropdown-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: #0067B7;
}

.dropdown-checkbox-text {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

/* Стили для попапа */
.popup-dropdown .dropdown-checkbox-header {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    color: #333;
}

.popup-dropdown .dropdown-checkbox-header:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.popup-dropdown .dropdown-checkbox-header.active {
    background: #f1f5f9;
    border-color: #0067B7;
}

.popup-dropdown .dropdown-checkbox-count {
    background: #e5e7eb;
    color: #333;
}

.popup-dropdown .dropdown-checkbox-icon {
    color: #9ca3af;
}

.popup-dropdown .dropdown-checkbox-header.active .dropdown-checkbox-icon {
    color: #0067B7;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .dropdown-checkbox-list {
        max-height: 200px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
    }
    
    .dropdown-checkbox-item {
        padding: 15px 18px;
    }
    
    .dropdown-checkbox-item input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
}

/* ===== ИНТЕРАКТИВ ДЛЯ БЛОКОВ УСЛУГ ===== */
.service-block {
    position: relative;
    overflow: hidden;
}

.service-hint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,103,183,0.95), rgba(0,48,113,0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    pointer-events: none;
}

.service-block:hover .service-hint-overlay {
    opacity: 1;
}

.service-hint-text {
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
}

.service-block:hover .service-hint-text {
    transform: translateY(0);
}

/* Для градиентных блоков делаем текст темнее */
.service-block.gradient .service-hint-text {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.service-hint-text i {
    margin-right: 8px;
    font-size: 14px;
}

/* ===== ПОПАП ДЕТАЛЬНОГО ОПИСАНИЯ ===== */
.service-detail-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-detail-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-detail-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
}

.service-detail-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.service-detail-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-detail-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.service-detail-close i {
    font-size: 18px;
    color: #374151;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.service-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.service-detail-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    margin: 0;
    flex: 1;
}

.service-detail-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #374151;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-detail-item::before {
    content: "•";
    color: #0067B7;
    font-weight: bold;
    font-size: 18px;
}

.service-detail-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .service-detail-popup {
        padding: 30px 20px;
    }
    
    .service-detail-title {
        font-size: 18px;
    }
    
    .service-detail-item {
        font-size: 14px;
    }
}

/* ============================================ */
/* ДОПОЛНИТЕЛЬНЫЕ ЭФФЕКТЫ ДЛЯ АНИМАЦИЙ */
/* ============================================ */

/* Эффект волны для кнопок */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Состояние загрузки страницы */
.page-loading * {
    animation: none !important;
    transition: none !important;
}

/* Улучшенные ховер-эффекты */
.service-block:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 103, 183, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-block.gradient:hover {
    box-shadow: 0 20px 40px rgba(0, 103, 183, 0.3) !important;
}

.step:hover {
    transform: translateY(-10px) !important;
}

.step:hover .num {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 10px 25px rgba(0, 103, 183, 0.2) !important;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Анимация для floating кнопки */
.float-btn {
    animation: float-pulse 2s ease-in-out infinite;
}

@keyframes float-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 10px 30px rgba(30, 64, 175, 0.6);
    }
}

/* Плавное появление попапов */
.contacts-popup.active,
.form-popup.active,
.service-detail-popup.active {
    animation: popup-appear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popup-appear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Анимация для иконок в преимуществах */
.advantage-item:hover .advantage-outline {
    animation: outline-spin 0.6s ease;
}

@keyframes outline-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Медиа-запрос для отключения анимаций на слабых устройствах */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== ПРОСТЫЕ АНИМАЦИИ ПРИ СКРОЛЛЕ ===== */

/* Основные секции */
.hero,
.services-row,
.mission-container,
.process,
.faq,
.testimonials,
.cta,
footer {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-play-state: paused;
}

/* Анимация срабатывает когда элемент в поле зрения */
.hero.animated,
.services-row.animated,
.mission-container.animated,
.process.animated,
.faq.animated,
.testimonials.animated,
.cta.animated,
footer.animated {
    animation-play-state: running;
}

/* Элементы внутри секций */
.step,
.qa,
.testimonial-card,
.advantage-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.step.animated,
.qa.animated,
.testimonial-card.animated,
.advantage-item.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Заголовки секций */
.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.section-title.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Анимация для цифр в шагах */
.step.animated .num {
    animation: bounceNum 0.6s ease-out;
}

@keyframes bounceNum {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Гарантируем что блоки услуг кликабельны */
.service-block[data-service-id] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-block[data-service-id]:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 103, 183, 0.2);
}

/* Анимация для плавающей кнопки */
.float-btn {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Анимации для преимуществ */
.mission-advantages {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mission-advantages.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Анимация для каждого элемента с задержкой */
.advantage-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mission-advantages.animated .advantage-item {
    opacity: 1;
    transform: translateX(0);
}

.mission-advantages.animated .advantage-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mission-advantages.animated .advantage-item:nth-child(2) {
    transition-delay: 0.2s;
}

.mission-advantages.animated .advantage-item:nth-child(3) {
    transition-delay: 0.3s;
}

.mission-advantages.animated .advantage-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* ===== МИНИ-БАНЕР В БЛОКЕ УСЛУГ ===== */
.services-banner {
    margin-top: 60px;  /* Увеличил верхний отступ */
    margin-bottom: 40px; /* Добавил нижний отступ */
    background: linear-gradient(135deg, #0067B7 0%, #003071 100%);
    border-radius: 20px;
    padding: 30px 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 103, 183, 0.3);
    animation: fadeInUp 0.8s ease-out;
    width: 100%; /* Гарантирует что будет как родитель */
    box-sizing: border-box; /* Чтобы padding не вылезал за ширину */
}

/* Убедимся что родительский контейнер не ограничивает */
.chaotic-services .wrap {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

/* Остальные стили без изменений */
.banner-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
    min-width: 250px;
}

.banner-text h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: white;
}

.banner-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    color: white;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #0067B7;
    padding: 16px 30px;
    border-radius: 50px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.banner-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.banner-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.banner-btn:hover i {
    transform: translateX(5px);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .services-banner {
        margin-top: 40px;
        margin-bottom: 30px;
        padding: 25px 20px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .banner-icon {
        margin: 0 auto;
    }
    
    .banner-text h3 {
        font-size: 20px;
    }
    
    .banner-text p {
        font-size: 15px;
    }
    
    .banner-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .services-banner {
        margin-top: 30px;
        margin-bottom: 20px;
        padding: 20px 15px;
    }
    
    .banner-text h3 {
        font-size: 18px;
    }
    
    .banner-text p {
        font-size: 14px;
    }
}