/* CSS khusus untuk halaman about-us.php */

/* About Us Styles */
.hero-about {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.about-story {
    background-color: #fff;
    color: #333;
    padding: 80px 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.0rem;
    line-height: 1.8;
}

.story-grid {
    display: grid;
    gap: 50px;
    align-items: center;
    margin-top: 20px;
}

.story-text h3 {
    color: #333;
    margin: 20px 0 15px 0;
    font-size: 1.3rem;
}

.story-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.story-text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-choose-us {
    background-color: #1a1a1a;
    padding: 80px 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #666;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0.8);
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.trusted-by {
    background-color: #fff;
    color: #333;
    padding: 80px 0;
    text-align: center;
}

.trust-content {
    margin: 40px 0;
}

.trust-item {
    margin-bottom: 40px;
}

.trust-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.brands-list, .eo-list {
    margin-top: 15px;
    font-weight: 500;
    line-height: 1.8;
}

.brands-list span, .eo-list span {
    color: #666;
}


.customer-gallery {
    margin-top: 50px;
}

.customer-image {
    max-width: 100%;
    height: auto;
}

.cta-section {
    background-color: #2a2a2a;
    padding: 80px 0;
    text-align: center;
 
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2rem;
}

.cta-content h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2rem;
}

.cta-content p {
    color: #dadada;
    margin-bottom: 30px;
    font-size: 1.0rem;
}

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

.cta-button {
    display: inline-block;
    color: #dadada;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgb(77, 77, 77);
}

.cta-button:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.cta-button.primary {
    background-color: #444;
    border-color: #666;
}

.cta-button.secondary {
    background-color: transparent;
    border: 1px solid #666;
    color: #dadada;
}

.cta-button.secondary:hover {
    background-color: #444;
}

.section-title-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #272727;
    font-weight: bold;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: #dadada;
    font-weight: bold;
}

/* Responsive About Us */
@media (max-width: 768px) {
    /* Header mobile menggunakan mobile-header-core.css */
    body {
        padding-top: var(--body-padding-top);
    }
    .cta-buttons {
        margin-bottom: 80px;
    }
    /* Konten responsif */
    .hero-about {
        height: 50vh;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-story {
        padding: 40px 0;
    }

    .story-text {
        padding: 0 20px;
    }
    
    .cta-section {
        margin-bottom: -40px;
    }
}

@media (max-width: 480px) {
    .hero-about {
        height: 40vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-story {
        padding: 30px 0;
    }
    
    .story-text {
        padding: 0 15px;
    }
    
    .story-text h3 {
        font-size: 1.1rem;
    }
    
    .story-text p {
        font-size: 0.9rem;
    }
    
    .story-text li {
        font-size: 0.85rem;
    }
    
    .why-choose-us {
        padding: 30px 0;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .trusted-by {
        padding: 30px 0;
    }
    
    .trust-content {
        padding: 0 15px;
    }
    
    .brands-list, .eo-list {
        font-size: 0.8rem;
    }
    
    .customer-gallery {
        padding: 0 15px;
    }
    
    .cta-section {
        padding: 30px 0;
        margin-bottom: -40px;
    }
    
    .cta-content {
        padding: 0 15px;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-button {
        width: 220px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .section-title-text {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.2rem;
        padding: 0 15px;
    }
}