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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.phone {
    font-size: 1.5rem;
    color: #f39c12;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.phone:hover {
    color: #e67e22;
    transform: scale(1.05);
}

/* Breadcrumb Navigation */
.breadcrumb { 
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px; 
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 80px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.breadcrumb a { 
    color: #667eea; 
    text-decoration: none; 
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.breadcrumb a:hover { 
    color: #f39c12;
    text-decoration: underline; 
}

.breadcrumb .current {
    color: white;
    font-weight: bold;
}

/* Back to home button */
.back-to-home {
    position: absolute;
    top: 15px;
    left: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.back-to-home:hover {
    background: rgba(255,255,255,0.3);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
    font-weight: bold;
    color: white;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    color: white;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Main content sections */
.services, .cities-navigation, .order-section, .reviews, .pricing {
    padding: 4rem 0;
    color: white;
}

.services {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cities-navigation, .reviews {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.order-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.pricing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Section headings */
.services h2, .cities-navigation h2, .reviews h2, .pricing h2, .order-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Grid layouts */
.services-grid, .cities-grid, .reviews-grid {
    display: grid;
    gap: 2rem;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Card styles */
.service-card, .city-card, .review-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card:hover, .city-card:hover, .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.25);
}

.city-card {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.city-card:hover {
    color: white;
    text-decoration: none;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3, .city-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.service-card p, .city-card p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Order Form Section */
.order-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

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

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Reviews */
.stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.reviewer strong {
    color: #f39c12;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.reviewer span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Pricing */
.pricing-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.price {
    font-size: 2rem;
    color: #f39c12;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.price-details {
    list-style: none;
    padding: 0;
}

.price-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #667eea;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-section a {
    color: #667eea;
    text-decoration: none;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .phone {
        font-size: 1.3rem;
    }

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

    .back-to-home {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .hero {
        margin-top: 140px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}
/* Добавить к вашему CSS: */

/* Content sections для подстраниц */
.content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.content h2, .content h3 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content ul li {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Form section для подстраниц */
.form-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-section input, .form-section textarea {
    width: 100%;
    padding: 10px;
    margin: 0.5rem 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    box-sizing: border-box;
}

.btn {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    color: white;
    padding: 12px;
    border: none;
    width: 100%;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.phone-icon {
    color: #25d366 !important; /* зелёная трубка */
}
/* Confirmation message */
#confirmation {
    display: none;
    text-align: center;
    color: #2ecc71;
    font-weight: bold;
    margin-top: 15px;
    padding: 10px;
    background: rgba(46, 204, 113, 0.2);
    border-radius: 5px;
}
