/* About Us Page Specific Styles */

.about-section {
    padding: 6rem 0 4rem;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Company Story */
.company-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow-color);
}

/* Values Section */
.values-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: var(--border-radius);
}

.values-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    margin: 4rem 0;
}

.team-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--accent-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
    text-align: center;
    transition: transform var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--secondary-color);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Experience Stats */
.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--primary-color);
    border-radius: var(--border-radius);
}

.stat-item {
    text-align: center;
    color: var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Certifications */
.certifications-section {
    margin: 4rem 0;
}

.certifications-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.certification-card {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform var(--transition-smooth);
}

.certification-card:hover {
    transform: translateY(-5px);
}

.certification-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .company-story {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        order: 2;
    }
    
    .story-image {
        order: 1;
        height: 300px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}


/* About Main Section - O nas page */
.about-main-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    min-height: 600px;
}

.about-text-content {
    padding: 2rem;
    width: 100%;
}

.about-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
}

.about-highlights {
    margin-bottom: 1rem;
}

.highlight-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.highlight-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.highlight-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

.highlight-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
}

.about-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #666666;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta-btn:hover {
    background: #555555;
    transform: translateY(-2px);
}

.about-image-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: calc(100% + 2rem);
    margin-left: 2rem;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    height: 100%;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-main-section {
        padding: 60px 0;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "content";
        gap: 3rem;
    }
    
    .about-text-content {
        grid-area: content;
        padding: 1rem 0;
    }
    
    .about-image-content {
        grid-area: image;
        width: 100%;
        margin-left: 0;
    }
    
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .highlight-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .highlight-item h3 {
        font-size: 1.1rem;
    }
    
    .about-image-wrapper img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about-main-section {
        padding: 50px 0;
    }
    
    .about-content-wrapper {
        gap: 2rem;
    }
    
    .about-main-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .about-highlights {
        margin-bottom: 2rem;
    }
    
    .highlight-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .about-image-wrapper img {
        height: 300px;
    }
    
    .about-cta-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}