/* Base Styles */
:root {
    --primary-color: #2a7fba;
    --secondary-color: #bd1512;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #fff;
    --border-radius: 4px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #1e6a9b;
    color: var(--white-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: #e07e0f;
    color: var(--white-color);
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

/* Header Styles */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone a {
    color: var(--white-color);
    font-weight: 500;
}

.header-phone span {
    color: rgba(255, 255, 255, 0.8);
}

.header-company {
    font-weight: 500;
}

.header-main {
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone-mobile {
    display: none;
}

.header-hours {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-hours div {
    display: flex;
    flex-direction: column;
}

.header-hours span {
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.main-nav {
    background-color: var(--primary-color);
}

.nav-list {
    display: flex;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: block;
    padding: 15px 20px;
    color: var(--white-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-item.active a,
.nav-item a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(42, 127, 186, 0.8), rgba(42, 127, 186, 0.8)), url('images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Brands Section */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.brand-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.brand-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Social Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.social-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.social-card span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Info Section */
.info-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.info-text {
    flex: 1;
}

.info-image {
    flex: 1;
    display: flex;
    align-items: center;
}

.info-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: var(--white-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links li,
.footer-social li,
.footer-contacts li {
    margin-bottom: 10px;
}

.footer-contacts i,
.footer-social i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-info {
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .info-content {
        flex-direction: column;
    }
    
    .info-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-wrap: wrap;
    }
    
    .header-info {
        display: none;
    }
    
    .header-phone-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .header-phone-mobile a {
        color: var(--primary-color);
        font-weight: 500;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 500px;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .nav-item a {
        padding: 10px 20px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .header-contacts {
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .advantages-grid,
    .brands-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}
/* Partners Page Styles */
.hero-partners {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/partners-bg.jpg') center/cover;
}

/* Brands Logo Grid */
.brands-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.brand-logo-item:hover {
    transform: translateY(-5px);
}

.brand-logo-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.brand-logo-item:hover img {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.brand-logo-item span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Recommended Sites */
.recommended-sites {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.brand-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.brand-card h3 {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .brands-logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .brands-logo-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .brand-logo-item img {
        width: 80px;
        height: 80px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Contacts Page Styles */
.hero-contacts {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contacts-bg.jpg') center/cover;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-header i {
    font-size: 24px;
}

.contact-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.contact-body {
    padding: 20px;
}

.contact-address {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-phones {
    margin-bottom: 20px;
}

.contact-phones h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-phones p {
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-phones strong {
    font-weight: 600;
}

.contact-phones a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-phones a:hover {
    color: var(--primary-color);
}

.contact-map {
    border-radius: 6px;
    overflow: hidden;
    margin-top: 20px;
}

.contact-email {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-left: 10px;
    transition: color 0.3s;
}

.contact-email a:hover {
    color: var(--primary-dark);
}

.contact-email i {
    color: var(--primary-color);
}

/* Recommended Sites */
.recommended-sites {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.brand-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.brand-card h3 {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Delivery Page Styles */
.hero-delivery {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/delivery-bg.jpg') center/cover;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.delivery-day {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.delivery-day:hover {
    transform: translateY(-5px);
}

.day-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.day-header i {
    font-size: 20px;
}

.day-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.day-cities {
    padding: 20px;
    margin: 0;
    list-style: none;
}

.day-cities li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.day-cities li:last-child {
    border-bottom: none;
}

.express-delivery {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 40px 0;
    overflow: hidden;
}

.express-header {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.express-header i {
    font-size: 20px;
    color: #ffcc00;
}

.express-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.express-content {
    padding: 20px;
}

.express-content p {
    margin-bottom: 10px;
    font-size: 16px;
}

.express-content .note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.delivery-image {
    margin-top: 40px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.delivery-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Recommended Sites */
.recommended-sites {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.brand-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.brand-card h3 {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

  