/* ===================================================================== */
/* About Us Page - Dark Luxury Theme */
/* ===================================================================== */

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    text-align: center;
    padding: 190px 0 190px;
    color: var(--rz-text-dark, #ffffff);
    background: linear-gradient(
            120deg,
            rgba(10, 10, 15, 0.85),
            rgba(10, 10, 15, 0.6)
        ),
        url("/frontend/img/header-aboutus-1.jpg") center/cover no-repeat;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 20%,
        rgba(212, 175, 55, 0.15),
        transparent 60%
    );
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 30% 80%,
            rgba(212, 175, 55, 0.08),
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 20%,
            rgba(212, 175, 55, 0.06),
            transparent 50%
        );
    pointer-events: none;
    z-index: 0;
}

.about-hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.2),
        rgb(212 175 55 / 51%)
    );
    border: 1px solid var(--rz-border, rgba(212, 175, 55, 0.3));
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--rz-primary-accent, #d4af37);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.about-hero__title {
    margin: 1.5rem 0 1rem;
    font-size: clamp(32px, 3.2vw + 12px, 70px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--rz-text-dark, #ffffff);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(212, 175, 55, 0.4);
}

.about-hero__title span {
    color: var(--rz-primary-accent, #d4af37);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.about-hero__subtitle {
    font-size: clamp(16px, 0.75vw + 14px, 20px);
    line-height: 2;
    color: var(--rz-text-medium, rgba(255, 255, 255, 0.9));
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-hero__cta {
    margin-top: 2.5rem;
    display: inline-flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-hero__cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-hero__cta a:first-child {
    background: linear-gradient(
        135deg,
        var(--rz-gold-light, #f0d674),
        var(--rz-primary-accent, #d4af37)
    );
    color: #0a0a0f;
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--rz-primary-accent, #d4af37);
}

.about-hero__cta a:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.5),
        0 8px 20px rgba(212, 175, 55, 0.3);
    background: linear-gradient(
        135deg,
        var(--rz-primary-accent, #d4af37),
        var(--rz-gold-dark, #b8924a)
    );
}

.about-hero__cta a:last-child {
    border: 1px solid var(--rz-border, rgba(212, 175, 55, 0.4));
    color: var(--rz-text-dark, #ffffff);
    background: rgba(18, 18, 26, 0.4);
    backdrop-filter: blur(10px);
}

.about-hero__cta a:last-child:hover {
    color: #0a0a0f;
    background: linear-gradient(
        135deg,
        var(--rz-gold-light, #f0d674),
        var(--rz-primary-accent, #d4af37)
    );
    border-color: var(--rz-primary-accent, #d4af37);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Story Section */
.about-story {
    padding: 80px 0;
    background: linear-gradient(
        180deg,
        var(--rz-surface, #12121a) 0%,
        var(--rz-bg, #0a0a0f) 100%
    );
    position: relative;
}

.about-story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 70% 50%,
        rgba(212, 175, 55, 0.06) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.story-card {
    background: linear-gradient(
        135deg,
        var(--rz-surface-card, #1e1e2e) 0%,
        var(--rz-surface-elevated, #1a1a24) 100%
    );
    border-radius: 20px;
    border: 1px solid var(--rz-border, rgba(212, 175, 55, 0.2));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(212, 175, 55, 0.2);
    padding: 2.5rem 2.25rem;
    position: relative;
    z-index: 1;
}

.story-card__title {
    font-size: clamp(26px, 1.4vw + 18px, 40px);
    font-weight: 900;
    color: var(--rz-text-dark, #ffffff);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}

.story-card p {
    margin-bottom: 1.2rem;
    line-height: 2.15;
    color: var(--rz-text-light, #b0b0c8);
    font-size: 1.05rem;
}

.story-highlights {
    margin: 1.7rem 0 1.4rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.story-highlights li {
    position: relative;
    padding-right: 1.75rem;
    color: var(--rz-text-medium, #e8e8f0);
    font-weight: 600;
}

.story-highlights li::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    right: 0;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--rz-gold-light, #f0d674),
        var(--rz-primary-accent, #d4af37)
    );
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25),
        0 4px 12px rgba(212, 175, 55, 0.4);
}

.story-quote {
    margin-top: 2rem;
    padding: 1.4rem 1.8rem;
    border-right: 3px solid var(--rz-primary-accent, #d4af37);
    background: linear-gradient(
        90deg,
        rgba(212, 175, 55, 0.15),
        rgba(212, 175, 55, 0.03)
    );
    font-weight: 700;
    color: var(--rz-primary-accent, #d4af37);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.story-media {
    position: relative;
}

.story-media__frame {
    min-height: 340px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--rz-text-light, #b0b0c8);
    overflow: hidden;
    border: 1px solid var(--rz-border, rgba(212, 175, 55, 0.2));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(212, 175, 55, 0.2);
    background: linear-gradient(
        135deg,
        var(--rz-surface-card, #1e1e2e),
        var(--rz-surface-elevated, #1a1a24)
    );
}

.story-media__frame img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.story-media__frame:hover img {
    transform: scale(1.05);
}

.story-media__frame span {
    max-width: 260px;
    font-weight: 600;
}

/* Vision Section */
.about-vision {
    padding: 120px 0;
    background: linear-gradient(
        180deg,
        var(--rz-bg, #0a0a0f) 0%,
        var(--rz-surface, #12121a) 50%,
        var(--rz-bg, #0a0a0f) 100%
    );
    position: relative;
}

.about-vision::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-heading__badge {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.2),
        rgba(212, 175, 55, 0.1)
    );
    color: var(--rz-primary-accent, #d4af37);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border: 1px solid var(--rz-border, rgba(212, 175, 55, 0.3));
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.section-heading__title {
    font-size: clamp(28px, 2.1vw + 16px, 48px);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--rz-text-dark, #ffffff);
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}

.section-heading__subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: var(--rz-text-light, #b0b0c8);
    line-height: 2;
}

.vision-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    position: relative;
    z-index: 1;
}

.vision-card {
    --accent-1: var(--rz-primary-accent, #d4af37);
    --accent-2: rgba(212, 175, 55, 0.35);
    position: relative;
    height: 100%;
    border-radius: 20px;
    padding: 2.2rem 2rem;
    background: linear-gradient(
        135deg,
        var(--rz-surface-card, #1e1e2e) 0%,
        var(--rz-surface-elevated, #1a1a24) 100%
    );
    border: 1px solid var(--rz-border, rgba(212, 175, 55, 0.2));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(212, 175, 55, 0.15);
    overflow: hidden;
    transition: all 0.35s ease;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7),
        0 12px 32px rgba(212, 175, 55, 0.3);
    border-color: var(--rz-primary-accent, #d4af37);
}

/* Decorative glow accents */
.vision-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.2),
        rgba(212, 175, 55, 0) 62%
    );
    filter: blur(2px);
    pointer-events: none;
}

.vision-card::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 240px;
    height: 240px;
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.15),
        rgba(212, 175, 55, 0) 65%
    );
    pointer-events: none;
}

/* Ensure content is above decorative layers */
.vision-card > * {
    position: relative;
    z-index: 1;
}

.vision-card__head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.vision-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--rz-gold-light, #f0d674),
        var(--rz-primary-accent, #d4af37)
    );
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #0a0a0f;
    border: 1px solid var(--rz-primary-accent, #d4af37);
}

.vision-icon i {
    font-size: 1.3rem;
    color: #0a0a0f;
    font-weight: 900;
}

.vision-card__title {
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0.2rem 0 1rem;
    color: var(--rz-text-dark, #ffffff);
    position: relative;
    padding-bottom: 0.6rem;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.vision-card__title::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--rz-gold-light, #f0d674),
        var(--rz-primary-accent, #d4af37),
        transparent
    );
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.vision-card p {
    line-height: 2;
    color: var(--rz-text-light, #b0b0c8);
    margin-bottom: 1rem;
}

.vision-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.vision-card ul li {
    padding-right: 1.4rem;
    position: relative;
    color: var(--rz-text-medium, #e8e8f0);
    font-weight: 600;
}

.vision-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--rz-primary-accent, #d4af37);
    font-size: 0.85rem;
}

/* Subtle accent variations per card */
.vision-grid .vision-card:nth-child(1) {
    --accent-1: #d4af37;
    --accent-2: rgba(212, 175, 55, 0.35);
}

.vision-grid .vision-card:nth-child(2) {
    --accent-1: #f0d674;
    --accent-2: rgba(240, 214, 116, 0.35);
}

.vision-grid .vision-card:nth-child(3) {
    --accent-1: #b8924a;
    --accent-2: rgba(184, 146, 74, 0.35);
}

/* CTA Section */
.about-cta {
    padding: 110px 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.12),
        rgba(212, 175, 55, 0.04)
    );
    text-align: center;
    position: relative;
}

.about-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.about-cta__title {
    font-size: clamp(28px, 2vw + 18px, 46px);
    font-weight: 900;
    color: var(--rz-text-dark, #ffffff);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}

.about-cta__subtitle {
    max-width: 640px;
    margin: 0 auto 2.4rem;
    color: var(--rz-text-light, #b0b0c8);
    line-height: 2;
    position: relative;
    z-index: 1;
}

.about-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.about-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.about-cta__btn--primary {
    background: linear-gradient(
        135deg,
        var(--rz-gold-light, #f0d674),
        var(--rz-primary-accent, #d4af37)
    );
    color: #0a0a0f;
    box-shadow: 0 14px 38px rgba(212, 175, 55, 0.4),
        0 7px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--rz-primary-accent, #d4af37);
}

.about-cta__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(212, 175, 55, 0.5),
        0 9px 24px rgba(212, 175, 55, 0.3);
    background: linear-gradient(
        135deg,
        var(--rz-primary-accent, #d4af37),
        var(--rz-gold-dark, #b8924a)
    );
}

.about-cta__btn--ghost {
    border: 1px solid var(--rz-border, rgba(212, 175, 55, 0.3));
    color: var(--rz-text-dark, #ffffff);
    background: linear-gradient(
        135deg,
        var(--rz-surface-card, #1e1e2e),
        var(--rz-surface-elevated, #1a1a24)
    );
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.about-cta__btn--ghost:hover {
    border-color: var(--rz-primary-accent, #d4af37);
    color: #0a0a0f;
    background: linear-gradient(
        135deg,
        var(--rz-gold-light, #f0d674),
        var(--rz-primary-accent, #d4af37)
    );
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

/* ===================================================================== */
/* Responsive Design */
/* ===================================================================== */

@media (max-width: 991.98px) {
    .about-hero {
        padding: 160px 0 120px;
    }

    .about-story,
    .about-vision {
        padding: 60px 0;
    }

    .about-cta {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 150px 0 60px;
        text-align: center;
    }

    .story-card {
        padding: 2rem 1.8rem;
    }

    .story-media__frame {
        min-height: 260px;
    }

    .story-media__frame img {
        min-height: 260px;
    }

    .vision-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .vision-icon i {
        font-size: 1.15rem;
    }

    .about-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .about-cta__btn {
        width: 65%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .about-hero {
        padding: 140px 0 100px;
    }

    .about-hero__cta {
        width: 65%;
    }

    .about-hero__cta a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .story-card {
        padding: 1.75rem 1.5rem;
    }

    .about-vision {
        padding: 60px 0;
    }

    .about-cta {
        padding: 60px 0;
    }
}

/* ===================================================================== */
/* Additional Enhancements */
/* ===================================================================== */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Page container */
.about-story .container,
.about-vision .container,
.about-cta .container {
    position: relative;
    z-index: 1;
}

/* Selection color */
::selection {
    background: var(--rz-primary-accent, #d4af37);
    color: #0a0a0f;
}

::-moz-selection {
    background: var(--rz-primary-accent, #d4af37);
    color: #0a0a0f;
}
