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

/* Font Face Declarations */
@font-face {
    font-family: 'Muller';
    src: url('../assets/fonts/Muller/MullerRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Muller';
    src: url('../assets/fonts/Muller/MullerMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Muller';
    src: url('../assets/fonts/Muller/MullerBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Muller';
    src: url('../assets/fonts/Muller/MullerLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* CSS Variables */
:root {
    --primary-color: #FF6B35;
    --primary-hover: #E55A2B;
    --secondary-color: #333;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --border-dark: #CCCCCC;
    --max-width: 1200px;
    --spacing: 20px;
}

/* Base Styles */
body {
    font-family: 'Muller', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-label {
    font-weight: 500;
    color: var(--text-light);
}

.top-bar-value {
    font-weight: 600;
    color: var(--text-color);
}

.top-bar-text {
    color: var(--text-light);
}

.top-bar-phone {
    color: var(--text-color);
    font-weight: 500;
}

.top-bar-email {
    color: var(--text-color);
}

.top-bar-telegram-icon {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.top-bar-telegram-icon:hover {
    color: var(--primary-hover);
}

.top-bar-telegram-icon svg {
    width: 20px;
    height: 20px;
}

.top-bar-social {
    display: flex;
    gap: 10px;
}

.social-link {
    padding: 5px 10px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

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

/* Header */
.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 55px;
    width: auto;
}

.main-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.header-contact-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-icon:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-icon.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .contact-icon.mobile-only {
        display: inline-flex;
    }
    
    .header-contact-icons {
        gap: 8px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Contact Icons Group - for replacing buttons */
.contact-icons-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-icons-group .contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-icons-group .contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-icons-group .contact-icon.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .contact-icons-group {
        gap: 12px;
    }
    
    .contact-icons-group .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icons-group .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-icons-group .contact-icon.mobile-only {
        display: inline-flex;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Muller', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-image {
        justify-content: center;
        text-align: center;
        margin-top: 30px;
    }
}

.hero-phones {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-phone {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 767px) {
    .hero-phones {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .hero-phone {
        font-size: 18px;
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.hero-feature img {
    width: 70px;
    height: 55px;
    flex-shrink: 0;
}

.hero-feature p {
    color: var(--text-light);
    line-height: 1.5;
}

.hero-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

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

.problem-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.problem-number {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.problem-image {
    width: 100%;
    max-width: 310px;
    height: auto;
    margin: 0 auto 20px;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* What to Do Section */
.what-to-do-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-number {
    display: inline-block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.step-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px;
    color: var(--text-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.step-icon {
    width: 125px;
    height: 75px;
    margin: 0 auto 20px;
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
}

.section-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

/* Repair Steps Section */
.repair-steps-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.repair-steps-section .step-card {
    text-align: center;
}

.repair-steps-section .step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px;
    color: var(--text-color);
}

.repair-steps-section .step-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* Consultation Section */
.consultation-section {
    padding: 60px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.consultation-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.consultation-section strong a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Prices Section */
.prices-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.prices-table {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.prices-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 20px;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.price-row:hover {
    background-color: var(--bg-light);
}

.price-row:last-child {
    border-bottom: none;
}

.price-col {
    padding: 10px;
}

.price-col a {
    color: var(--primary-color);
}

/* Question Section */
.question-section {
    padding: 60px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.question-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.question-section strong a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.brand-item {
    display: block;
    background-color: var(--bg-white);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    width: 100%;
    height: auto;
    max-width: 170px;
    margin: 0 auto;
}

.brand-item-hidden {
    display: none;
}

.brands-section.show-all .brand-item-hidden {
    display: block;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

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

.advantage-card {
    padding: 30px;
    background-color: var(--bg-light);
    background-position: bottom right;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
}

.advantage-card:nth-child(1) {
    background-image: url('../assets/images/services/low-price.png');
}

.advantage-card:nth-child(2) {
    background-image: url('../assets/images/services/back-in-time.png');
}

.advantage-card:nth-child(3) {
    background-image: url('../assets/images/services/07-01.png');
}

.advantage-icon {
    width: 87px;
    height: 61px;
    margin: 0 auto 20px;
}

.advantage-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Discount Section */
.discount-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.discount-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discount-image {
    text-align: center;
}

.discount-image img {
    max-width: 100%;
    height: auto;
}

.discount-text {
    text-align: center;
}

.discount-text p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.discount-timer {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    font-size: 18px;
    color: var(--text-light);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-content strong {
    color: var(--text-color);
    font-weight: 600;
}

.about-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.about-content li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Form Section - Removed */

/* Footer */
.footer {
    background-color: var(--bg-light);
    background-image: url('../assets/images/services/Dots222.png');
    background-position: center left;
    background-repeat: no-repeat;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

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

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer-column p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.footer-label {
    font-weight: 500;
    color: var(--text-color);
    margin-top: 15px;
}

.footer-phone {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.footer-telegram-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-telegram-link svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

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

.footer-form input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Muller', Arial, sans-serif;
    font-size: 14px;
}

.footer-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .top-bar-item {
        width: 100%;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

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

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

    .prices-header,
    .price-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .prices-header {
        display: none;
    }

    .price-row {
        border: 1px solid var(--border-color);
        border-radius: 4px;
        margin-bottom: 10px;
        padding: 15px;
    }

    .price-col {
        padding: 5px 0;
    }

    .price-col:before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--text-color);
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .discount-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }

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