/* ============================================
   ABOUT US PAGE ONLY - Само за about-us.html
   ============================================ */
.contact-hero {
    background-image: url('../images/about/about-header.jpg');
    background-position: center 55%;
    transform: scale(1.1);
    z-index: -1;
}

.features {
    padding: 100px 50px;
    min-height: 45vh;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.features > *:not(.hero-bg):not(.shape) {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-section {
    padding: 80px 50px;
    background: #0f0f0f;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: center;
}

.about-text h2 {
    color: #d4a855;
    font-size: 36px;
    margin-bottom: 30px;
}

.about-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    max-height: 500px; /* Ограничава височината */
    /* или */
    height: 450px; /* Фиксирана височина */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Values, Team, Awards Sections */
.values-section,
.team-section,
.awards-section {
    margin-bottom: 80px;
}

.values-section h2,
.team-section h2,
.awards-section h2 {
    text-align: center;
    color: #d4a855;
    font-size: 36px;
    margin-bottom: 50px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(61, 48, 32, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(212, 168, 85, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 85, 0.5);
}

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #d4a855;
    margin-bottom: 15px;
    font-size: 22px;
}

.value-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Team Section */
.team-intro {
    text-align: center;
    color: #ccc;
    margin-bottom: 40px;
    font-size: 18px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: rgba(61, 48, 32, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #d4a855;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: #d4a855;
    margin-bottom: 5px;
}

.member-role {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.team-member p {
    color: #ccc;
    line-height: 1.6;
}

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.award-item {
    text-align: center;
    padding: 30px;
    background: rgba(61, 48, 32, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(212, 168, 85, 0.2);
}

.award-badge {
    font-size: 60px;
    margin-bottom: 15px;
}

.award-item h4 {
    color: #d4a855;
    margin-bottom: 10px;
}

.award-item p {
    color: #ccc;
    margin-bottom: 10px;
}

.award-year {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 168, 85, 0.2);
    border-radius: 15px;
    color: #d4a855;
    font-size: 14px;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 60px 30px;
    background: rgba(61, 48, 32, 0.3);
    border-radius: 20px;
}

.about-cta h2 {
    color: #d4a855;
    font-size: 32px;
    margin-bottom: 15px;
}

.about-cta p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }
    
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .team-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }
}