/* CSS Variables */
:root {
    --white: #FFFFFF;
    --black: #111111;
    --dark-blue: #003366;
    --orange: #FF6600;
    --gray: #666666;
    --light-gray: #F7F9FC;
    --yellow: #FFD700;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

h1 {
    font-size: 30px;
    margin-bottom: 16px;
    line-height: 1.4;
}

h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--dark-blue);
    text-align: center;
}

h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}

section {
    padding: 48px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Desktop Header */
.desktop-header {
    background-color: var(--dark-blue);
    background-color: var(--light-gray);
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: none;
}

@media (min-width: 1150px) {
    .desktop-header {
        display: block;
    }
}

.desktop-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.desktop-logo {
    display: block;
    color: var(--white);
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    width: 120px;
    max-width: 200px;
    height: 44px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    position: relative;
}

.desktop-menu > li {
    position: relative;
}

.desktop-menu > li .dropdown {
    display: none;
}

.dropdown{
    list-style: none;
    
}
.desktop-menu > li:hover > .dropdown {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: -50%;
    opacity: 1;
    visibility: visible;
    padding: 0;
}

.desktop-menu a {
    /* color: var(--orange); */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-menu a:hover {
    color: var(--orange);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Стрелочка для пунктов с подменю */
.desktop-menu .has-dropdown > a::after {
    content: "▼";
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.desktop-menu .has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Выпадающее меню для десктопа */
.desktop-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

.desktop-menu .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-menu .dropdown li {
    margin: 0;
}

.desktop-menu .dropdown a {
    color: #333;
    padding: 10px 16px;
    display: block;
    transition: background-color 0.3s ease;
}

.desktop-menu .dropdown a:hover {
    color: var(--orange);
}

.desktop-phone {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid var(--orange);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.desktop-phone:hover {
    background-color: var(--orange);
    color: var(--white);
}

.desktop-phone svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Mobile Header */
.mobile-header {
    background-color: var(--light-gray);
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: block;
}

@media (min-width: 1150px) {
    .mobile-header {
        display: none;
    }
}

.mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
    width: 70px;
    height: 30px;
}

.mobile-header-phone {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-header-phone svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* Geolocation Selector Styles */
.geo-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--white);
    position: relative;
}

.department-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.department-select {
    background-color: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: var(--white);
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.department-select:focus {
    outline: none;
}

.department-select option {
    background: var(--dark-blue);
    color: var(--white);
}

/* Region Confirmation Bubble - Absolute Positioning */
.region-bubble {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--orange);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 280px;
    animation: slideDownBubble 0.3s ease;
}

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

.region-bubble:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 20px;
    border: 8px solid transparent;
    border-bottom-color: var(--orange);
}

.bubble-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bubble-region {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

.bubble-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.bubble-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.bubble-btn-yes {
    background: var(--white);
    color: var(--orange);
}

.bubble-btn-yes:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.bubble-btn-no {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bubble-btn-no:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

/* Mobile Region Bubble */
.mobile-region-bubble {
    position: absolute;
    top: 100%;
    right: -50%;
    background: var(--orange);
    color: var(--white);
    padding: 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 250px;
    max-width: 280px;
    animation: slideDownBubble 0.3s ease;
}

.mobile-region-bubble:before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 50%;
    border: 8px solid transparent;
    border-bottom-color: var(--orange);
}

/* Mobile Geo Selector */
.mobile-geo-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.mobile-department-select {
    background-color: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: var(--white);
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
    min-width: 120px;
    max-width: 140px;
}

/* Hide mobile geo on desktop and vice versa */
@media (max-width: 767px) {
    .desktop-geo-selector {
        display: none;
    }
}

@media (min-width: 1150px) {
    .mobile-geo-selector {
        display: none;
    }
}

/* Close button for bubble */
.bubble-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    opacity: 0.7;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bubble-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

/* Burger Menu */
.burger-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    z-index: 999;
    padding: 80px 24px 24px;
}

.burger-menu.active {
    display: block;
    max-height: 100%;
    overflow-y: auto;
}

.burger-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger-nav {
    list-style: none;
}

.burger-nav li {
    position: relative;
}

.burger-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.burger-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--orange);
}

/* Стрелочка для мобильного меню */
.burger-nav .has-dropdown > a::after {
    content: "▶";
    font-size: 12px;
    transition: transform 0.3s ease;
}

.burger-nav .has-dropdown.active > a::after {
    transform: rotate(90deg);
}

/* Выпадающее меню для мобильной версии */
.burger-nav .dropdown {
    background: rgba(255, 255, 255, 0.05);
    margin-left: 16px;
    border-radius: 4px;
}

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

.burger-nav .dropdown li {
    margin: 0;
}

.burger-nav .dropdown a {
    padding: 10px 16px;
    font-size: 16px;
}

.burger-phone {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 32px;
    padding: 16px;
    border: 2px solid var(--orange);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.burger-phone:hover {
    background-color: var(--orange);
    color: var(--white);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #E55A00;
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.btn-secondary {
    background-color: var(--dark-blue);
    color: var(--white);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #002244;
    outline: 2px solid var(--dark-blue);
    outline-offset: 2px;
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
}

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--dark-blue);
    color: var(--white);
}

.btn-ico{
    display: flex;
    align-items: center;
}

.btn-ico svg{
    margin-right: 8px;
}

/* Hero Section */
.hero {
    padding-top: 48px;
    padding-bottom: 64px;
    text-align: center;
    background: #ffffff;
    background: linear-gradient(to bottom, #eaf1f8 0%, #ffffff 100%);
}

@media (min-width: 768px) {
    .hero {
        padding-top: 80px;
    }
}

.hero h1 {
    color: var(--dark-blue);
    margin-bottom: 16px;
}

.hero h2 {
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 300px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        display: none;
    }
}

/* USP Section */
.usp {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 48px 24px;
}

.usp-header {
    text-align: center;
    margin-bottom: 40px;
}

.usp-header h2 {
    color: var(--white);
}

.usp-header p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.usp-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .usp-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .usp-items {
        grid-template-columns: repeat(3, 1fr);
    }
    .usp-icon {
        width: 24px;
        height: 24px;
    }
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.usp-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 4px;
}

.usp-icon svg, .usp-icon img {
    width: 100%;
    height: 100%;
    fill: var(--white);
}

.usp-content h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
}

.usp-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.usp-cta {
    text-align: center;
    margin-top: 40px;
}

/* Services Section */
/* .services {
    padding: 48px 24px;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--dark-blue);
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--black);
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-cta {
    color: var(--dark-blue);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

.service-cta:hover, .service-cta:focus {
    text-decoration: underline;
    outline: none;
}

.services-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 40px auto 0;
}

@media (min-width: 768px) {
    .services-cta {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
    }
} */
/* Modern Services Section */

/* Modern Services Section - 2x2 Grid */
.services {
    padding: 80px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #004080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 
        0 8px 32px rgba(0, 51, 102, 0.08),
        0 2px 8px rgba(0, 51, 102, 0.04);
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 51, 102, 0.12),
        0 4px 12px rgba(0, 51, 102, 0.06);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--dark-blue), #004080);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.8), rgba(255, 102, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon-overlay {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-overlay {
    transform: translateY(0);
}

.service-icon-overlay svg {
    width: 24px;
    height: 24px;
    fill: var(--dark-blue);
}

.service-content {
    padding: 32px 24px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-number {
    position: absolute;
    top: -20px;
    left: 24px;
    background: linear-gradient(135deg, var(--orange), #ff8c42);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.service-card h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    min-height: auto;
}

.service-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 6px 0;
    color: var(--gray);
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 0;
    margin-top: auto;
}

.service-cta:hover {
    color: var(--dark-blue);
    transform: translateX(4px);
}

.service-cta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.service-cta:hover svg {
    transform: translateX(4px);
}

.services-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        gap: 24px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 24px 20px;
    }
    
    .services-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .service-number {
        top: -15px;
        left: 20px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}


/* Prices Section */
/* .prices {
    background-color: var(--light-gray);
    padding: 48px 24px;
}
.price-top{
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 16px 12px;
}

.prices-header {
    text-align: center;
    margin-bottom: 40px;
}

.prices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .prices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.price-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.price-card h3 {
    color: var(--dark-blue);
    margin-bottom: 16px;
    min-height: 60px;
}

.price-amount {
    font-size: 24px;
    font-weight: bold;
    color: var(--orange);
    margin-bottom: 16px;
}

.price-description {
    color: var(--black);
    margin-bottom: 0;
    flex-grow: 1;
} */

.prices {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.prices-header {
    text-align: center;
    margin-bottom: 60px;
}

.prices-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #004080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.prices-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 
        0 8px 32px rgba(0, 51, 102, 0.08),
        0 2px 8px rgba(0, 51, 102, 0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff8c42);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 51, 102, 0.12),
        0 4px 12px rgba(0, 51, 102, 0.06);
}

.price-card.featured {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    border: 2px solid var(--orange);
    transform: scale(1.05);
}

.price-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, var(--orange), #ff8c42, var(--orange));
}

.price-top {
    margin-bottom: 24px;
    position: relative;
}

.price-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.price-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.price-features li {
    padding: 8px 0;
    color: var(--gray);
    position: relative;
    padding-left: 24px;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

.price-amount-wrapper {
    margin: 24px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    border: 1px solid rgba(0, 51, 102, 0.1);
    min-height: 155px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1;
    margin-bottom: 4px;
}

.price-sign {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.price-period {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 4px;
}

.price-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

.price-cta {
    margin-top: auto;
}

.price-btn {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--dark-blue), #004080);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.price-btn:hover {
    background: linear-gradient(135deg, #004080, #00509e);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
}

.price-card.featured .price-btn {
    background: linear-gradient(135deg, var(--orange), #ff8c42);
}

.price-card.featured .price-btn:hover {
    background: linear-gradient(135deg, #ff8c42, #ff9e5a);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.prices-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 51, 102, 0.08);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.prices-cta-text {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 32px;
    font-weight: 500;
}

.services-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prices {
        padding: 60px 20px;
    }
    
    .prices-header h2 {
        font-size: 2rem;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .services-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .price-card {
        padding: 32px 24px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

.prices-cta {
    text-align: center;
    margin-top: 40px;
}

/* Zones Section */
.zones {
    padding: 48px 24px;
}

.zones-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .zones-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.zones-list {
    list-style: none;
}

.zones-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.zones-list li:before {
    content: "•";
    color: var(--orange);
    font-size: 20px;
    position: absolute;
    left: 0;
}



/* Map Legend */
.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 5;
    font-size: 0.8rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-default {
    background: var(--orange);
}

.legend-hover {
    background: var(--dark-blue);
}

.legend-active {
    background: #00a859;
}

/* Responsive Design */
@media (max-width: 768px) {
    .zones {
        padding: 60px 20px;
    }
    
    .zones-header h2 {
        font-size: 2rem;
    }
    
    .map-container {
        height: 400px;
    }
    
    .zones-list-container {
        max-height: 400px;
    }
    
    .map-controls {
        top: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .map-legend {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .zones-list-container {
        padding: 24px 20px;
    }
    
    .zones-list li {
        padding: 10px 12px;
        padding-left: 36px;
    }
    
    .zones-list li::before {
        left: 12px;
    }
}

/* FAQ Section */
.faq {
    background-color: var(--light-gray);
    padding: 48px 24px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-blue);
}

.faq-question:after {
    content: "+";
    font-size: 20px;
    font-weight: normal;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question:after {
    content: "-";
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Reviews Section */
.reviews {
    padding: 48px 24px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.reviewer {
    font-weight: 600;
    color: var(--dark-blue);
}

.review-stars {
    display: flex;
    gap: 4px;
}

.star {
    color: var(--yellow);
    font-size: 18px;
}

.review-text {
    color: var(--black);
    font-style: italic;
    margin-bottom: 16px;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
}

.google-logo {
    width: 16px;
    height: 16px;
}

.reviews-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 40px auto 0;
}

@media (min-width: 768px) {
    .reviews-cta {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
    }
}

/* Form Section */
.form-section {
    padding: 48px 24px;
    background-color: var(--white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 32px;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-blue);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--dark-blue);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.2);
}

.required::after {
    content: " *";
    color: var(--orange);
}

.form-submit {
    width: 100%;
    margin-top: 16px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 24px;
    background-color: #d4edda;
    border-radius: 8px;
    color: #155724;
    margin-top: 24px;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 48px 24px 32px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.error-text{
    color: red;
    display: none;
}
.error-text.show{
    display: block;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-links a:hover, .footer-links a:focus {
    color: var(--white);
    text-decoration: underline;
    outline: none;
}

.footer-cta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-bottom {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
.contact-item{
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item_icon{
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 4px;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--light-gray);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 16px;
    z-index: 1000;
}

.sticky-buttons {
    display: flex;
    gap: 16px;
}

.sticky-buttons .btn {
    flex: 1;
    padding: 12px;
    font-size: 16px;
}

/* Burger Button */
.burger-btn {
    background: none;
    border: none;
    color: var(--dark-blue);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Header */
@media (max-width: 767px) {
    .mobile-header {
        display: block;
        padding: 6px 15px;
    }
    
    .sticky-mobile-bar {
        display: block;
    }
    
    body {
        padding-bottom: 72px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-32 {
    margin-top: 32px;
}

.mb-32 {
    margin-bottom: 32px;
}

.img-fluid{
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;

}

#map {
    height: 600px;
    width: 100%;
    background: #f8f9fa; /* Фон-заглушка */
    position: relative;
}

.map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #666;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 51, 102, 0.1);
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-blue), var(--orange));
    border-radius: 16px 16px 0 0;
}

.cookie-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.cookie-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--dark-blue), #004080);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
}

.cookie-title {
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cookie-text {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-text a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-text a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    min-width: 100px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--dark-blue), #004080);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #004080, #00509e);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--gray);
}

.cookie-btn-reject:hover {
    background: var(--light-gray);
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 20px;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        border-radius: 12px;
    }
    
    .cookie-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .cookie-icon {
        align-self: center;
    }
}

/* Оптимизация отображения полигонов */
.department-polygon {
    stroke: #FF0000;
    stroke-width: 2;
    fill: #FF0000;
    fill-opacity: 0.15;
}

/* Стили для ошибок */
.error {
    border-color: #dc3545 !important;
    background-color: #fff8f8;
}

.error-text {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error-general {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    display: none;
}

.form-success {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
    text-align: center;
}

/* Стили для состояния загрузки */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Стили для обязательных полей */
.form-label.required::after {
    content: " *";
    color: #dc3545;
}

.top_line{
    position: relative;
}
.top_line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}