/* ===== PAGE TITLE SECTION ===== */
.page-title {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    margin-top: 70px;
}

.page-title .container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #e55a25;
}

.breadcrumb span {
    color: #ccc;
}

.page-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.page-title .tagline {
    font-size: 1.3rem;
    color: #ff6b35;
    font-weight: 600;
    margin: 0;
}

/* ===== BRAND HERO SECTION ===== */
.brand-hero {
    padding: 80px 20px;
    background: white;
}

.brand-hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-slogan {
    font-size: 1.3rem;
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 20px;
    font-style: italic;
}

.hero-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f94f3d 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: white;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-3px);
}

/* ===== BRAND DESCRIPTION SECTION ===== */
.brand-description {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.brand-description .container {
    max-width: 1200px;
    margin: 0 auto;
}

.description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.description-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
}

.description-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.description-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.description-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}

.description-list i {
    color: #ff6b35;
    width: 20px;
    text-align: center;
}

.description-infos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f94f3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

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

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 80px 20px;
    background: white;
}

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

.products h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
}

.products .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.product-volume {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.8rem;
}

.product-features i {
    color: #ff6b35;
    width: 16px;
    text-align: center;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

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

.advantages h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
}

.advantages .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

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

.advantage-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.advantage-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
    opacity: 0.3;
}

.advantage-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

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

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f94f3d 100%);
    color: white;
}

.cta .container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta .btn-primary {
    background: white;
    color: #ff6b35;
}

.cta .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 20px 20px;
}

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

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-mission {
    margin-top: 10px;
    font-style: italic;
    color: #ff6b35;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-info i {
    color: #ff6b35;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff6b35;
}

.footer-hours {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff6b35;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer-copyright i {
    color: #ff6b35;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .page-title {
        padding: 80px 20px 40px;
    }

    .page-title h1 {
        font-size: 2.5rem;
    }

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

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .description-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .description-infos {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .products,
    .advantages,
    .cta {
        padding: 60px 20px;
    }

    .products h2,
    .advantages h2,
    .cta h2 {
        font-size: 2rem;
    }

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

    .cta-buttons {
        gap: 10px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 2rem;
    }

    .page-title .tagline {
        font-size: 1.1rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }

    .description-text h2 {
        font-size: 1.8rem;
    }

    .products h2,
    .advantages h2,
    .cta h2 {
        font-size: 1.6rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        flex-wrap: wrap;
    }

    .page-title h1 {
        font-size: 1.8rem;
    }

    .hero-image img {
        max-width: 300px;
    }

    .description-list {
        font-size: 0.85rem;
    }

    .info-card {
        padding: 20px 15px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        margin: 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        padding: 14px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-legal {
        gap: 10px;
    }
}
