/* Additional Page Styles */

/* About Page */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-image {
    background: var(--gradient);
    border-radius: 30px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.about-hero-image i {
    font-size: 10rem;
    color: var(--white);
}

.about-hero-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-hero-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Mission & Vision */
.mission-vision {
    background: var(--light-gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.mv-card i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 350px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 30px;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    top: 30px;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
    left: auto;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-content h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--primary);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray);
}

/* Services Page */
.services-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.services-hero-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.services-hero-text p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-hero-image {
    background: var(--gradient);
    border-radius: 30px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-image i {
    font-size: 8rem;
    color: var(--white);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.service-detail:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.service-detail-icon {
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.service-detail-icon i {
    font-size: 5rem;
    color: var(--white);
}

.service-detail-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-detail-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.service-features li i {
    color: var(--secondary);
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 4px;
    background: var(--primary);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.process-step h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Portfolio Page */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.portfolio-detail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    background: var(--light-gray);
}

.portfolio-detail .portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 30px;
    color: var(--white);
}

.portfolio-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-detail p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Team Page */
.team-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.team-detail-card:hover {
    transform: translateY(-10px);
}

.team-detail-photo {
    height: 300px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-detail-photo i {
    font-size: 6rem;
    color: var(--white);
}

.team-detail-info {
    padding: 30px;
}

.team-detail-info h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-detail-info .role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.team-detail-info p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Contact Page */
.contact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-card h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 30px 0 15px;
}

.legal-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: var(--gray);
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content .last-updated {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.legal-content .last-updated p {
    margin: 0;
    color: var(--dark);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Responsive for pages */
@media (max-width: 1024px) {
    .about-hero,
    .services-hero,
    .contact-hero {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }
}
