.about-section {
    padding: 120px 0;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: var(--dark-brown);
    font-family: 'Fira Sans', sans-serif;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--warm-brown);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--warm-brown);
}

.about-highlight {
    background: linear-gradient(135deg, rgba(0, 150, 64, 0.08), rgba(23, 58, 56, 0.08));
    padding: 30px 40px;
    border-radius: 25px;
    border-left: 5px solid var(--bright-green);
    margin: 40px 0;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--dark-brown);
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(0, 150, 64, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bright-green);
    margin-bottom: 10px;
    font-family: 'Fira Sans', sans-serif;
}

.stat-label {
    color: var(--warm-brown);
    font-size: 1rem;
    font-weight: 500;
}

.team-section {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    margin-top: 60px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(124, 87, 71, 0.1);
}

.team-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 40px;
    text-align: center;
}

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

.team-member {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--light-gray);
    transition: all 0.3s ease;
}

.team-member:hover .member-photo {
    border-color: var(--bright-green);
    transform: scale(1.05);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-brown);
    font-size: 1.2rem;
}

.member-role {
    color: var(--bright-green);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.member-desc {
    color: var(--warm-brown);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(124, 87, 71, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--bright-green);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 150, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--bright-green);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--bright-green);
    color: var(--white);
    transform: scale(1.1);
}

.value-item h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-brown);
    font-size: 1.2rem;
}

.value-item p {
    color: var(--warm-brown);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

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

.story-section {
    background: linear-gradient(135deg, rgba(216, 214, 209, 0.7), rgba(239, 237, 233, 0.7));
    padding: 60px;
    border-radius: 24px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-warm);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        justify-content: center;
        gap: 30px;
    }

    .stat-item {
        min-width: 120px;
    }
}

     /* Стили для свайпера интерьера */
 .interior-swiper-section {
     background: var(--white);
     border-radius: 24px;
     padding: 40px 20px;
     margin-top: 40px;
     box-shadow: var(--shadow-soft);
     border: 1px solid rgba(124, 87, 71, 0.1);
 }

.interior-description {
    text-align: center;
    margin-bottom: 30px;
}

.interior-swiper-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.interior-swiper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.swiper-slide {
    flex: 0 0 calc(100% - 40px);
    min-width: calc(100% - 40px);
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.95);
}

.swiper-slide.active {
    opacity: 1;
    transform: scale(1);
}

@media (min-width: 768px) {
    .swiper-slide {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }

    .swiper-slide.active {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    .swiper-slide {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
    }

    .swiper-slide.active {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
    }
}

@media (min-width: 1200px) {
    .swiper-slide {
        flex: 0 0 calc(25% - 20px);
        min-width: calc(25% - 20px);
    }

    .swiper-slide.active {
        flex: 0 0 calc(25% - 20px);
        min-width: calc(25% - 20px);
    }
}

.interior-card {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interior-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.interior-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.interior-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.interior-card:hover .interior-image img {
    transform: scale(1.05);
}

.interior-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: white;
}

.interior-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.interior-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Кнопки навигации свайпера */
.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: none;
    outline: none;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    /*background: var(--bright-green);*/
    color: black;
    transform: translateY(-50%) scale(1.1);
}

/* Пагинация свайпера */
.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(124, 87, 71, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: var(--bright-green);
    transform: scale(1.2);
}

.pagination-dot:hover {
    background: var(--bright-green);
    transform: scale(1.1);
}

.swiper-info {
    color: var(--warm-brown);
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .interior-swiper-section {
        padding: 30px 15px;
    }

    .interior-swiper-container {
        padding: 0 20px;
    }

    .interior-image {
        height: 250px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .interior-info h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .interior-swiper-container {
        padding: 0 10px;
    }

    .interior-image {
        height: 220px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .interior-info h5 {
        font-size: 1rem;
    }

    .interior-info p {
        font-size: 0.8rem;
    }
}

/* Скрытие кнопок на очень маленьких экранах */
@media (max-width: 400px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}
