/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.content-main {
    background: white;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.content-block p {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ===== QUALITY PRINCIPLES ===== */
.quality-principles {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.principle-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.principle-content h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.principle-content p {
    color: var(--text-color);
    margin: 0;
}

/* ===== SECTORS GRID ===== */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.sector-item {
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.sector-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sector-item i {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.sector-item span {
    font-weight: 600;
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* ===== TABS (Products pages) ===== */
.tab-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tab-btn {
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--dark-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: var(--primary-color);
    color: white;
    padding-left: 20px;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
    margin-bottom: 20px;
}

.cta-widget .btn {
    width: 100%;
    background: white;
    color: var(--primary-color);
}

.cta-widget .btn:hover {
    background: var(--accent-color);
    color: white;
}

/* ===== VISION & MISSION ===== */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.vm-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

.vm-card h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.vm-card p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

/* ===== VALUES SECTION ===== */
.values-section {
    margin-top: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* ===== BLOG LIST ===== */
.blog-list {
    display: grid;
    gap: 40px;
}

.blog-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.blog-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-item-image {
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-item:hover .blog-item-image img {
    transform: scale(1.1);
}

.blog-item-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-item-content h2 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-item-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ===== CONTACT PAGE ===== */
.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.contact-intro h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-container h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-color);
    line-height: 1.7;
}

.social-media-links {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.social-media-links h4 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-button.facebook {
    background: #1877f2;
}

.social-button.linkedin {
    background: #0077b5;
}

.social-button.twitter {
    background: #1da1f2;
}

.social-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-button:hover {
    transform: scale(1.1);
}

.map-container {
    margin-top: 40px;
}

.map-container h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 25px;
    text-align: center;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== CATALOG PAGE ===== */
.catalog-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.catalog-intro h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.catalog-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

.catalog-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.catalog-products .product-card {
    transition: opacity 0.3s, transform 0.3s;
}

/* ===== CATEGORY PAGE ===== */
.category-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.category-intro h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.category-intro p {
    line-height: 1.8;
}

.category-features {
    margin-bottom: 60px;
}

.category-features h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.category-features .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-color);
}

.category-products {
    margin-top: 60px;
}

.category-products h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .blog-item {
        grid-template-columns: 1fr;
    }

    .blog-item-image {
        height: 250px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sectors-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .catalog-products {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-item-content {
        padding: 20px;
    }

    .contact-form-container {
        padding: 25px;
    }
}

