/* About Page Specific Styles */

/* Page Hero */
.page-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(190, 3, 0, 0.7), rgba(160, 2, 0, 0.7)), 
                url('../assets/images/webp/manufatcture-1.webp') center/cover;
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    background-attachment: fixed;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.commitment {
    position: relative;
    overflow: hidden;
}

.commitment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/webp/manufacture-7.webp') center/cover;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: 1;
}

.commitment .container {
    position: relative;
    z-index: 2;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-hero .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Company Overview */
.company-overview {
    padding: 6rem 0;
    background-color: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-text .section-header {
    text-align: right;
    margin-bottom: 3rem;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.company-stats {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.company-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-right: 4px solid #be0300;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-stats .stat-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-stats .stat-item i {
    font-size: 2.5rem;
    color: #be0300;
}

.stat-info h4 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-info p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Company History */
.company-history {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.history-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.timeline {
    position: relative;
    padding-right: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #be0300, #a00200);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-right: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #be0300;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #be0300;
}

.timeline-date {
    background: linear-gradient(135deg, #be0300, #a00200);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Production Line */
.production-line {
    padding: 6rem 0;
    background-color: white;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.production-item {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.production-item .production-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.production-item .production-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.production-item:hover .production-image img {
    transform: scale(1.1);
}

.production-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #be0300;
}

.production-icon {
    margin-bottom: 2rem;
}

.production-icon i {
    font-size: 4rem;
    color: #be0300;
}

.production-item h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.production-item p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.production-item ul {
    list-style: none;
    text-align: right;
}

.production-item li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #e9ecef;
}

.production-item li:last-child {
    border-bottom: none;
}

.production-item li::before {
    content: '▸';
    color: #be0300;
    font-weight: bold;
    margin-left: 0.5rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.vision-section,
.mission-section {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #be0300, #a00200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.section-icon i {
    font-size: 2rem;
    color: white;
}

.vision-section h2,
.mission-section h2 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.vision-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.mission-list {
    display: grid;
    gap: 0.8rem;
    margin-top: auto;
}

.mission-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(190, 3, 0, 0.1);
}

.mission-item:hover {
    transform: translateX(-3px);
    background-color: #f0f0f0;
    border-color: rgba(190, 3, 0, 0.2);
}

.mission-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #be0300, #a00200);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mission-content h4 {
    font-size: 1rem;
    color: #000;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.mission-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.85rem;
}

/* Photo Gallery */
.photo-gallery {
    padding: 6rem 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Board Members */
.board-members {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.member-card {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #be0300, #a00200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.member-avatar i {
    font-size: 3rem;
    color: white;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.member-position {
    color: #be0300;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.member-details {
    color: #666;
    margin-bottom: 1rem;
}

.member-note {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Commitment */
.commitment {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(51, 51, 51, 0.7));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.commitment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/webp/manufacture-7.webp') center/cover;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: 1;
}

.commitment .container {
    position: relative;
    z-index: 2;
}

.commitment-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
}

.commitment-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.commitment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
}

.commitment-item i {
    font-size: 2.5rem;
    color: #be0300;
}

.commitment-item span {
    font-weight: 500;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        background-attachment: scroll;
    }
    
    .page-hero::before {
        background-attachment: scroll;
    }
    
    .commitment-bg,
    .cta-bg {
        background-attachment: scroll;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-text .section-header {
        text-align: center;
    }
    
    .company-stats {
        gap: 1.5rem;
    }
    
    .company-stats .stat-item {
        padding: 1.5rem;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline {
        padding-right: 1rem;
    }
    
    .timeline-item {
        padding-right: 2rem;
    }
    
    .production-grid {
        grid-template-columns: 1fr;
    }
    
    .production-item {
        padding: 2rem;
    }
    
    .mission-vision-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-section,
    .mission-section {
        padding: 1.5rem;
    }
    
    .section-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .section-icon i {
        font-size: 1.5rem;
    }
    
    .vision-section h2,
    .mission-section h2 {
        font-size: 1.3rem;
    }
    
    .vision-section p {
        font-size: 0.95rem;
    }
    
    .mission-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .mission-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .mission-content h4 {
        font-size: 0.95rem;
    }
    
    .mission-content p {
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .company-stats .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-item {
        padding-right: 1.5rem;
    }
    
    .production-item,
    .vision-section,
    .mission-section,
    .member-card {
        padding: 1.5rem;
    }
    
    .mission-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .commitment-content h2 {
        font-size: 2rem;
    }
    
    .commitment-features {
        grid-template-columns: 1fr;
    }
}

