:root {
    --primary-color: #1a472a;
    --secondary-color: #2d5a3d;
    --accent-color: #4a7c59;
    --accent-gold: #d4af37;
    --accent-blue: #2c5f8d;
    --accent-orange: #e67e22;
    --accent-purple: #6c5ce7;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gradient-start: #f0f7f4;
    --bg-gradient-end: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-colored: 0 4px 15px rgba(26, 71, 42, 0.15);
}

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

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header */
.header {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(26, 71, 42, 0.1);
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-emoji {
    font-size: 1.5rem;
    display: inline-block;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2rem;
}

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

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

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

.nav-link:hover::after {
    width: 100%;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
}

/* Hero */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.03) 0%, rgba(76, 175, 80, 0.05) 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-emoji {
    font-size: 2.5rem;
    display: inline-block;
    line-height: 1;
}

.hero-text {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #4a7c59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-work-area {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.hero-image {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Why Choose */
.why-choose {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:nth-child(1) {
    border-top-color: #1a472a;
}

.feature-card:nth-child(2) {
    border-top-color: #2c5f8d;
}

.feature-card:nth-child(3) {
    border-top-color: #4a7c59;
}

.feature-card:nth-child(4) {
    border-top-color: #d4af37;
}

.feature-card:nth-child(5) {
    border-top-color: #e67e22;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(26, 71, 42, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--accent-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Services */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-category {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf9 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

.service-category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 12px 0 0 12px;
}

.service-category:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(26, 71, 42, 0.15);
}

.service-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-category ul {
    list-style: none;
    padding-left: 0;
}

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

.service-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(76, 175, 80, 0.3);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
}

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

.testimonial-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(26, 71, 42, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:nth-child(1) {
    border-top-color: #1a472a;
}

.testimonial-card:nth-child(2) {
    border-top-color: #2c5f8d;
}

.testimonial-card:nth-child(3) {
    border-top-color: #4a7c59;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(26, 71, 42, 0.2);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
}

/* How Work */
.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf9 100%);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.step-card:hover {
    border-color: rgba(26, 71, 42, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(26, 71, 42, 0.15);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(26, 71, 42, 0.3);
    transition: transform 0.3s;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 560px;
    margin: 0 auto;
}

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

.contact-item {
    padding: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf9 100%);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(26, 71, 42, 0.1);
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.1);
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 71, 42, 0.3);
}

a.btn {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf9 100%);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(26, 71, 42, 0.2);
    box-shadow: 0 4px 12px rgba(26, 71, 42, 0.1);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 71, 42, 0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf9 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8fbf9 0%, #ffffff 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s, color 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 71, 42, 0.1);
}

.faq-question:hover .faq-toggle {
    background: rgba(26, 71, 42, 0.2);
    color: var(--accent-color);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1a472a 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a7c59, #d4af37, #4a7c59);
}

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

.footer-text {
    line-height: 1.8;
}

.footer-contacts a {
    color: white;
    text-decoration: none;
}

.footer-contacts a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: white;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn-phone {
    background: #25D366;
}

.floating-btn-whatsapp {
    background: #25D366;
}

.floating-btn-telegram {
    background: #0088cc;
}

/* Responsive - Планшеты */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .directions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .additional-directions-page {
        padding: 3rem 0;
    }

    .direction-card {
        margin-bottom: 0;
    }

    .direction-content {
        padding: 1.75rem;
    }

    .direction-image {
        height: 220px;
    }
}

/* Responsive - Мобильные и планшеты */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 0.75rem 0;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .header-content {
        justify-content: center;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-color);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s;
        gap: 1rem;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

    section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description,
    .hero-work-area {
        font-size: 0.95rem;
    }

    .hero-image {
        margin-top: 1.5rem;
    }

    .hero-image img {
        max-height: 400px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .additional-directions-page {
        padding: 2.5rem 0;
        min-height: auto;
    }

    .directions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .direction-card {
        margin-bottom: 0;
    }

    .direction-content {
        padding: 1.5rem;
    }

    .direction-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .direction-content p,
    .direction-content ul li {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .direction-image {
        height: 200px;
    }

    .back-to-main {
        margin-top: 2rem;
    }

    .back-to-main .btn {
        width: 100%;
        max-width: 100%;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .features-grid,
    .testimonials-grid,
    .steps-list,
    .directions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-category {
        padding: 1.5rem;
    }

    .service-category h3 {
        font-size: 1.2rem;
    }

    .direction-card {
        margin-bottom: 1rem;
    }

    .direction-content {
        padding: 1.5rem;
    }

    .direction-content h3 {
        font-size: 1.2rem;
    }

    .direction-image {
        height: 200px;
    }

    .feature-card,
    .testimonial-card,
    .step-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .services-cta {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .back-to-main {
        margin-top: 2rem;
    }
}

/* Additional Directions Page */
.additional-directions-page {
    padding: 4rem 0;
    min-height: 80vh;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.direction-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf9 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.direction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26, 71, 42, 0.2);
}

.direction-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.direction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.direction-content {
    padding: 2rem;
}

.direction-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.direction-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.direction-content ul li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

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

.back-to-main {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(26, 71, 42, 0.1);
}

/* Responsive - Маленькие мобильные */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 0.5rem 0;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .logo-emoji {
        font-size: 1.2rem;
    }

    section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description,
    .hero-work-area {
        font-size: 0.9rem;
    }

    .hero-image {
        margin-top: 1rem;
        border-radius: 8px;
    }

    .hero-image img {
        max-height: 300px;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .page-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .additional-directions-page {
        padding: 2rem 0;
        min-height: auto;
    }

    .directions-grid {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .feature-card,
    .testimonial-card,
    .step-card,
    .direction-card,
    .service-category {
        padding: 1.25rem;
    }

    .direction-content {
        padding: 1.25rem;
    }

    .direction-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .direction-content p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .direction-content ul li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        padding-left: 0.75rem;
    }

    .direction-image {
        height: 180px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .contact-item {
        padding: 0.75rem;
    }

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

/* Улучшение для touch устройств */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .floating-btn {
        -webkit-tap-highlight-color: rgba(26, 71, 42, 0.2);
    }

    .btn:active,
    .nav-link:active {
        transform: scale(0.98);
    }
}

