/* Global styles */
:root {
    --primary-color: #ff7b00;
    --secondary-color: #333;
    --light-color: #fff;
    --dark-color: #000;
    --gray-color: #f5f5f5;
    --text-color: #333;
    --text-light: #777;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.bg-gray {
    background-color: var(--gray-color);
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.text-half, .image-half {
    flex: 1 1 45%;
    min-width: 300px;
}

/* Hero section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1493238792000-8113da705763?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.company-name {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.phone-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    font-size: 1.5rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.phone-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

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

/* Why us section */
.advantages-list {
    list-style-type: none;
}

.advantages-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.advantages-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.orange-text {
    color: var(--primary-color);
    font-weight: 500;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Reviews section */
.reviews-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.review-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.review-author {
    font-weight: 500;
    color: var(--primary-color);
    text-align: right;
}

/* Services section */
.services-list {
    list-style-type: none;
}

.services-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.services-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Contact section */
.map-wrapper {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.orange-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.orange-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .phone-button {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .text-half, .image-half {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .image-half {
        order: -1;
        margin-bottom: 30px;
    }
    
    .hero-section {
        height: 80vh;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .phone-button {
        font-size: 1rem;
        padding: 10px 25px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}