/*
Theme Name: mission
Description: Кастомная тема для сайта mission
Version: 1.0
*/

@font-face {
    font-family: 'TT Neoris Trial';
    src: url('font/TT Neoris Trial Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Neoris Trial';
    src: url('font/TT Neoris Trial Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Neoris Trial';
    src: url('font/TT Neoris Trial Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

/* Variables */
:root {
    --primary-color: #ea0029;
    --secondary-color: #000000;
    --white: #ffffff;
    --gray-3: #F2F2F2;
    --gray-2: #E6E6E6;
    --gray-1: #CCCCCC;
    --font-family: 'TT Neoris Trial';
    --container-width: 1200px;
    --header-height: 80px;
}

/* Base */
html {
    scroll-behavior: smooth;
    font-size: 1rem;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1rem;
}

/* Smooth transitions for all elements */
*, *::before, *::after {
    transition: all 0.3s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
strong {
	font-weight: 500;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    height: var(--header-height);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* Header Contact */
.header-contact {
    flex-shrink: 0;
}

.phone {
    color: var(--primary-color);
    font-weight: normal;
    font-size: 1rem;
    text-decoration: none;
}

.phone:hover {
    color: var(--secondary-color);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

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

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

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

/* Main */
.main {
    margin-top: var(--header-height);
}

/* Hero Section */
.hero {
	background: var(--white);
	padding: 0;
	height: 500px;
	margin-top: 80px;
}

.hero .container {
    padding: 0;
    max-width: 100%;
}

.hero-layout {
    display: flex;
    height: 500px;
}

.hero-banner {
    flex: 0 0 60%;
    height: 500px;
    background: #E5E6E7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero-calculator {
    flex: 0 0 40%;
    height: 500px;
    background: var(--gray-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-widget {
    width: 100%;
    height: 100%;
    background:var(--secondary-color);
    padding: 20px;
    color: white;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.calc-header h3 {
    color: white;
    font-size: 1rem;
    font-weight: normal;
    margin: 0;
}

.calc-track-btn {
    background: #666;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.calc-track-btn:hover {
    background: #777;
}

.calc-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
}

.calc-params-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-cities, .calc-params {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-field label {
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
}

.calc-field select, .calc-field input {
    background: transparent;
    color: white;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
}

/* Убираем стрелочки для input type="number" */
.calc-field input[type="number"]::-webkit-outer-spin-button,
.calc-field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc-field input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.calc-field select:focus, .calc-field input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.calc-field select option {
    background: #404040;
    color: white;
}

.calc-result {
    background: #1a1a1a;
    border-radius: 0;
    padding: 15px;
    margin: 10px 0;
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    font-size: 14px;
}

.result-row.discount {
    color: #4CAF50;
}

.result-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: normal;
    color: var(--primary-color);
    border-top: 1px solid #333;
    padding-top: 10px;
    margin-top: 10px;
}

.calc-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffa500;
    font-size: 14px;
    margin: 10px 0;
}

.calc-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 0;
    padding: 8px 15px;
    margin: 0;
    border: 0;
    box-shadow: 0 ;
}

.calc-promo span {
    font-size: 20px;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2));
}

.calc-promo span svg {
	color: #d35400;
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.promo-percent {
    font-size: 1rem;
    font-weight: normal;
    color: #d35400;
    line-height: 1;
}

.promo-text {
    font-size: 12px;
    color: #d35400;
    font-weight: normal;
    line-height: 1.2;
}

.calc-main-btn, .calc-order-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.calc-main-btn:hover, .calc-order-btn:hover {
    background: #c40125;
}

.calc-order-btn {
    background: var(--primary-color);
    font-size: 1rem;
    padding: 15px 20px;
}

/* Loading animation для кнопок */
.calc-main-btn.loading::after, .calc-order-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: mv_spin 1s linear infinite;
}

.calc-main-btn.loading .btn-text, .calc-order-btn.loading .btn-text {
    opacity: 0;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: 0;
    font-size: 1rem;
    font-weight: normal;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 0;
}

.btn-primary {
	background: var(--primary-color);
	color: var(--white);
	border: 2px solid var(--primary-color);
	text-align: center;
}

.btn-primary:hover {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 0px solid var(--white);
}

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

/* Sections */
.section {
    padding: 3rem 0;
}


.section-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    text-align: center;
}

.section-description {
    margin: 1rem 0;
    text-align: center;
}

/* About Section Styles */
.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

 #about {
    background: var(--gray-3);
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-3);
    border-bottom: 1px solid var(--gray-3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-medium);
    font-weight: normal;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.feature-item:hover {
      box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color)  ;
  border-radius: 0;
    flex-shrink: 0;
    border: none;
}

.feature-icon i,
.feature-icon svg {
    width: 1.5rem  ;
    height: 1.5rem  ;
    color: #ffffff  ;
    stroke: #ffffff  ;
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray-medium);
    line-height: 1.6;
}



/* Services Section Styles */

section#services {
    background: var(--white);
}
#services {
	padding-top: 0;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 0;
}

.service-buttons .btn-primary {
	background: var(--primary-color);
	color: var(--white);
	border: 2px solid var(--primary-color);
	text-align: center;
	width: 50%;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card {
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}



.service-icon {
	width: 100%;
	height: 200px;
	position: relative;
	background: #ffffff;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}

.service-icon i,
.service-icon svg {
    width: 4rem;
    height: 4rem;
    color: #ffffff;
    stroke: #ffffff;
}

.service-title {
    font-size: 1.25rem;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
    padding: 1.5rem 2rem 0 2rem;
}

.service-description {
    color: var(--gray-medium);
    line-height: 1.6;
    text-align: center;
    padding: 0 2rem;
    flex: 1;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    position: relative;
    padding-left: 1.5rem;
}

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

/* Service item wrapper */
.service-item {
    display: flex;
    flex-direction: column;
}


.services-cta {
    text-align: center;
    background: var(--gray-3);
    padding: 3rem 2rem;
    border-radius: 0;
    margin-top: 3rem;
}

.services-cta h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: normal;
}

.services-cta p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}


.service-buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}


.service-tariff-price {
    text-align: center;
    margin-bottom: 1rem;
}

.service-price-from {
    font-size: 1rem;
    color: var(--gray-medium);
}

.service-price-value {
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--primary-color);
    margin: 0 0.25rem;
}

.service-price-currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: normal;
}




#tariffs {
	padding: 0;
}
/* Дополнительные стили для новой структуры тарифов */
	
	
.tariff-minimal {
    background: var(--gray-3);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

.tariff-minimal h4 {
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
}

	.tariffs-tab-content h4 {
	font-weight: 500;
		margin-bottom: 1rem;
}
	
	
.minimal-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.minimal-item {
    display: flex;
    gap: 0.5rem;
}

.minimal-weight {
    font-weight: 500;
    color: var(--secondary-color);
}

.minimal-price {
    color: var(--primary-color);
    font-weight: 500;
}

.tariffs-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.weight-tariffs, .volume-tariffs {
    background: var(--white);
    padding: 1.5rem;
    border: 1px solid var(--gray-3);
}

.weight-tariffs h5, .volume-tariffs h5 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.tariff-list {
    list-style: none;
    padding: 0;
}

.tariff-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-3);
}

.tariff-list li:last-child {
    border-bottom: none;
}

.tariff-range {
    color: var(--secondary-color);
}

.tariff-price {
    font-weight: 500;
    color: var(--primary-color);
}

.delivery-time {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--gray-3);
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .minimal-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tariffs-tables {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}





/* Outline button style */
.btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	width: 50%;
	text-align: center;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);

}

/* Tariffs Section Styles */
.tariffs-intro {
    margin-bottom: 3rem;
}

/* Tariffs Tabs */
.tariffs-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
    border: 1px solid var(--gray-3);
    border-radius: 0;
    overflow: hidden;
}

.tariff-tab {
    background: var(--white);
    color: var(--gray-dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    font-family: var(--font-family);
    border-right: 1px solid var(--gray-3);
}

.tariff-tab:last-child {
    border-right: none;
}

.tariff-tab:hover {
    background: var(--gray-3);
}

.tariff-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Tab Content */




.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Tariff Table */
.tariff-table-container {
    background: var(--white);
    border: 0px solid var(--gray-3);
    border-radius: 0;
    overflow: hidden;
}

.tariff-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background:none;
    border-bottom: 1px solid var(--gray-3);
}

.tariff-table-header h3 {
    font-size: 1.25rem;
    font-weight: normal;
    color: var(--secondary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tariff-table-header h3 i {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--primary-color);
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: normal;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #c40125;
}

.download-btn i {
    width: 1rem;
    height: 1rem;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.tariff-table th {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: normal;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-3);
}

.tariff-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-3);
}

.tariff-table tbody tr:hover {
    background: var(--gray-3);
}

.tariff-table tbody tr:last-child td {
    border-bottom: none;
}

.tariff-actions {
    padding: 1rem;
    text-align: center;
    background: none;
}

/* Other Directions */
.other-directions {
    padding: 0rem;
}

.direction-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-3);
}

.direction-group:last-child {
    border-bottom: none;
}


.direction-group p {
    margin: 0;
    font-size: 1rem;
}

.price-range {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-weight: normal;
    font-size: 1rem;
    white-space: nowrap;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 0;
}

.tariff-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tariff-btn {
    text-align: center;
    width: 100%;
    margin-top: auto;
}

.tariff-card {
    background: var(--white);
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-3);
    position: relative;
}

.tariff-card:hover {

    box-shadow: none;
}

.tariff-card.featured {
    border-color: var(--gray-3);
}



.tariff-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: normal;
}

.tariff-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tariff-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c2c2c  ;
  border-radius: 0;
    flex-shrink: 0;
    border: none;
    margin: 0 auto 1rem auto;
}

.tariff-icon i,
.tariff-icon svg {
    width: 1.5rem  ;
    height: 1.5rem  ;
    color: #ffffff  ;
    stroke: #ffffff  ;
}

.tariff-title {
    font-size: 1.25rem;
    font-weight: normal;
    color: var(--secondary-color);
}

.tariff-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-from {
    font-size: 1rem;
    color: var(--gray-medium);
}

.price-value {
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--primary-color);
    margin: 0 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: normal;
}

.tariff-description {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tariff-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.tariff-features li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
}

.tariff-routes {
    background: var(--gray-3);
    padding: 1rem;
    border-radius: 0;
    font-size: 0.875rem;
    color: var(--gray-dark);
    line-height: 1.6;
}



.tariffs-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.info-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-3);
}

.info-block:hover {
    box-shadow: none;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-block h4 {
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: normal;
}

.info-block ul {
    list-style: none;
    padding: 0;
}

.info-block li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    position: relative;
    padding-left: 1.5rem;
}

.info-block li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tariffs-calculator-promo {
    text-align: center;
    background:var(--gray-3);
    color: var(--secondary-color);
    padding: 3rem 2rem;
    border-radius: 0;
}

.tariffs-calculator-promo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.tariffs-calculator-promo p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: var(--gray-medium);
}

.tariffs-calculator-promo .btn {
    background:  var(--primary-color);
    color: var(--white);
    border: 0;
}

.tariffs-calculator-promo .btn:hover {
    background: var(--primary-color);

}

/* Tariffs Mobile Responsive */
@media (max-width: 768px) {
    .tariffs-tabs {
        flex-direction: column;
        gap: 0;
    }

    .tariff-tab {
        border-right: none;
        border-bottom: 1px solid var(--gray-3);
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .tariff-tab:last-child {
        border-bottom: none;
    }

    .tariff-table-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding: 1rem;
    }

    .download-btn {
        text-align: center;
        justify-content: center;
    }

    .tariff-table {
        font-size: 0.85rem;
    }

    .tariff-table th,
    .tariff-table td {
        padding: 0.75rem 0.5rem;
    }

    .direction-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .direction-group div:first-child {
        flex: 1;
    }

    .price-range {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .tariff-table-container {
        margin: 0 ;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }

    .tariff-table {
        font-size: 0.8rem;
    }

    .tariff-table th,
    .tariff-table td {
        padding: 0.5rem 0.25rem;
    }

    .tariff-table th:first-child,
    .tariff-table td:first-child {
        padding-left: 0.5rem;
    }

    .tariff-table th:last-child,
    .tariff-table td:last-child {
        padding-right: 0.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }


    .tariffs-grid {
        grid-template-columns: 1fr;
    }
    
    .tariff-card.featured {
        transform: none;
    }
    
  


    .tariffs-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-cta,
    .tariffs-calculator-promo {
        padding: 2rem 1rem;
    }
}

/* Footer */
.footer {
    background: var(--gray-3);
    color: var(--secondary-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
    }

    .footer-section {
        text-align: center;
    }
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}
.footer-section .btn {
    width:fit-content;
    margin-top: 1rem;

}


.footer-description {
    color: var(--gray-dark);
    margin-top: 15px;
}

.footer-contacts p {
    margin-bottom: 10px;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
}

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

.footer-menu li {
    margin-bottom: 10px;
}

.footer-address {
    color: var(--gray-dark);
}

.footer-schedule p {
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.footer-bottom {
    border-top: 1px solid var(--secondary-color);
    padding-top: 20px;
    text-align: center;
    color: var(--gray-dark);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 40px 20px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        font-size: 1rem;
        font-weight: normal;
        color: var(--secondary-color);
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: var(--primary-color);
        color: var(--white);

    }

    .nav-link:hover::after {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .header-contact {
        display: none;
    }
}

/* Contacts Section Styles */
.contacts {
    background: var(--white);
	padding-top: 0;
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-single-block {
	border-radius: 0;
	padding: 2rem;
	transition: all 0.3s ease;
	border: 1px solid var(--gray-3);
}

.contact-single-block:hover {
    box-shadow:none;}

.contact-line {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-line:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color)  ;
  border-radius: 0;
    flex-shrink: 0;
    border: none;
}

.contact-icon i,
.contact-icon svg {
    width: 1.5rem  ;
    height: 1.5rem  ;
    color: #ffffff  ;
    stroke: #ffffff  ;
}

/* Стили для inline иконок в заголовках и текстах */
h3 i[data-lucide],
h4 i[data-lucide],
span i[data-lucide] {
    width: 1.2em  ;
    height: 1.2em  ;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Стили для иконок в h4 с обертками */
.info-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 0;
    flex-shrink: 0;
    border: none;
    margin-right: 0.75rem;
}

.info-icon i,
.info-icon svg {
    width: 1.5rem  ;
    height: 1.5rem  ;
    color: #ffffff  ;
    stroke: #ffffff  ;
}

/* Стили для иконок в калькуляторе */
.calc-delivery i[data-lucide],
.calc-promo i[data-lucide] {
    width: 1.2rem  ;
    height: 1.2rem  ;
    margin-right: 0.5rem;
}

/* Стили для иконок в popup */
.mv_warning i[data-lucide] {
    width: 1rem  ;
    height: 1rem  ;
    color: #f59e0b  ;
    stroke: #f59e0b  ;
}

.contact-content h3 {
    font-size: 1.125rem;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-link {
    color: var(--gray-medium);
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s ease;
}


.contact-note {
    font-size: 0.875rem;
    color: var(--gray-medium);
    font-style: italic;
}

.contact-text {
    flex: 1;
    line-height: 1.4;
}

.contact-text strong {
    color: var(--secondary-color);
    font-size: 1.125rem;
    font-weight: normal;
}

.contact-text small {
    color: var(--gray-medium);
    font-style: italic;
}

/* Form Styles */
.form-container {
	padding: 2rem;
	border-radius: 0;
	border: 0;
	transition: all 0.3s ease;
	background: var(--secondary-color);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.zapros-form-section .form-container {
    background: var(--white);
    border: 1px solid var(--gray-3);
text-align: left;
	align-items: flex-start;
}

.form-container h3 {
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--white);
    margin-bottom: 1rem;
}

.zapros-form-section .form-container h3 {
    color: var(--secondary-color);
}
.wpcf7-list-item {
	margin: 0;
}
.form-description {
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}



.form-field input,
.form-field textarea {
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-radius: 0;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    background: transparent;
    color: #ffffff;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #cccccc;
    opacity: 1;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: #ffffff;
    box-shadow: none;
}

/* Убираем желтый фон автозаполнения */
.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:hover,
.form-field input:-webkit-autofill:focus,
.form-field input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--secondary-color) inset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--white);
    line-height: 1.4;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    background: #c40125;
    box-shadow: none;
}

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

/* Loading animation для формы */
.form-submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: mv_spin 1s linear infinite;
}

.form-submit-btn.loading .btn-text {
    opacity: 0;
}

.form-benefits {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.benefit-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.benefit-item span:last-child {
    font-size: 0.875rem;
    color: var(--gray-dark);
    font-weight: normal;
}

/* Contacts CTA */
.contacts-cta {
    padding: 2rem;
    padding-left: 0;
    border-radius: 0;
    border: 0;
    text-align: left;
    transition: all 0.3s ease;
}





.contacts-cta:hover {

    box-shadow: none;}

.contacts-cta h3 {
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contacts-cta p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contacts-cta .btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 0;
    font-weight: normal;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contacts-cta .btn:hover {
    background: #c40125;

    box-shadow: none;
}

/* Responsive Contacts */
@media (max-width: 768px) {
    .contacts-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .contact-single-block {
        padding: 1.5rem;
    }

    .contact-line {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }

    .contact-icon {
        align-self: center;
    }

    .contacts-cta {
        padding: 1.5rem;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .contacts-cta .btn {
     width: 100%;
    }
    


}

@media (max-width: 480px) {
    .form-container {
        padding: 1rem;
    }
    .contacts-cta .btn {
        width: 100%;
       }
    .contacts-info {
        gap: 1rem;
    }

    .contact-single-block {
        padding: 1rem;
    }

    .contacts-cta {
        padding: 1rem;
    }

    .contacts-cta h3 {
        font-size: 1.25rem;
    }

    /* Hero adaptive */
    .hero {
        height: auto;
        padding: 0;
    }

    .hero-layout {
        flex-direction: column;
        height: auto;
    }

    .hero-banner {
        flex: none;
        width: 100%;
        height: 300px;
        order: 2;
    }

    .hero-calculator {
        flex: none;
        width: 100%;
        height: auto;
        order: 1;
    }

    .calculator-placeholder h3 {
        font-size: 20px;
    }

    /* Sections adaptive */
    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 30px;
        text-align: center;
    }

    /* Footer adaptive */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Calculator mobile adaptive */
    .calc-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .calc-cities, .calc-params {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Mobile Small additional styles */
    .container {
        padding: 0 15px;
    }

    .header-content {
        padding: 0 5px;
    }

    .nav-menu {
        padding: 30px 15px;
    }

    .nav-link {
        padding: 12px 15px;
        font-size: 1rem;
    }
}

/* Large screens optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
  
}

/* Popup Styles */
.mv_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.mv_modal {
  background: var(--white);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
border-radius: .0;
}

.mv_modal-header {
  background: var(--secondary-color);
  color: var(--white);
  padding: 20px 25px;
  font-size: 20px;
  font-weight: normal;
  position: relative;
  text-align: center;
}

.mv_close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.mv_close-btn:hover {
  color: var(--primary-color);
}

.mv_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 30px 25px;
}

.mv_card {
  background: var(--gray-3);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
border-radius: .0;
}

.mv_card:hover {
border: 1px solid var(--primary-color);
  box-shadow: none;
}

.mv_icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color)  ;
  border-radius: .0;
  flex-shrink: 0;
  border: none;
  margin: 0 auto 15px auto;
}

.mv_icon i,
.mv_icon svg {
  width: 1.5rem  ;
  height: 1.5rem  ;
  color: #ffffff  ;
  stroke: #ffffff  ;
}

.mv_price {
  font-size: 32px;
 font-weight: normal;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.mv_description {
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 25px;
  min-height: 70px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.mv_btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: .0;
  padding: 12px 25px;
  font-size: 1rem;
 font-weight: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv_btn:hover {
  background: #c40125;

}

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

/* Loading animation */
.mv_btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: mv_spin 1s linear infinite;
}

.mv_btn.loading .btn-text {
  opacity: 0;
}

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

.mv_note {
  background: var(--gray-3);
  border: 1px solid var(--gray-3);
  padding: 15px 25px;
  margin: 0 25px 25px;
  font-size: 14px;
  color: var(--secondary-color);
  display: flex;
  align-items: flex-start;
  gap: 10px;
border-radius: .0;
}

.mv_warning {
  color: var(--secondary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Tablet Popup */
@media (max-width: 1024px) and (min-width: 769px) {
  .mv_container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 25px 20px;
  }
  
  .mv_card {
    padding: 25px 15px;
  }
  
  .mv_icon {
    width: 3rem;
    height: 3rem;
  }
  
  .mv_price {
    font-size: 28px;
  }
  
  .mv_description {
    font-size: 14px;
    min-height: 45px;
  }
}

/* Mobile Popup */
@media (max-width: 768px) {
  .mv_modal {
    width: 95%;
    margin: 20px;
  }
  
  .mv_modal-header {
    padding: 15px 32px;
    font-size: 1rem;
  }
  
  .mv_container {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 15px;
  }
  
  .mv_card {
    padding: 25px 15px;
  }
  
  .mv_icon {
    width: 3rem;
    height: 3rem;
  }
  
  .mv_price {
    font-size: 28px;
  }
  
  .mv_note {
    margin: 0 20px 20px;
    padding: 12px 15px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .mv_modal {
    width: 98%;
    margin: 10px;
  }
  
  .mv_modal-header {
    padding: 12px 32px;
    font-size: 1rem;
  }
  
  .mv_container {
    padding: 15px;
    gap: 12px;
  }
  
  .mv_card {
    padding: 20px 12px;
  }
  
  .mv_icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 10px;
  }
  
  .mv_price {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .mv_description {
    font-size: 14px;
    min-height: 40px;
    margin-bottom: 20px;
  }
  
  
  .mv_note {
    margin: 0 15px 15px;
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* Directions Info Styles */
.directions-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.direction-block {
  background: var(--white);
  padding: 2rem;
  border-radius: 0;
  border: 1px solid var(--gray-3);
  transition: all 0.3s ease;
}

.direction-block:hover {
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}


.direction-header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.direction-header-icon {
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	border-radius: 0;
	flex-shrink: 0;
	border: none;
	margin-right: 0.75rem;
	color: white;
}

.direction-block h3 {
  font-size: 1.25rem;
 font-weight: 500;
  color: var(--secondary-color);
}

.direction-block h3 i {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--primary-color);
}

.direction-block p {
  color: var(--gray-medium);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.direction-block ul {
  list-style: none;
  padding: 0;
}

.direction-block li {
  padding: 0.5rem 0;
  color: var(--gray-dark);
  position: relative;
  padding-left: 1rem;
	font-size: .95rem;
}

.direction-block li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.cities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.cities-column ul {
  margin: 0;
}

/* Map Styles */
.directions-container {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
}

.map-header {
  color: var(--secondary-color);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-title {
  font-size: 20px;
  font-weight: normal;
}

.map-controls {
  display: flex;
  gap: 10px;
}

.control-btn {
  background: var(--gray-3);
  border: 1px solid var(--gray-medium);
  color: var(--secondary-color);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.control-btn:hover {
  background: var(--primary-color);
  color: var(--white);

}

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

.map-wrapper {
  position: relative;
}

#map {
  height: 600px;
  width: 100%;
  position: relative;
 border-radius: 0;
}

/* Плавность линий маршрутов */
.route-line {
  transition: all 0.3s ease;
  will-change: transform;
}

.leaflet-zoom-anim .route-line {
  transition: none  ;
}

/* Route Info Panel */
.route-info {
  position: absolute;
  top: 70px;
  right: 20px;
  background: var(--white);
  border-radius: 0;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  min-width: 280px;
  max-height: 400px;
  overflow-y: auto;
}

.route-info h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1rem;
}

.route-item {
  padding: 10px;
  border-radius: 0;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
  background: var(--gray-3);
}

.route-item:hover {
  background: #2c2c2c;
  color: #ffffff;
  transform: translateX(5px);
}

.route-item.active {
  background: #2c2c2c;
  color: #ffffff;
}

.route-name {
  font-weight: normal;
  margin-bottom: 5px;
}

.route-distance {
  font-size: 12px;
  opacity: 0.8;
}

/* City Cards */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.city-card {
  background: var(--white);
  border: 1px solid var(--gray-3);
 border-radius: 0;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}




.city-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.city-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: var(--gray-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary-color);
}

.city-name {
  font-size: 1.25rem;
 font-weight: normal;
  color: var(--secondary-color);
}

.city-info {
  color: var(--gray-medium);
  font-size: 14px;
  margin-bottom: 15px;
}

.city-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.city-stat {
  text-align: center;
  padding: 10px;
  background: var(--gray-3);
  border-radius: 0;
}

.city-stat-number {
  font-weight: normal;
  color: var(--primary-color);
  font-size: 1rem;
}

.city-stat-label {
  font-size: 12px;
  color: var(--gray-medium);
}

.city-order-btn {
	background: var(--primary-color);
	font-size: 1rem;
	padding: 15px 20px;
	border: 0;
	border-radius: 0;
	width: 100%;
	color: white;
	font-weight: 500;
cursor: pointer;
}



/* Custom Popup Styles */
.leaflet-popup {
  z-index: 10000  ;
}

.leaflet-popup-content-wrapper {
  background: var(--white);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10001  ;
}

.leaflet-popup-content {
  margin: 15px;
  font-family: var(--font-family);
}

.popup-title {
  color: var(--primary-color);
  font-weight: normal;
  font-size: 1rem;
  margin-bottom: 10px;
}

.popup-info {
  color: var(--gray-dark);
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Map Styles */
@media (max-width: 768px) {
  
	.directions-info {

  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
 
}
	
	.route-info {
        position: relative;
        top: 0;
        right: 0;
        margin: 1rem 0;
        width: 100%;
        max-height: 570px;
    }
  .map-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }

  #map {
    height: 400px;
  }

  .footer-bottom p {
    padding: 0 2rem;
  }
}



.leaflet-bottom.leaflet-right {
	display: none  ;
}

/* Page Header Styles */
.page-header {
    text-align: center;
    padding: 3rem 0;
}

.page-title {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 500;
}

.page-description {
    text-align: center;
    color: var(--secondary-color);
}

/* Zapros Page Styles */
.zapros-page {
    background: var(--white);
    margin-bottom: 3rem;
   
}

.zapros-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.zapros-form-section {
    background: var(--white);
}

.form-title {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
}

.form-subtitle {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-align: left;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-align: left;
}

.required {
    color: var(--primary-color);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid var(--gray-1);
    background: transparent !important;
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--secondary-color);
    transition: border-color 0.3s ease;
}

.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:hover,
.form-field input:-webkit-autofill:focus,
.form-field input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: var(--secondary-color) !important;
    background: transparent !important;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-section-title {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid var(--gray-2);
    padding-bottom: 0.5rem;
}

.form-checkbox {
    margin-bottom: 2rem;
}

.form-checkbox input {
    margin-right: 0.5rem;
}

.form-checkbox label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    text-align: left;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background: #d0001f;
}

.zapros-sidebar {
    background: var(--white);
    padding: 2rem;
    height: fit-content;
    border: 1px solid var(--gray-3);
}

.zapros-sidebar-title {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 500;
}

.zapros-sidebar-description {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    line-height: 1.5;
}

.zapros-sidebar-contacts {
    margin-bottom: 2rem;
}

.zapros-sidebar-contact-title {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.zapros-sidebar-city-contact {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gray-3);
    border-left: 4px solid var(--primary-color);
}

.zapros-sidebar-city-name {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 500;
}

.zapros-sidebar-city-phone {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
}

.zapros-sidebar-city-phone:hover {
    text-decoration: underline;
}

.zapros-sidebar-cta {
    padding: 1.5rem;
    background: var(--gray-3);
    text-align: center;
}

.zapros-sidebar-cta h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1rem;
	font-weight: 500;
}

.zapros-sidebar-cta p {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.zapros-sidebar-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile positioning fix */
@media (max-width: 768px) {
    .zapros-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .zapros-form-section {
        order: 1;
    }

    .zapros-sidebar {
        order: 2;
    }
}

.thank-you-page {
	margin-top: 75px;
	text-align: center;
	padding: 3rem 0;
}

.thank-you-actions .btn {
	display: flex;
	gap: 1rem;
	width: fit-content;
	justify-content: center;
	align-items: center;
}

.thank-you-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
}






















      /* Workflow Section */
       .workflow {
    background: var(--white);
    padding-bottom: 3rem;
}
        .workflow .section-title {
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: var(--secondary-color);
            position: relative;
            text-align: center;
        }

        .workflow .section-description {
            margin: 1rem 0;
            text-align: center;
            color: var(--gray-dark);
        }

        .workflow-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(410px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .step-item {
            background: var(--gray-3);
            border-left: 4px solid var(--primary-color);
            padding: 2rem 2rem 1.5rem 2rem;
            border-radius: 0;
            transition: all 0.3s ease;
            position: relative;
        }

        .step-item:hover {
            transform: translateY(-5px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            position: absolute;
            top: -16px;
            left: -20px;
            width: 40px;
            height: 40px;
            background: var(--secondary-color);
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .step-item h3 {
            margin-bottom: 1rem;
            font-size: 1.25rem;
            color: var(--secondary-color);
            font-weight: 500;
        }

        .step-item p {
            color: var(--gray-dark);
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .workflow-steps {
                grid-template-columns: 1fr;
            }

.step-item {
  
    margin-left: .5rem;
}
    .step-number {
            left: 44%;
        }

        }



















/* Tariffs Additional Info */
.tariffs-additional-info {
	margin-top: 1rem;
}

.tariffs-offices {
    margin-bottom: 2.5rem;
}

.tariffs-offices h4,
.tariffs-conditions h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-family);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.office-item {
    background: var(--gray-3);
    padding: 1.5rem;
}

.office-address {
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: var(--font-family);
}

.office-phone {
    color: var(--secondary-color);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-family);
}

.office-phone a {
    color: inherit;
    text-decoration: none;
}

.office-phone a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.conditions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conditions-list li {
    background: var(--white);
    border: 1px solid var(--gray-3);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2.5rem;
    font-family: var(--font-family);
    font-weight: 400;
}

.conditions-list li::before {
    content: "⚠️";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.conditions-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
  
    
    .office-item {
        padding: 1rem;
    }
    
    .conditions-list li {
        padding: 0.75rem 1rem;
        padding-left: 3rem;
    }
}


.express-minimal {
	background: var(--gray-3);
	padding: 1.5rem;
	margin-bottom: 1rem;
	border-left: 4px solid var(--primary-color);
}


.expedition-table {
	padding: 1rem 0;
}

.expedition-conditions {
	margin-top: 1rem;
}


.thank-you-page h1 {
	font-weight: 500;
}