/* About Page Styles */

/* ============================================
   Breadcrumb Navigation
   ============================================ */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-easing);
}

.breadcrumb-item a:hover {
    color: #e66a00;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin-left: var(--spacing-sm);
    color: #ccc;
}

/* ============================================
   Banner Section
   ============================================ */
.banner-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    z-index: 2;
}

.banner-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 24px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Introduction Section
   ============================================ */
.intro-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.intro-content h2 {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.intro-content p {
    margin-bottom: var(--spacing-md);
    color: #666;
    line-height: 1.8;
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.highlight-item {
    text-align: center;
    padding: var(--spacing-md);
    background: #f8f9fa;
    border-radius: 8px;
    transition: all var(--transition-speed) var(--transition-easing);
}

.highlight-item:hover {
    background: #fff3e0;
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 32px;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.highlight-item h3 {
    font-size: 16px;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.highlight-item p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: #999;
}

.products-carousel {
    position: relative;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    animation: autoScroll 40s linear infinite;
    will-change: transform;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-slide {
    flex: 0 0 calc(25% - var(--spacing-md));
    min-width: 320px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) var(--transition-easing);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 116, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #fff5ed;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) var(--transition-easing);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.product-info p {
    font-size: 14px;
    color: #999;
    flex-grow: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all var(--transition-speed) var(--transition-easing);
    z-index: 10;
}

.carousel-btn:hover {
    background: #e66a00;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -60px;
}

.carousel-next {
    right: -60px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-lg);
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-easing);
}

.carousel-indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.why-choose-card {
    padding: var(--spacing-lg);
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-speed) var(--transition-easing);
    border: 2px solid transparent;
}

.why-choose-card:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 116, 0, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.why-choose-card h3 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.why-choose-card p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

/* ============================================
   Statistics Section
   ============================================ */
.statistics-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9933 100%);
    color: white;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ============================================
   Certifications Section
   ============================================ */
.certifications-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.certifications-carousel {
    position: relative;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.cert-image {
    max-width: 200px;
    max-height: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all var(--transition-speed) var(--transition-easing);
}

.cert-item:hover .cert-image {
    transform: scale(1.05);
}

.cert-item p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Sales Team Section
   ============================================ */
.sales-team-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.team-member {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed) var(--transition-easing);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 116, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #f0f0f0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) var(--transition-easing);
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.btn {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed) var(--transition-easing);
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #e66a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 116, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* ============================================
   Container Fixed
   ============================================ */
.container-fixed {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .intro-wrapper {
        grid-template-columns: 1fr;
    }

    .intro-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-slide {
        flex: 0 0 calc(33.333% - var(--spacing-md));
    }

    .carousel-prev,
    .carousel-next {
        display: none;
    }

    .banner-title {
        font-size: 40px;
    }

    .banner-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .intro-highlights {
        grid-template-columns: 1fr;
    }

    .carousel-slide {
        flex: 0 0 calc(50% - var(--spacing-md));
        min-width: 200px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 calc(100% - var(--spacing-md));
        min-width: 100%;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}
