/* ===== ABOUT HERO BANNER ===== */
.about-hero {
    position: relative;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1600') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero-title {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInDown 0.7s ease forwards;
    animation-delay: 0.2s;
}

.about-hero-line {
    width: 60px;
    height: 3px;
    background: #c8a951;
    margin: 0 auto 20px;
    transform: scaleX(0);
    transform-origin: center;
    animation: scaleXIn 0.6s ease forwards;
    animation-delay: 0.5s;
}

.about-hero-breadcrumb {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
}

.about-hero-breadcrumb-link {
    color: #c8a951;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-hero-breadcrumb-link:hover {
    color: #d4b95f;
}

.about-hero-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
}

.about-hero-breadcrumb-current {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* ===== ABOUT CONTENT SECTION ===== */
.about-content {
    background: #0a0a0a;
    padding: 100px 0;
}

.about-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content-image {
    flex: 0 0 45%;
    max-width: 45%;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content.about-content-visible .about-content-image {
    opacity: 1;
    transform: translateX(0);
}

.about-content-image img {
    width: 100%;
    border-radius: 12px;
    border: 3px solid #c8a951;
    outline: 3px solid rgba(200, 169, 81, 0.3);
    outline-offset: 12px;
    display: block;
}

.about-content-text {
    flex: 0 0 55%;
    max-width: 55%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.about-content.about-content-visible .about-content-text {
    opacity: 1;
    transform: translateX(0);
}

.about-content-label {
    color: #c8a951;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
}

.about-content-heading {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin: 15px 0 20px;
}

.about-content-paragraph {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
}

.about-content-paragraph--second {
    margin-top: 15px;
}

.about-content-features {
    margin-top: 25px;
}

.about-content-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.about-content-feature i {
    color: #c8a951;
    font-size: 16px;
}

.about-content-feature span {
    color: #ffffff;
    font-size: 15px;
    margin-left: 10px;
}

.about-content-cta {
    display: inline-block;
    background: #c8a951;
    color: #0a0a0a;
    padding: 13px 35px;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content-cta:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-hero {
        height: 250px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-content-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-content-image,
    .about-content-text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-content-image img {
        border-radius: 8px;
        outline: none;
    }

    .about-content-heading {
        font-size: 28px;
    }
}
