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

:root {
    --primary: #ff6b35;
    --secondary: #2c3e50;
    --accent: #00d9a6;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --text: #333;
    --text-light: #666;
    --border: #e9ecef;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
}

.city-notice {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 0 0 10px 10px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    margin-top: 70px;
}

.city-notice a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
    font-size: 16px;
}

/* Header */
header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 8px;
    font-size: 1.6rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Стили для SEO секции */
.seo-section {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    margin: 2rem auto;
}

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

.seo-general {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.seo-general h2 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.5rem;
}

.seo-general p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text);
}

.seo-general strong {
    color: var(--primary);
    font-weight: 600;
}

.seo-city-texts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.seo-city-block {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.seo-city-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.seo-city-block h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.seo-city-block p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .seo-section {
        padding: 2rem 1rem;
    }
    
    .seo-general {
        padding: 1.5rem;
    }
    
    .seo-general h2 {
        font-size: 1.5rem;
    }
    
    .seo-city-texts {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .seo-city-block {
        padding: 1.2rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(44, 62, 80, 0.9)),
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 6rem 1rem 2rem;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    min-width: 200px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
    background: #ff5722;
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    box-shadow: none;
}

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

/* Sections */
section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services {
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--secondary);
    position: relative;
    line-height: 1.2;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Price overlay */
.price-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.service-card:hover .price-overlay {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover .service-content {
    opacity: 0;
}

.price-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-content {
    transition: opacity 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* About Section */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 1rem;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 400px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.carousel-slide:hover .slide-content {
    transform: translateY(-10px);
}

.slide-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.slide-content p {
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.4;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 1.2rem;
}

.phone-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.messenger-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.messenger-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-size: 0.9rem;
}

.messenger-btn i {
    margin-right: 6px;
    font-size: 1.1rem;
}

.messenger-btn.telegram {
    background: #0088cc;
    color: white;
}

.messenger-btn.whatsapp {
    background: #25D366;
    color: white;
}

.messenger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.form-title {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-size: 1.3rem;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
}

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

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 1rem 2rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.2rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: white;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

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

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

.footer-services li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1rem;
    position: relative;
}

.footer-services li:before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 1000;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

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

.floating-btn.phone {
    background: var(--primary);
}

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

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    text-align: center;
    position: relative;
}

.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.modal-price {
    font-size: 1.8rem;
    font-weight: 800;
    opacity: 0.95;
}

.modal-body {
    padding: 1.5rem;
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h3 {
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.modal-section p {
    line-height: 1.6;
    color: var(--text-light);
    font-size: 0.95rem;
}

.modal-section ul {
    list-style: none;
    padding: 0;
}

.modal-section li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.modal-section li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.modal-details {
    display: grid;
    gap: 0.8rem;
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary);
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

.detail-item strong {
    color: var(--secondary);
}

.modal-notes {
    background: #fff3e0;
    border: 1px solid #ffb74d;
    border-radius: 6px;
    padding: 1rem;
    color: #e65100;
    font-size: 0.85rem;
    margin-top: 1rem;
    line-height: 1.4;
}

.modal-footer {
    display: flex;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
}

.modal-btn {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-btn.primary {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
}

.modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.6);
}

.modal-btn.secondary {
    background: #f8f9fa;
    color: var(--secondary);
    border: 2px solid #e9ecef;
}

.modal-btn.secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

/* Messenger Modal Styles */
.form-summary {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
}

.form-summary h3 {
    margin-bottom: 0.8rem;
    color: var(--secondary);
    font-size: 1.1rem;
}

.form-summary p {
    margin: 0.4rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.messenger-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.messenger-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 0.8rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
    font-size: 0.85rem;
}

.messenger-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.messenger-option.whatsapp {
    background: #25D366;
}

.messenger-option.telegram {
    background: #0088cc;
}

.messenger-option.sms {
    background: #4CAF50;
}

.messenger-option.phone {
    background: var(--primary);
}

.messenger-option i {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.copy-section {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.copy-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.copy-success {
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 90px;
    right: 1rem;
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 4px solid #4CAF50;
    z-index: 10000;
    max-width: 350px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.success { border-left-color: #4CAF50; }
.notification.error { border-left-color: #f44336; }
.notification.info { border-left-color: #2196F3; }
.notification.show { transform: translateX(0); }

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification.success i { color: #4CAF50; }
.notification.error i { color: #f44336; }
.notification.info i { color: #2196F3; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    /* Header & Navigation */
    .nav-container {
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    /* Hero Section */
    .hero {
        padding: 5rem 1rem 2rem;
        min-height: 80vh;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    /* Sections */
    section {
        padding: 3rem 1rem;
    }

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

    .service-card {
        padding: 1.5rem 1rem;
    }

    /* About Stats */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Gallery */
    .carousel {
        height: 300px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-content h3 {
        font-size: 1.1rem;
    }

    .slide-content p {
        font-size: 0.85rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

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

    .messenger-buttons {
        justify-content: center;
    }

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

    .footer-social {
        justify-content: center;
    }

    /* Floating Buttons */
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }

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

    /* Modals */
    .modal {
        padding: 0.5rem;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-header {
        padding: 1.2rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-price {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.2rem;
    }

    .modal-footer {
        flex-direction: column;
        padding: 1rem 1.2rem 1.2rem;
    }

    .modal-btn {
        padding: 0.8rem 1rem;
    }

    /* Messenger Options */
    .messenger-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .messenger-option {
        min-height: 70px;
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
    }

    .messenger-option i {
        font-size: 1.3rem;
    }

    /* Notifications */
    .notification {
        top: 80px;
        right: 0.5rem;
        left: 0.5rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .carousel {
        height: 250px;
    }

    .messenger-options {
        grid-template-columns: 1fr;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .contact-item {
        text-align: left;
        flex-direction: row;
    }

    .floating-buttons {
        bottom: 0.8rem;
        right: 0.8rem;
    }

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

/* High-DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-attachment: scroll;
    }
}

/* Print Styles */
@media print {
    .floating-buttons,
    .modal,
    .notification {
        display: none !important;
    }
    
    .hero {
        background: #2c3e50 !important;
        color: black !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}
.form-hint {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.form-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

#shareLocation {
    margin-top: 0.3rem;
}

/* Стили для Яндекс рейтинга */
.yandex-rating-container {
    text-align: center;
    margin: 2rem auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.rating-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.rating-label:before {
    content: '⭐';
    font-size: 1.2rem;
}

.yandex-widget-wrapper {
    display: inline-block;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
    transition: all 0.3s ease;
    margin: 0.5rem 0;
    border: 2px solid rgba(255, 204, 0, 0.3);
}

.yandex-widget-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.3);
    border-color: rgba(255, 204, 0, 0.5);
}

/* Стили для ссылки на отзывы */
.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.7rem 1.2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.reviews-link:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.reviews-link i {
    font-size: 1rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .yandex-rating-container {
        margin: 1.5rem auto;
        padding: 1.2rem;
    }
    
    .rating-label {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .reviews-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Немного уменьшаем виджет на мобильных */
    .yandex-widget-wrapper {
        transform: scale(0.95);
    }
    
    .yandex-widget-wrapper:hover {
        transform: scale(0.95) translateY(-5px);
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .yandex-widget-wrapper {
        transform: scale(0.85);
    }
    
    .yandex-widget-wrapper:hover {
        transform: scale(0.85) translateY(-5px);
    }
    
    .reviews-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
    }
}

/* Стили для новых кнопок соцсетей */
.messenger-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.messenger-btn.tiktok {
    background: #000000;
    color: white;
}

.messenger-btn.tiktok i {
    text-shadow: 2px 2px 0 #FE2C55, -2px -2px 0 #25F4EE;
}

.messenger-btn.youtube {
    background: #FF0000;
    color: white;
}

/* Стили для иконок в футере */
#footer-instagram i {
    color: #E4405F;
}

#footer-tiktok i {
    color: #000000;
}

#footer-youtube i {
    color: #FF0000;
}

/* Адаптивность для новых кнопок */
@media (max-width: 768px) {
    .messenger-buttons {
        flex-wrap: wrap;
    }
    
    .city-notice {
        margin-top: 60px;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .messenger-btn {
        min-width: 120px;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}
/* Стили для секции грузоперевозок */
.cargo-services {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    padding: 4rem 1rem;
    border-top: 3px solid #4dabf7;
    border-bottom: 3px solid #4dabf7;
}

.cargo-services .section-title {
    color: #1c7ed6;
    margin-bottom: 1.5rem;
}

.cargo-services .section-title i {
    margin-right: 0.5rem;
    color: #4dabf7;
}

.cargo-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
}

/* Особенности грузоперевозок */
.cargo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cargo-feature {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(76, 171, 247, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #e7f5ff;
}

.cargo-feature:hover {
    transform: translateY(-5px);
    border-color: #4dabf7;
}

.cargo-feature i {
    font-size: 2.5rem;
    color: #339af0;
    margin-bottom: 1rem;
}

.cargo-feature h3 {
    color: #1c7ed6;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cargo-feature p {
    color: #495057;
    font-size: 0.9rem;
    margin: 0;
}

/* Сетка услуг грузоперевозок */
.cargo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Стили для карточек грузовых услуг */
.service-card.cargo {
    border-top: 4px solid #4dabf7;
}

.service-card.cargo .price-overlay {
    background: linear-gradient(135deg, #4dabf7, #339af0);
}

.service-card.cargo:hover .service-icon {
    color: #4dabf7;
}

/* Баннер переключения между услугами */
.services-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 500px;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.switcher-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    background: none;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.switcher-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.switcher-btn.cargo-btn.active {
    background: #4dabf7;
    box-shadow: 0 5px 15px rgba(76, 171, 247, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    .cargo-services {
        padding: 3rem 1rem;
    }
    
    .cargo-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .services-switcher {
        flex-direction: column;
        border-radius: 15px;
        padding: 0;
        overflow: hidden;
    }
    
    .switcher-btn {
        border-radius: 0;
        padding: 1rem;
        justify-content: center;
    }
}
.service-select {
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    background: white;
    cursor: pointer;
}
/* Стили для списка адресов с иконками */
.address-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.test-location-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.test-location-btn:hover {
    background: #5a6268;
}

.test-location-btn i {
    font-size: 1rem;
}

.address-item i {
    color: var(--primary);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.address-item strong {
    color: var(--secondary);
}

/* Стили для телефона в футере */
.footer-phone {
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-block;
}

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

/* В мобильной версии */
@media (max-width: 768px) {
    .address-item {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }
    
    .footer-phone {
        font-size: 0.95rem;
    }
}

/* Стили для списка адресов */
.address-item {
    margin-bottom: 0.05rem;
    padding: 0.1rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.address-item:not(:last-child) {
    border-bottom: 1px solid #eee;
    padding-bottom: 0.05rem;
}

.contact-option.main-contact {
    border-left: 4px solid var(--primary);
    background: linear-gradient(to right, rgba(255, 107, 53, 0.05), transparent);
}

/* Стили для модальных окон выбора */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    background: white;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.contact-option.phone:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
}

.contact-option.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
}

.contact-option.telegram:hover {
    border-color: #0088cc;
    background: rgba(0, 136, 204, 0.05);
}

.contact-option i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.contact-option.phone i {
    color: var(--primary);
}

.contact-option.whatsapp i {
    color: #25D366;
}

.contact-option.telegram i {
    color: #0088cc;
}

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

.contact-info strong {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Адаптивность для модальных окон выбора */
@media (max-width: 768px) {
    .contact-option {
        padding: 0.8rem;
    }
    
    .contact-option i {
        font-size: 1.3rem;
        margin-right: 0.8rem;
        width: 35px;
    }
}
