/* HERO SECTION */
.about-hero {
    background: linear-gradient(135deg, #F4B41A 0%, #d9a016 100%);
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative circles for desktop */
.about-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    top: -200px;
    right: -200px;
}

@media (min-width: 768px) {
    .about-hero::before {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        left: -100px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.about-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.about-hero span {
    color: #000;
}

.about-hero > .container > p {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    flex: 1;
    max-width: 200px;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #F4B41A;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* WHO WE ARE */
.about-card {
    padding: 80px 20px;
    background: #fff;
}

.about-card .container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-card h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.about-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #F4B41A;
}

.about-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* MISSION & VISION */
.mission-vision {
    padding: 80px 20px;
    background: #f8f9fa;
}

.mission-vision .container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* SERVICES */
.about-services {
    padding: 80px 20px;
    background: #fff;
}

.about-services .container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.about-services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #F4B41A;
}

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

.service-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #F4B41A;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: #F4B41A;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 180, 26, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    color: #666;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F4B41A;
    font-weight: bold;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    color: #F4B41A;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more {
    transform: translateX(5px);
}

/* PRODUCTS SECTION */
.products-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.products-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.products-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #F4B41A;
}

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

.product-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #F4B41A;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.product-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

.product-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* QUALITY */
.about-quality {
    padding: 80px 20px;
    background: #fff;
}

.about-quality .container {
    max-width: 1400px;
    margin: 0 auto;
}

.quality-box {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
}

.iso-badge {
    background: linear-gradient(135deg, #F4B41A 0%, #d9a016 100%);
    padding: 40px 45px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(244, 180, 26, 0.3);
    text-align: center;
    min-width: 200px;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.badge-subtitle {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.quality-content {
    flex: 1;
    min-width: 280px;
}

.quality-content h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.quality-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* WHY CHOOSE */
.about-why {
    padding: 80px 20px;
    background: #f8f9fa;
}

.about-why .container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-why h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.about-why h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #F4B41A;
}

.why-card {
    background: #fff;
    border: 2px solid #F4B41A;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(244, 180, 26, 0.2);
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
}

.why-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.why-card h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* INFRASTRUCTURE */
.infrastructure {
    padding: 80px 20px;
    background: #fff;
}

.infrastructure .container {
    max-width: 1400px;
    margin: 0 auto;
}

.infrastructure h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.infrastructure h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #F4B41A;
}

.infra-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* POPUP */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-box {
    background: #fff;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: #F4B41A;
}

.popup-box h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-right: 30px;
}

.popup-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 15px 50px;
    }
    
    .about-hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .about-hero > .container > p {
        font-size: 15px;
    }
    
    .hero-stats {
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 20px 15px;
        min-width: calc(50% - 10px);
        max-width: none;
        flex: 0 0 calc(50% - 10px);
    }
    
    .stat-item h3 {
        font-size: 24px;
    }
    
    .stat-item p {
        font-size: 12px;
    }
    
    .about-card,
    .mission-vision,
    .about-services,
    .products-section,
    .about-quality,
    .about-why,
    .infrastructure {
        padding: 50px 15px;
    }
    
    .about-card h2,
    .about-services h2,
    .about-why h2,
    .products-section h2,
    .infrastructure h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .about-card p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mv-card {
        padding: 30px 25px;
    }
    
    .mv-icon {
        font-size: 40px;
    }
    
    .mv-card h3 {
        font-size: 20px;
    }
    
    .mv-card p {
        font-size: 14px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        font-size: 40px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card li {
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-item {
        padding: 25px 20px;
    }
    
    .product-item h4 {
        font-size: 17px;
    }
    
    .product-item p {
        font-size: 14px;
    }
    
    .quality-box {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .iso-badge {
        padding: 30px;
        min-width: 100%;
    }
    
    .badge-title {
        font-size: 20px;
    }
    
    .quality-content h3 {
        font-size: 22px;
    }
    
    .quality-content p {
        font-size: 14px;
    }
    
    .why-card {
        padding: 25px 20px;
    }
    
    .why-icon {
        font-size: 36px;
    }
    
    .why-card h4 {
        font-size: 17px;
    }
    
    .why-card p {
        font-size: 13px;
    }
    
    .infra-content p {
        font-size: 15px;
    }
    
    .popup {
        padding: 15px;
    }
    
    .popup-box {
        padding: 30px 20px;
    }
    
    .popup-box h3 {
        font-size: 20px;
        padding-right: 35px;
    }
    
    .popup-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 24px;
    }
    
    .about-hero > .container > p {
        font-size: 14px;
    }
    
    .stat-item {
        padding: 18px 12px;
    }
    
    .stat-item h3 {
        font-size: 22px;
    }
    
    .stat-item p {
        font-size: 11px;
    }
    
    .about-card h2,
    .about-services h2,
    .about-why h2,
    .products-section h2,
    .infrastructure h2 {
        font-size: 22px;
    }
    
    .service-card,
    .mv-card,
    .product-item,
    .why-card {
        padding: 20px 15px;
    }
}





/* SECTION SEPARATOR */

.section-divider {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top : 40px;
    margin-bottom : 40px ;
    background: rgba(255, 255, 255, 0.95);
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        #e0e0e0 20%, 
        #F4B41A 50%, 
        #e0e0e0 80%, 
        transparent 100%
    );
}

.section-divider-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #F4B41A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(244, 180, 26, 0.15);
}

.section-divider-icon::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #F4B41A;
    border-radius: 50%;
}

/* Alternative: Simple Line Divider */
.section-divider-simple {
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        #e0e0e0 20%, 
        #F4B41A 50%, 
        #e0e0e0 80%, 
        transparent 100%
    );
    margin: 60px auto 5px;
    max-width: 80%;
}

/* Alternative: Dot Pattern Divider */
.section-divider-dots {
    text-align: center;
    padding: 50px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-divider-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #F4B41A;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.7;
}

.section-divider-dots span:nth-child(2) {
    opacity: 1;
    transform: scale(1.3);
}

/* Responsive */
@media(max-width: 576px) {
    .section-divider {
        height: 60px;
    }
    
    .section-divider-icon {
        width: 40px;
        height: 40px;
    }
    
    .section-divider-icon::after {
        width: 10px;
        height: 10px;
    }
    
    .section-divider-simple {
        margin: 40px auto;
    }
    
    .section-divider-dots {
        padding: 35px 0;
    }
}
