/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    margin: 0;
    padding: 0;
}

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

/* Верхняя навигация */
.top-nav {
    background: linear-gradient(135deg, #00a8e6, #0086c3);
    padding: 12px 0;
}

.nav-menu {
    display: flex;
    gap: 0;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.nav-item:first-child {
    border-radius: 4px 0 0 4px;
}

.nav-item:last-child {
    border-right: none;
    border-radius: 0 4px 4px 0;
}

.nav-item:hover {
    background: rgba(255,255,255,0.1);
}

.nav-item.active {
    background: rgba(255,255,255,0.2);
    font-weight: 600;
}

/* Главный баннер */
.main-banner {
    background: linear-gradient(135deg, #00d4ff, #00a8e6);
    color: white;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 400"><circle cx="150" cy="100" r="80" fill="rgba(255,255,255,0.1)"/><circle cx="120" cy="200" r="60" fill="rgba(255,255,255,0.08)"/><circle cx="180" cy="300" r="70" fill="rgba(255,255,255,0.06)"/></svg>') no-repeat;
    background-size: cover;
}

.slogan {
    text-align: center;
    margin-bottom: 30px;
}

.slogan h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin: 0;
    letter-spacing: 2px;
}

.info-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    background: rgba(255,255,255,0.2);
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.info-text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.info-text small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.master-call-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.master-call-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,107,53,0.4);
}

.main-content-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.banner-text {
    flex: 2;
}

.banner-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.banner-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.banner-image {
    flex: 1;
    text-align: center;
}

.antenna-placeholder {
    display: inline-block;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

/* Основной контент */
.main-content {
    background: #f5f5f5;
    padding: 0;
}

.content-layout {
    min-height: 600px;
}

/* Основная область контента */
.main-content-area {
    width: 100%;
    background: white;
    padding: 30px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.page-header h1 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.page-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    padding: 8px 16px;
    border: 1px solid #007bff;
    background: white;
    color: #007bff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #007bff;
    color: white;
}

.order-btn {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.order-btn:hover {
    background: #218838 !important;
}

/* Блок услуги */
.service-intro {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.service-image {
    width: 150px;
    text-align: center;
}

.antenna-logo {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.service-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.service-price {
    width: 200px;
}

.price-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.order-btn-large {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    width: 100%;
    transition: background 0.3s ease;
}

.order-btn-large:hover {
    background: #218838;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 5px;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
}

/* Таблица цен */
.pricing {
    padding: 60px 0;
    background: #fff;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing h2 {
    font-size: 2rem;
    margin: 0;
    color: #333;
}

.pricing-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.action-btn {
    padding: 8px 16px;
    border: 1px solid #007bff;
    background: #fff;
    color: #007bff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #007bff;
    color: white;
}

.action-btn.order-btn {
    background: #007bff;
    color: white;
    font-weight: bold;
}

.action-btn.order-btn:hover {
    background: #0056b3;
}

.pricing-note {
    margin-bottom: 30px;
    color: #666;
    font-size: 0.95rem;
}

.price-table {
    overflow-x: auto;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.price-table th {
    background: #007bff;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 0.95rem;
}

.price-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:nth-child(even) {
    background: #f8f9fa;
}

.price-table .highlight-row {
    background: #e7f3ff !important;
}

.price-table .highlight-row td {
    color: #007bff;
}

.price-table td:nth-child(2) {
    text-align: center;
    width: 100px;
}

.price-table td:nth-child(3) {
    text-align: right;
    width: 120px;
    font-weight: bold;
}

/* Описание услуги */
.service-description {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-description h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.description-content {
    max-width: 800px;
}

.page-views {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.page-views p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.description-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.description-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    color: #333;
}

.features-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.features-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.features-list li:before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Преимущества компании */
.advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.advantages h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 600;
}

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

.advantage-item {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.advantage-icon {
    color: #007bff;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.advantage-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Этапы работы */
.work-stages {
    padding: 80px 0;
    background: white;
}

.work-stages h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 600;
}

.stages-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.stage-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.stage-number {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stage-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.stage-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 600;
}

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

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    color: #007bff;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* Зона обслуживания */
.service-area {
    padding: 80px 0;
    background: white;
}

.service-area h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 600;
}

.area-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.location-column h4 {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 20px;
    font-weight: 600;
}

.location-column ul {
    list-style: none;
    padding: 0;
}

.location-column li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.location-column li:last-child {
    border-bottom: none;
}

.area-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

/* Отзывы */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 600;
}

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

.testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    position: relative;
}

.testimonial-item:before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #007bff;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    font-size: 0.95rem;
}

.testimonial-author strong {
    display: block;
    color: #333;
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Документы */
.documents {
    padding: 80px 0;
    background: white;
}

.documents h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 600;
}

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

.document-item {
    text-align: center;
    padding: 30px 20px;
}

.document-icon {
    color: #007bff;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.document-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.document-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Дополнительная информация */
.additional-info {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #007bff;
    font-weight: 600;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Футер */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #007bff;
}

.footer-section p,
.footer-section li {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Адаптивность */
@media (max-width: 968px) {
    
    .main-content-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .info-panel {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .service-image,
    .service-price {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .nav-item {
        flex: 1;
        text-align: center;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .slogan h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .main-content-banner {
        padding: 20px;
    }
    
    .banner-text h2 {
        font-size: 1.5rem;
    }
    
    .page-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .page-actions {
        width: 100%;
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .pricing h2,
    .service-description h2,
    .advantages h2,
    .work-stages h2,
    .faq h2,
    .service-area h2,
    .testimonials h2,
    .documents h2 {
        font-size: 1.8rem;
    }
    
    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pricing-actions {
        width: 100%;
        justify-content: center;
    }
    
    .info-grid,
    .advantages-grid,
    .testimonials-grid,
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stages-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stage-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .main-banner {
        padding: 20px 0;
    }
    
    .slogan h1 {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    
    .info-panel {
        padding: 15px;
    }
    
    .main-content-banner {
        padding: 15px;
    }
    
    .banner-text h2 {
        font-size: 1.3rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
    
    .main-content-area {
        padding: 20px 15px;
    }
    
    .pricing,
    .service-description,
    .additional-info,
    .advantages,
    .work-stages,
    .faq,
    .service-area,
    .testimonials,
    .documents {
        padding: 40px 0;
    }
    
    .stage-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
}

/* Catalog styles */
.catalog {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.catalog h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.5em;
}

.catalog-grid {
    display: grid;
    gap: 40px;
}

.catalog-category {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.catalog-category h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.5em;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.catalog-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.catalog-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.item-image {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.catalog-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.catalog-item p {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.item-price {
    color: #007bff;
    font-weight: bold;
    font-size: 1.2em;
}

/* About styles */
.about {
    padding: 60px 0;
    background: white;
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.5em;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-item {
    margin-bottom: 30px;
}

.about-item h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.about-item p {
    color: #6c757d;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #00a8e6);
    border-radius: 15px;
    color: white;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.9;
}

/* Useful styles */
.useful {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.useful h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.5em;
}

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

.useful-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.useful-card:hover {
    transform: translateY(-5px);
}

.useful-card h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.3em;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.useful-content p {
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.6;
}

.useful-content ul {
    color: #6c757d;
    margin-bottom: 15px;
    padding-left: 20px;
}

.useful-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Works styles */
.works {
    padding: 60px 0;
    background: white;
}

.works h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.5em;
}

.works-grid {
    display: grid;
    gap: 40px;
}

.work-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.work-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-info h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.work-info p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.work-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.work-details span {
    color: #2c3e50;
    font-size: 0.9em;
    padding: 5px 10px;
    background: white;
    border-radius: 5px;
    border-left: 3px solid #007bff;
}

.works-note {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #00a8e6);
    border-radius: 15px;
    color: white;
}

/* Contact section styles */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.5em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-block,
.contact-form-block {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-block h3,
.contact-form-block h3 {
    color: #007bff;
    margin-bottom: 25px;
    font-size: 1.3em;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    color: #007bff;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-details strong {
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-details span {
    color: #6c757d;
    line-height: 1.4;
}

.contact-details small {
    font-size: 0.85em;
    color: #999;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95em;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

.submit-btn {
    background: linear-gradient(135deg, #007bff, #00a8e6);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.form-note {
    font-size: 0.8em;
    color: #6c757d;
    text-align: center;
    margin-top: 10px;
}

.emergency-info {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.emergency-info h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.emergency-info p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-block;
    background: white;
    color: #dc3545;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Additional mobile styles for new sections */
@media (max-width: 768px) {
    .catalog-items {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .useful-grid {
        grid-template-columns: 1fr;
    }
    
    .work-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .emergency-info {
        padding: 20px;
    }
} 