/* Enhanced About Styles for Seival */
.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    min-height: 100vh;
    animation: fadeIn 0.8s ease-out;
}

.page-title {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    animation: fadeIn 0.8s ease-out;
}

/* Brand Story */
.brand-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
    animation: fadeIn 0.8s ease-out;
}

.story-content h2 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

.story-content strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.story-image .placeholder-image.large {
    height: 450px;
    border-radius: 15px;
    animation: fadeIn 1.2s ease-out;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Mission & Values */
.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.value-card {
    background: rgba(30, 30, 30, 0.9);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.value-card:nth-child(1) { animation-delay: 0.2s; }
.value-card:nth-child(2) { animation-delay: 0.4s; }
.value-card:nth-child(3) { animation-delay: 0.6s; }
.value-card:nth-child(4) { animation-delay: 0.8s; }

.value-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-gold);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: pulse 2.5s infinite;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.value-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    background: rgba(30, 30, 30, 0.9);
    padding: 4rem 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.services-section h2 {
    text-align: center;
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.service-item {
    background: rgba(10, 10, 10, 0.5);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.service-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Terms Link Section */
.terms-link-section {
    text-align: center;
    padding: 4rem 3rem;
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    animation: fadeIn 1s ease-out;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
}

.terms-link-section h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terms-link-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.8rem;
    }
    
    .brand-story {
        gap: 3rem;
    }
    
    .story-image .placeholder-image.large {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 2.3rem;
        margin-bottom: 2rem;
    }
    
    .brand-story {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-image .placeholder-image.large {
        height: 300px;
    }

    .mission-values {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card,
    .service-item {
        padding: 2rem;
    }
    
    .services-section {
        padding: 3rem 2rem;
    }
    
    .services-section h2 {
        font-size: 2rem;
    }
    
    .terms-link-section {
        padding: 3rem 2rem;
    }
    
    .terms-link-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .story-content h2 {
        font-size: 1.8rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .value-icon {
        font-size: 2.8rem;
    }
    
    .value-card h3,
    .service-item h3 {
        font-size: 1.4rem;
    }
    
    .services-section {
        padding: 2rem 1.5rem;
    }
    
    .services-section h2 {
        font-size: 1.6rem;
    }
    
    .terms-link-section {
        padding: 2rem 1.5rem;
    }
    
    .terms-link-section h2 {
        font-size: 1.6rem;
    }
    
    .story-image .placeholder-image.large {
        height: 250px;
        font-size: 1.4rem;
    }
}