/* About Hero Section */
.about-hero-section {
    padding: 8rem 2rem 4rem;
    background: transparent;
    position: relative;
}

.about-hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
}

.about-hero-visual {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* About Hero Section Mobile Responsive */
@media (max-width: 1024px) {
    .about-hero-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .about-hero-title {
        font-size: 3rem;
    }

    .about-hero-visual {
        min-height: 300px;
        max-height: 350px;
    }

    .about-hero-img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 6rem 1rem 3rem;
    }

    .about-hero-wrapper {
        gap: 2rem;
    }

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

    .about-hero-visual {
        min-height: 250px;
        max-height: 300px;
    }

    .about-hero-img {
        max-height: 300px;
    }

    .about-info-section {
        padding: 3rem 1rem 0;
    }

    .about-section-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 5rem 1rem 2rem;
    }

    .about-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .about-hero-visual {
        min-height: 200px;
        max-height: 250px;
    }

    .about-hero-img {
        max-height: 250px;
    }

    .about-section-label {
        font-size: 1rem;
    }

    .about-section-description {
        font-size: 0.95rem;
    }
}

.about-info-section {
    padding: 4rem 2rem;
    padding-bottom: 0;
    background: transparent;
    text-align: center;
}

.about-info-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section-item {
    margin-bottom: 3rem;
    text-align: left;
}

.about-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #ff9784;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-section-label i {
    color: #ed654c;
    font-size: 1.2rem;
}

.about-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.about-section-description {
    font-size: 1.125rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Values Section */
.about-values-section {
    padding-top: 0;
    background: transparent;
    position: relative;
}

.about-values-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-values-container {
    position: relative;
    margin-bottom: 2rem;
}

.about-values-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.about-values-grid::-webkit-scrollbar {
    display: none;
}

.about-value-box {
    flex: 0 0 400px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.about-value-box:hover {
    transform: translateY(-10px);
    background: #222222;
    border-color: #ff9784;
}

.about-value-image {
    margin: 0 auto 2rem;
    width: 350px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.about-value-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-value-description {
    font-size: 1.125rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Arrow Controls */
.about-values-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.about-values-arrow {
    width: 50px;
    height: 50px;
    background: #ff9784;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-values-arrow:hover {
    background: #ffa794;
    transform: scale(1.1);
}

.about-values-arrow:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .about-values-grid {
        padding: 1rem 2rem;
        scroll-snap-type: x proximity;
    }

    .about-value-box {
        flex: 0 0 350px;
        padding: 2rem 1.5rem;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .about-value-title {
        font-size: 1.5rem;
    }

    .about-value-image {
        width: 200px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .about-values-grid {
        padding: 1rem 1.5rem;
        scroll-snap-type: x proximity;
    }

    .about-value-box {
        flex: 0 0 300px;
        padding: 1rem 0.5rem;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .about-value-title {
        font-size: 1.25rem;
    }

    .about-value-description {
        font-size: 1rem;
    }
}



/* Team Section */
.team-section {
    padding: 6rem 2rem;
    padding-bottom: 0;
    background: transparent;
    position: relative;
}

.team-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-label {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-right: auto;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.team-label i {
    color: #ff9784;
    font-size: 1.1rem;
}

/* Dylan Section */
.dylan-section {
    margin-bottom: 6rem;
    margin-left: auto;
}

.dylan-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 90px;
}

.dylan-content {
    flex: 1;
}

.dylan-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.dylan-bio {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.6;
}

.dylan-image-section {
    flex: 0 0 300px;
    text-align: left;
}

.dylan-image-container {
    margin-bottom: 1.5rem;
}

.dylan-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.dylan-name {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.dylan-details {
    text-align: left;
}

.dylan-detail-item {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.dylan-detail-label {
    color: white;
    font-weight: 600;
}

/* Team Experts Section */
.team-experts-section {
    margin-top: 4rem;
}

.team-experts-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.team-experts-subtitle {
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.team-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.team-member {
    justify-self: center;
    margin-bottom: 50px;
}

.last-member {
    grid-column: span 3;
    justify-self: center;
}

.team-member-image {
    margin-bottom: 1.5rem;
}

.team-member-img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    filter: grayscale(100%);
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.team-member-role {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member-details {
    max-width: 250px;
}

.team-member-detail {
    font-size: 0.9rem;
    color: #bbbbbb;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.team-member-detail strong {
    color: white;
}

.team-member-fun-fact {
    text-align: left;
    font-size: 0.9rem;
    color: #aaaaaa;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .last-member {
        grid-column: span 1;
    }
}

@media (max-width: 1024px) {
    .team-section {
        padding: 0;
    }
    
    .dylan-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .dylan-image-section {
        flex: none;
    }

    .dylan-details {
        text-align: center;
    }
    .team-label {
        margin: 20px auto;
    }
    .dylan-image-section {
        text-align: center;
        margin: 0 auto;
    }
    .team-member {
        margin: 25px auto;
        text-align: left;
    }
    .team-experts-title, .team-experts-subtitle {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .dylan-title,
    .team-experts-title {
        font-size: 2rem;
    }

    .dylan-img,
    .team-member-img {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .dylan-title,
    .team-experts-title {
        font-size: 1.75rem;
    }

    .dylan-img,
    .team-member-img {
        width: 225px;
        height: 225px;
    }

    .team-member {
        max-width: 225px;
        margin: 25px auto;
        text-align: left;
    }
}