:root {
    --primary-color: #2196f3; /* Lighter Blue */
    --primary-dark: #1976d2; /* Darker Blue */
    --accent-color: #ffcc00; /* Yellow */
    --secondary-color: #212529; /* Dark grey/black */
    --secondary-dark: #000000;
    --text-color: #212529;
    --text-light: #6c757d;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --shadow-md: 0 .5rem 1rem rgba(0,0,0,.15);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --gradient-hero: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
    --icon-bg: #e3f2fd; /* Very light blue */
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
    font-weight: 700;
}

[v-cloak] {
    display: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dark Mode Variables */
.dark-mode {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --icon-bg: #1a334d;
    --shadow-sm: 0 .125rem .25rem rgba(0,0,0,0.5);
    --shadow-md: 0 .5rem 1rem rgba(0,0,0,0.5);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,0.7);
}

.dark-mode .service-card, 
.dark-mode .price-card,
.dark-mode .faq-item,
.dark-mode .advantage-card,
.dark-mode .info-card {
    border: 1px solid #333;
    background: var(--card-bg);
}

.dark-mode .tab-btn {
    background: #1e1e1e;
    color: #a0a0a0;
    border: 1px solid #333;
}

.dark-mode .tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.dark-mode .seo-text-section {
    background: #1e1e1e;
    color: #a0a0a0;
}

.dark-mode .seo-text-section h2 {
    color: #e0e0e0;
}

.dark-mode .seo-content strong {
    color: var(--accent-color);
}

.dark-mode .seo-content em {
    background: #2d2d2d;
    color: #e0e0e0;
}

.dark-mode .service-price-tag {
    background: var(--icon-bg);
    color: var(--accent-color);
    border-color: #444;
}

.dark-mode .info-card.warning {
    background: #332b00;
    border-color: #665500;
    color: #fff3cd;
}

.dark-mode .service-icon {
    background: #1a334d;
    color: var(--accent-color);
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-left: 15px;
}

.theme-toggle:hover {
    background: white;
    color: #111;
}

/* Navbar Right Container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.work-hours {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

/* SOS Button Removed */

/* Advantages Section */
.advantages-section {
    margin: 60px 0;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.advantage-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.adv-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.advantage-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    margin: 60px 0;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Animation Utilities */
/* Slide animation removed */

/* Hero Section */
.hero {
    background: #1976d2;
    background: radial-gradient(circle at center, #2196f3 0%, #1565c0 100%);
    color: white;
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.city {
    font-size: 1rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    justify-content: center;
}

.hero-text-centered {
    max-width: 800px;
    margin: 0 auto;
}

.badge-new {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.hero-text-centered h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-text-centered .subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: #e6f2ff;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Hide unused */
.hero-image, .hero-wave, .desktop-contacts {
    display: none;
}

/* Hero Buttons Visibility */
.mobile-hero-btn {
    display: none;
}

@media (max-width: 768px) {
    .desktop-hero-btn {
        display: none;
    }
    
    .mobile-hero-btn {
        display: inline-flex;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }
    .hero {
        padding: 100px 0 80px; /* Increased top padding for stacked navbar */
    }
    .hero-text-centered h1 {
        font-size: 1.8rem;
    }
    .hero-text-centered .subtitle {
        font-size: 1.1rem;
    }
    .hero-actions {
        flex-direction: row; /* Changed to row for mobile */
        padding: 0 10px;
        gap: 10px;
    }
    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .mobile-hero-btn {
        flex: 1; /* Equal width */
        padding: 10px 8px; /* Smaller padding */
        font-size: 0.9rem; /* Smaller font */
        width: auto; /* Allow flex to control width */
    }
}

/* Mobile Contact Bar */
.mobile-contact-bar {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 15px;
    justify-content: space-between;
    gap: 10px;
}

.dark-mode .mobile-contact-bar {
    background: #1e1e1e;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
    border-top: 1px solid #333;
}

.mobile-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    transition: opacity 0.2s;
}

.mobile-btn i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.mobile-btn.mts { background-color: #d32f2f; }
.mobile-btn.megafon { background-color: #00b956; }
.mobile-btn.theme-btn {
    flex: 0 0 50px;
    background-color: var(--secondary-color);
    border: none;
    cursor: pointer;
}
.mobile-btn.theme-btn i {
    font-size: 1.4rem;
    margin: 0;
}
.mobile-btn:active { opacity: 0.8; }

/* Pricing Overview */
.pricing-section {
    text-align: center;
    margin-top: 40px;
}

.pricing-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 20;
}

.price-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--icon-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.price-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.price-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 10px 0;
}

.price-card .desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Tabs */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.tab-btn:hover:not(.active) {
    background: #e9ecef;
}

/* Services Grid */
.services-section {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.services-content-wrapper {
    min-height: 400px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    /* align-items: flex-start; Removed to allow stretch */
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e9ecef;
    height: 100%; /* Ensure full height in grid */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--icon-bg);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-details h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 15px;
    line-height: 1.4;
    flex-grow: 1; /* Push bottom content down */
}

.service-price-tag {
    display: inline-block;
    background: var(--icon-bg);
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #e9ecef;
}

.callout-cost {
    font-size: 0.8rem;
    color: #dc3545; /* Red color */
    font-weight: 600;
    margin-top: 2px;
}

/* Call to action button in pricing */
.btn-price-call {
    display: flex; /* Changed from inline-flex to flex for full width control */
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(33, 150, 243, 0.2);
    width: 100%; /* Full width */
}

.btn-price-call:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(33, 150, 243, 0.3);
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* Info Section */
.info-section {
    margin-top: 40px;
}

.info-card {
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-card.warning {
    background: #fff3cd;
    border: 1px solid #ffecb5;
    color: #664d03;
}

.info-card i {
    font-size: 1.5rem;
    margin-top: 3px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* SEO Section */
.seo-text-section {
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: var(--radius-md);
    color: #495057;
    font-size: 0.9rem;
}

.seo-text-section h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.seo-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.seo-content strong {
    color: var(--primary-dark);
}

.seo-content em {
    font-style: normal;
    background: #e9ecef;
    padding: 0 4px;
    border-radius: 4px;
}

/* Footer Compact */
.site-footer {
    background: #121212;
    color: #a0a0a0;
    padding: 50px 0 20px;
    margin-top: 60px;
    font-size: 0.95rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo i { color: var(--accent-color); }

.footer-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: white; }

.footer-contacts li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contacts a:hover { color: var(--accent-color); }

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    border: none;
    padding: 0;
}

.social-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.social-btn.max-app:hover { background: #E30611; }
.social-btn.telegram:hover { background: #0088cc; }

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* Animations */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-enter-from {
    opacity: 0;
    transform: translateY(10px);
}

.fade-leave-to {
    opacity: 0;
    transform: translateY(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 150px;
    }
    
    .desktop-only {
        display: none !important;
    }

    .hero-text {
        text-align: center;
        padding-bottom: 0;
    }

    .desktop-contacts {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .pricing-overview {
        grid-template-columns: 1fr;
        margin-top: 0;
    }
    
    .mobile-contact-bar {
        display: flex;
    }
    
    .desktop-contacts {
        display: none;
    }
    
    .tabs-container {
        display: none;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .service-price {
        margin-left: 0;
        align-self: flex-start;
    }
    
    body {
        padding-bottom: 80px; /* Ensure content isn't hidden behind fixed bar */
    }
}
