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

:root {
    /* Цветовая палитра */
    --white: #ffffff;
    --beige: #f5f5f0;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --mint: #a2d7c5;
    --dark-blue: #1a365d;
    --chocolate: #8B4513;
    --text-dark: #2d3748;
    --text-light: #718096;
    --border: #dee2e6;
    --shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 2px 8px rgba(0, 0, 0, 0.1);

    /* Уменьшенные переменные для адаптивности */
    --container-padding: clamp(0.4rem, 2vw, 1.5rem);
    --section-padding: clamp(0.8rem, 3vw, 2rem);
    --heading-size: clamp(1rem, 3vw, 1.6rem);
    --text-size: clamp(0.7rem, 2vw, 0.85rem);
    --small-text: clamp(0.6rem, 1.8vw, 0.75rem);
    --xs-text: clamp(0.55rem, 1.5vw, 0.65rem);
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.3;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: var(--text-size);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header - с навигацией внутри */
.header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(162, 215, 197, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.logo h2 {
    color: var(--dark-blue);
    font-size: clamp(0.75rem, 2.5vw, 1.1rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

.logo p {
    color: var(--dark-gray);
    font-size: clamp(0.5rem, 1.5vw, 0.65rem);
    margin: 0;
    margin-top: 0.05rem;
    font-weight: 400;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 1.2vw, 0.6rem);
    flex-wrap: wrap;
}

.phone {
    font-weight: 700;
    color: var(--dark-blue);
    text-decoration: none;
    font-size: clamp(0.6rem, 2vw, 0.75rem);
    transition: color 0.2s ease;
    white-space: nowrap;
}

.btn-callback {
    background: var(--mint);
    color: var(--dark-blue);
    border: none;
    padding: clamp(0.2rem, 1.2vw, 0.4rem) clamp(0.4rem, 2vw, 0.8rem);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: clamp(0.55rem, 1.8vw, 0.7rem);
    white-space: nowrap;
    min-height: 22px;
}

.btn-callback:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-1px);
}

/* Hero Background */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2d4a72 100%);
    color: var(--white);
    padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(0.8rem, 2.5vw, 1.8rem);
    text-align: center;
    margin-top: 50px;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Services Background */
.services {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.services .container {
    position: relative;
    z-index: 2;
}

/* Transport Images */
.transport-image {
    text-align: center;
    margin-bottom: 1rem;
}

.transport-image img {
    width: 100%;
    max-width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--medium-gray);
}

/* Order Button */
.btn-order {
    background: var(--dark-blue);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-order:hover {
    background: var(--mint);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--dark-blue);
}

.modal-content h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.3rem;
}

.modal-content > p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.modal-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.modal-contact-item {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--mint);
}

.modal-contact-item h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.modal-phone,
.modal-tg,
.modal-email {
    display: block;
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

.modal-phone:hover,
.modal-tg:hover,
.modal-email:hover {
    color: var(--mint);
}

.modal-note {
    background: var(--beige);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--mint);
    font-size: 0.85rem;
}

.modal-note p {
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
        width: 95%;
    }

    .transport-image img {
        height: 150px;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 10% auto;
        padding: 1rem;
    }

    .modal-contacts {
        gap: 1rem;
    }

    .modal-contact-item {
        padding: 0.8rem;
    }

    .transport-image img {
        height: 120px;
        max-width: 180px;
    }
}

/* Navigation - внутри header с выдвижной шторкой */
.nav {
    padding: 0.15rem 0;
    overflow-x: auto;
    margin-top: 50px;
    -webkit-overflow-scrolling: touch;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    min-width: max-content;
}

.nav li {
    flex: 1;
    text-align: center;
    min-width: max-content;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: clamp(0.55rem, 1.8vw, 0.7rem);
    transition: all 0.2s ease;
    padding: 0.25rem 0.3rem;
    display: block;
    border-radius: 3px;
    white-space: nowrap;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav a:hover,
.nav a.active {
    color: var(--dark-blue);
    background: var(--beige);
}



/* Кнопка бургер-меню для мобильных */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--dark-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section - уменьшенная */
.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2d4a72 100%);
    color: var(--white);
    padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(0.8rem, 2.5vw, 1.8rem);
    text-align: center;
    margin-top: 50px;
}

.hero-content h1 {
    font-size: clamp(1.1rem, 4vw, 1.8rem);
    margin-bottom: clamp(0.5rem, 2vw, 0.9rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--light-gray);
}

.hero-content p {
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    margin-bottom: clamp(0.8rem, 3vw, 1.6rem);
    opacity: 0.9;
    max-width: min(500px, 90vw);
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: clamp(0.4rem, 1.5vw, 0.6rem);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--mint);
    color: var(--dark-blue);
    border: none;
    padding: clamp(0.4rem, 1.5vw, 0.6rem) clamp(0.8rem, 3vw, 1.4rem);
    border-radius: 4px;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    min-height: 32px;
    line-height: 1.2;
}

.btn-primary:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Sections */
section {
    padding: var(--section-padding) 0;
}

h2 {
    text-align: center;
    font-size: var(--heading-size);
    margin-bottom: clamp(1rem, 3vw, 1.6rem);
    color: var(--dark-blue);
    font-weight: 700;
}

/* About Section */
.about {
    background: var(--beige);
}

.about-content {
    display: grid;
    grid-template-columns: minmax(280px, 2fr) minmax(180px, 1fr);
    gap: clamp(1rem, 3vw, 1.8rem);
    align-items: start;
}

.about-text h3 {
    color: var(--dark-blue);
    margin: clamp(0.8rem, 2.5vw, 1.2rem) 0 clamp(0.4rem, 1.5vw, 0.6rem);
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    font-weight: 600;
}

.about-text ul {
    list-style: none;
    margin-left: 0;
}

.about-text li {
    margin-bottom: clamp(0.25rem, 1.2vw, 0.4rem);
    position: relative;
    padding-left: clamp(0.8rem, 2.5vw, 1.2rem);
    line-height: 1.3;
    font-size: var(--text-size);
}

.about-text li:before {
    content: "✓";
    color: var(--mint);
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 0.9em;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: clamp(0.6rem, 1.5vw, 0.9rem);
}

.stat-card {
    background: var(--white);
    padding: clamp(0.8rem, 2.5vw, 1.2rem) clamp(0.4rem, 1.5vw, 0.6rem);
    border-radius: 6px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
}

.stat-number {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
    font-weight: 700;
    margin-bottom: clamp(0.1rem, 0.8vw, 0.25rem);
    color: var(--dark-blue);
}

.stat-text {
    font-size: var(--small-text);
    color: var(--dark-gray);
    font-weight: 500;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: clamp(0.8rem, 2.5vw, 1.4rem);
}

.service-card {
    background: var(--white);
    padding: clamp(0.8rem, 3vw, 1.6rem);
    border-radius: 6px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    border: 1px solid var(--medium-gray);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint);
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: clamp(0.4rem, 1.5vw, 0.6rem);
    text-align: center;
    font-size: clamp(0.75rem, 2.5vw, 0.95rem);
    font-weight: 600;
}

.service-card p {
    font-size: var(--text-size);
    margin-bottom: clamp(0.6rem, 1.8vw, 0.9rem);
}

.service-card ul {
    list-style: none;
    margin: clamp(0.6rem, 1.8vw, 0.9rem) 0;
}

.service-card li {
    margin-bottom: clamp(0.25rem, 1.2vw, 0.4rem);
    padding-left: clamp(0.8rem, 2vw, 1rem);
    position: relative;
    line-height: 1.3;
    font-size: var(--text-size);
}

.service-card li:before {
    content: "•";
    color: var(--mint);
    position: absolute;
    left: 0;
    font-size: 1em;
    line-height: 1;
}

/* Service Features */
.service-features {
    background: var(--light-gray);
    padding: 0.6rem;
    border-radius: 5px;
    margin: 0.6rem 0;
    border: 1px solid var(--medium-gray);
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--medium-gray);
    font-size: var(--text-size);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-label {
    color: var(--dark-blue);
    font-weight: 500;
}

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

/* Transport Section */
.transport {
    background: var(--light-gray);
}

.section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 1.2rem;
    font-size: var(--text-size);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.transport-card {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.transport-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--mint);
}

.transport-card.popular {
    border-color: var(--mint);
    background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
}

.popular-badge {
    position: absolute;
    top: -6px;
    right: 12px;
    background: var(--dark-blue);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    z-index: 2;
}

.transport-header {
    text-align: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--medium-gray);
}

.transport-header h3 {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.transport-specs {
    color: var(--dark-gray);
    font-size: var(--small-text);
    font-weight: 500;
}

.transport-pricing {
    text-align: center;
    margin-bottom: 0.8rem;
    padding: 0.6rem;
    background: var(--beige);
    border-radius: 6px;
    border: 1px solid var(--mint);
}

.price-main {
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    display: block;
}

.price-period {
    font-size: var(--small-text);
    color: var(--dark-gray);
    display: block;
}

.price-secondary {
    font-size: var(--small-text);
    color: var(--dark-blue);
    font-weight: 500;
}

.transport-features {
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.transport-features h4 {
    color: var(--dark-blue);
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.transport-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.transport-features li {
    margin-bottom: 0.25rem;
    padding-left: 0.8rem;
    position: relative;
    font-size: var(--text-size);
    line-height: 1.3;
}

.transport-features li:before {
    content: "•";
    color: var(--mint);
    position: absolute;
    left: 0;
    font-size: 1em;
    line-height: 1;
}

.transport-advantage {
    background: var(--light-gray);
    padding: 0.6rem;
    border-radius: 5px;
    margin-bottom: 0.8rem;
    border-left: 3px solid var(--mint);
    font-size: var(--text-size);
}

.transport-advantage strong {
    color: var(--dark-blue);
}

.transport-footer {
    text-align: center;
    margin-top: 1.2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--mint);
}

.call-cta h3 {
    color: var(--dark-blue);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.btn-call-large {
    display: inline-block;
    background: var(--dark-blue);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin: 0.25rem;
    border: none;
    cursor: pointer;
}

.btn-call-large:hover {
    background: var(--mint);
    color: var(--dark-blue);
    transform: translateY(-1px);
}

.call-cta p {
    color: var(--dark-gray);
    font-size: var(--small-text);
    margin-top: 0.6rem;
}

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

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-card {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: #2c3e50;
}

.contact-card p {
    color: #6c757d;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-size: var(--text-size);
    flex-grow: 1;
}

.contact-info {
    margin: 0.8rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.contact-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: center;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
    min-width: 140px;
}

.contact-link:hover {
    color: #2980b9;
    background: var(--medium-gray);
}

.contact-handle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #3498db;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
    min-width: 140px;
}

.email-link {
    word-break: break-all;
    font-size: 0.8rem;
    min-width: 120px;
}

.btn-contact {
    width: 100%;
    padding: 0.8rem 1.1rem;
    background: var(--mint);
    color: var(--dark-blue);
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.btn-contact:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-1px);
}

/* Contact Notes */
.contact-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 20px;

}

.note-card {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border-bottom: 3px solid #3498db;
}

.note-card h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.note-card ul {
    list-style: none;
    padding: 0;
}

.note-card li {
    padding: 0.25rem 0;
    color: #6c757d;
    position: relative;
    padding-left: 0.9rem;
    font-size: var(--text-size);
}

.note-card li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 1.2rem 0 0.6rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.6rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-section p {
    color: #cbd5e0;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    font-size: var(--text-size);
}

.contact-info {
    margin-bottom: 0.6rem;
}

.contact-item {
    margin-bottom: 0.4rem;
    gap: 0.1rem;
}

.contact-item strong {
    color: var(--white);
    font-size: var(--small-text);
}

.contact-item a,
.contact-item span {
    color: #cbd5e0;
    text-decoration: none;
    font-size: var(--small-text);
}

.contact-item a:hover {
    color: var(--mint);
}

.legal-info {
    margin-top: 0.8rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.legal-item {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    font-size: 0.65rem;
}

.legal-item strong {
    color: var(--mint);
    min-width: 80px;
    font-size: 0.6rem;
}

.legal-item span {
    color: #cbd5e0;
    font-size: 0.6rem;
    flex: 1;
}

.footer-disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 0.8rem;
    border-radius: 6px;
    margin: 1rem 0;
    border-left: 3px solid var(--mint);
}

.disclaimer-content {
    color: #cbd5e0;
    font-size: 0.65rem;
    line-height: 1.3;
}

.disclaimer-content p {
    margin-bottom: 0.6rem;
}

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

.disclaimer-content strong {
    color: var(--mint);
    font-size: 0.7rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0aec0;
    font-size: var(--small-text);
}

/* Скрытый SEO-текст */
.seo-text {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

/* Responsive Design - выдвижная шторка для навигации */
@media (max-width: 768px) {
    .header {
        padding: 0.15rem 0;
    }

    .header-top {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .burger-menu {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        border-top: 1px solid var(--medium-gray);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 0;
        max-height: 0;
        overflow: hidden;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        padding: 0.5rem 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
    }

    .nav li {
        flex: none;
        text-align: left;
    }

    .nav a {
        padding: 0.6rem var(--container-padding);
        justify-content: flex-start;
        border-radius: 0;
        border-bottom: 1px solid var(--medium-gray);
        min-height: 40px;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .transport-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .contact-notes {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .hero {
        margin-top: 70px;
    }

    /* Уменьшение отступов для мобильных */
    section {
        padding: 0.6rem 0;
    }

    .services-grid,
    .transport-grid,
    .contact-cards {
        gap: 0.6rem;
    }

    /* Уменьшение высоты карточек */
    .service-card,
    .transport-card,
    .contact-card {
        padding: 0.6rem;
    }

    /* Уменьшение отступов в заголовках */
    h2 {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .transport-card {
        padding: 0.6rem;
    }

    .contact-card {
        padding: 0.8rem 0.5rem;
    }

    .note-card {
        padding: 0.6rem;
    }

    .footer-disclaimer {
        padding: 0.6rem;
    }

    .hero {
        margin-top: 80px;
        padding: clamp(2rem, 6vw, 3rem) 0 clamp(0.6rem, 2vw, 1rem);
    }

    /* Дополнительное уменьшение для очень маленьких экранов */
    .header-top {
        gap: 0.15rem;
    }

    .header-contacts {
        gap: 0.15rem;
    }

    .btn-callback {
        min-height: 20px;
    }

    .nav a {
        min-height: 35px;
    }

    .btn-primary {
        min-height: 28px;
    }

    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.5rem;
    }

    .stat-card {
        padding: 0.6rem 0.4rem;
    }

    .stat-number {
        font-size: clamp(0.8rem, 3vw, 1.1rem);
    }

    .transport-footer {
        padding: 0.8rem;
        margin-top: 0.8rem;
    }

    .btn-call-large {
        padding: 0.7rem 1.3rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .header {
        position: relative;
    }

    .hero {
        margin-top: 0;
    }

    /* Дополнительные корректировки для очень маленьких экранов */
    .container {
        padding: 0 0.25rem;
    }

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

    .contact-cards,
    .contact-notes {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    /* Уменьшение минимальной высоты элементов */
    .nav a {
        min-height: 30px;
        font-size: 0.5rem;
    }

    .btn-callback {
        min-height: 18px;
        font-size: 0.5rem;
    }
}