/* Group and HR about page styles */

/* Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.about-hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--mira-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Our Story Section */
.story-section {
    padding: 84px 24px;
    background: var(--white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 2px 80px 2px 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-image::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 26px;
    height: 26px;
    border-top: 1.5px solid var(--mira-gold);
    border-left: 1.5px solid var(--mira-gold);
    z-index: 2;
    pointer-events: none;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-content {
    padding: 20px 0;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--mira-gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.3;
}

.values-header .section-title,
.divisions-header .section-title,
.presence-header .section-title {
    color: var(--black);
}

.section-text {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Team Section */
.team-section {
    padding: 96px 24px;
    background: var(--white);
    border-top: 1px solid var(--gray-medium);
    position: relative;
    overflow: hidden;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.team-header {
    text-align: center;
    margin-bottom: 56px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 40px;
}

/* Stagger every other column for editorial rhythm */
.team-card:nth-child(3n + 2) {
    transform: translateY(48px);
}

.team-card {
    position: relative;
    padding-left: 18px;
}

/* Large faint index numeral */
.team-card::before {
    content: attr(data-index);
    position: absolute;
    top: -28px;
    left: -10px;
    font-size: 84px;
    font-weight: 700;
    line-height: 1;
    color: var(--mira-gold);
    opacity: 0.1;
    letter-spacing: -0.04em;
    pointer-events: none;
    z-index: 0;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.team-card:hover::before {
    opacity: 0.18;
    transform: translateY(-4px);
}

.team-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 2px 80px 2px 2px;
    background: var(--gray-light);
    margin-bottom: 22px;
    z-index: 1;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.8s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}

/* Thin gold corner accent on photo */
.team-photo::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    width: 22px;
    height: 22px;
    border-top: 1.5px solid var(--mira-gold);
    border-left: 1.5px solid var(--mira-gold);
    transition:
        width 0.4s ease,
        height 0.4s ease;
}

.team-card:hover .team-photo::after {
    width: 32px;
    height: 32px;
}

.team-info {
    position: relative;
    padding-left: 16px;
}

/* Vertical gold line accent next to name */
.team-info::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 2px;
    height: 28px;
    background: var(--mira-gold);
    transition: height 0.4s ease;
}

.team-card:hover .team-info::before {
    height: 44px;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.team-role {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-text);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Values Section */
.values-section {
    padding: 84px 24px;
    background: var(--gray-light);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 48px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    position: relative;
    background: var(--white);
    padding: 32px 24px;
    border-radius: 2px 32px 2px 2px;
    text-align: center;
    transition:
        box-shadow 0.4s ease,
        background 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    width: 18px;
    height: 18px;
    border-top: 1.5px solid var(--mira-gold);
    border-left: 1.5px solid var(--mira-gold);
    transition:
        width 0.4s ease,
        height 0.4s ease;
}

.value-card:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.value-card:hover::before {
    width: 26px;
    height: 26px;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--mira-gold-light);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--mira-gold);
}

.value-title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    padding-bottom: 12px;
}

.value-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--mira-gold);
    transition: width 0.4s ease;
}

.value-card:hover .value-title::after {
    width: 48px;
}

.value-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* Divisions Section */
.divisions-section {
    padding: 84px 24px;
    background: var(--white);
}

.divisions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.divisions-header {
    text-align: center;
    margin-bottom: 48px;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.division-card {
    position: relative;
    background: var(--white);
    border-radius: 2px 60px 2px 2px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.division-card::before {
    content: attr(data-index);
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    opacity: 0.55;
    letter-spacing: -0.04em;
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transition: opacity 0.4s ease;
}

.division-card:hover {
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}

.division-card:hover::before {
    opacity: 0.85;
}

.division-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.division-image::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    width: 24px;
    height: 24px;
    border-top: 1.5px solid var(--mira-gold);
    border-left: 1.5px solid var(--mira-gold);
    z-index: 2;
    pointer-events: none;
    transition:
        width 0.4s ease,
        height 0.4s ease;
}

.division-card:hover .division-image::after {
    width: 34px;
    height: 34px;
}

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

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

.division-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.division-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--mira-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.division-badge svg {
    width: 14px;
    height: 14px;
}

.division-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.division-desc {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.division-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--mira-gold);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.division-link:hover {
    gap: 12px;
}

.division-link svg {
    width: 16px;
    height: 16px;
}

/* Global Presence Section */
.presence-section {
    padding: 84px 24px;
    background: var(--gray-light);
}

.presence-container {
    max-width: 1200px;
    margin: 0 auto;
}

.presence-header {
    text-align: center;
    margin-bottom: 48px;
}

.presence-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.stat-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--mira-gold);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
}

.presence-locations {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.location-tag svg {
    width: 16px;
    height: 16px;
    color: var(--mira-gold);
}

/* CTA Section */
.cta-section {
    padding: 72px 24px;
    background: var(--black);
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-title span {
    color: var(--mira-gold);
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: var(--mira-gold);
    color: var(--white);
}

.cta-btn-primary:hover {
    background: var(--mira-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cta-btn-secondary {
    background: var(--mira-green);
    color: var(--white);
    border: none;
}

.cta-btn-secondary:hover {
    background: #0f2615;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 52, 30, 0.3);
}

.icon-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-icon .icon-svg {
    width: 28px;
    height: 28px;
    filter: invert(58%) sepia(23%) saturate(1005%) hue-rotate(353deg)
        brightness(90%) contrast(86%);
}

.division-badge .icon-svg {
    width: 14px;
    height: 14px;
    filter: invert(58%) sepia(23%) saturate(1005%) hue-rotate(353deg)
        brightness(90%) contrast(86%);
}

.division-link .icon-svg {
    width: 16px;
    height: 16px;
    filter: invert(58%) sepia(23%) saturate(1005%) hue-rotate(353deg)
        brightness(90%) contrast(86%);
}

.location-tag .icon-svg {
    width: 16px;
    height: 16px;
    filter: invert(58%) sepia(23%) saturate(1005%) hue-rotate(353deg)
        brightness(90%) contrast(86%);
}

.cta-btn .icon-svg {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .story-container {
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        left: 12px;
        right: 12px;
        padding: 8px 14px;
    }

    .logo-mg {
        height: 24px;
    }

    .logo-text {
        font-size: 12px;
    }

    .logo-subtext {
        font-size: 9px;
    }

    .nav-right {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .navbar.menu-open .nav-right {
        display: flex;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-contact {
        font-size: 14px;
    }

    .lang-toggle {
        align-self: flex-start;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .about-hero {
        height: 50vh;
        min-height: 350px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image {
        order: -1;
    }

    .section-title {
        font-size: 28px;
    }

    .team-section {
        padding: 70px 20px;
    }

    .team-header {
        margin-bottom: 50px;
    }

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

    .team-card:nth-child(3n + 2) {
        transform: none;
    }

    .team-card:nth-child(even) {
        transform: translateY(28px);
    }

    .team-card::before {
        font-size: 56px;
        top: -18px;
    }

    .team-photo {
        border-radius: 2px 50px 2px 2px;
    }

    .team-name {
        font-size: 15px;
    }

    .team-role {
        font-size: 10px;
        letter-spacing: 0.15em;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .presence-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cta-title {
        font-size: 28px;
    }

    .footer {
        padding: 40px 24px 24px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .footer-right {
        align-items: center;
        margin-left: 0;
    }

    .footer-social {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .footer-social-group {
        align-items: center;
    }

    .footer-social-divider {
        display: none;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }
}

.contact-cta-icon {
    width: 80px;
    height: 80px;
    background: var(--mira-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 64vh;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 0;
    padding-top: 104px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 28%;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 13, 9, 0.82) 0%,
            rgba(7, 13, 9, 0.58) 40%,
            rgba(7, 13, 9, 0.24) 72%,
            rgba(7, 13, 9, 0.44) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.18) 44%,
            rgba(0, 0, 0, 0.68) 100%
        );
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.about-hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--mira-gold-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-hero-title {
    max-width: 760px;
    font-size: 54px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.about-hero-subtitle {
    max-width: 660px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.story-image {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.model-header .section-title,
.malaysia-header .section-title,
.commitment-header .section-title {
    color: var(--black);
}

/* Model Section */
.model-section {
    padding: 84px 24px;
    background: var(--gray-light);
}

.model-container {
    max-width: 1200px;
    margin: 0 auto;
}

.model-header {
    text-align: center;
    margin-bottom: 48px;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.model-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.model-icon {
    width: 64px;
    height: 64px;
    background: var(--mira-gold-light);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.model-icon svg {
    width: 28px;
    height: 28px;
    color: var(--mira-gold);
}

.model-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.model-desc {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

.malaysia-section {
    padding: 84px 24px;
    background: var(--white);
}

.malaysia-container {
    max-width: 1200px;
    margin: 0 auto;
}

.malaysia-header {
    text-align: center;
    margin-bottom: 48px;
}

.malaysia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.malaysia-image {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.malaysia-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.malaysia-content {
    padding: 20px 0;
}

.malaysia-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.malaysia-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.malaysia-benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--mira-gold-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.malaysia-benefit-icon svg {
    width: 20px;
    height: 20px;
    color: var(--mira-gold);
}

.malaysia-benefit-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--black);
}

/* Commitment Section */
.commitment-section {
    padding: 84px 24px;
    background: var(--gray-light);
}

.commitment-container {
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-header {
    text-align: center;
    margin-bottom: 48px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.commitment-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.commitment-icon {
    width: 56px;
    height: 56px;
    background: var(--mira-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.commitment-icon svg {
    width: 24px;
    height: 24px;
    color: var(--mira-gold);
}

.commitment-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.commitment-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 84px 24px;
    background: var(--white);
    border-top: 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 48px;
}

/* CTA Section */
.cta-section {
    padding: 80px 24px;
    background: #1a1a1a;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--mira-gold);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #0f2615;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(22, 52, 30, 0.3);
}

.model-icon .icon-svg,
.malaysia-benefit-icon .icon-svg {
    filter: invert(27%) sepia(44%) saturate(468%) hue-rotate(88deg)
        brightness(94%) contrast(91%);
}

.model-icon .icon-svg {
    width: 28px;
    height: 28px;
}

.malaysia-benefit-icon .icon-svg {
    width: 20px;
    height: 20px;
}

.commitment-icon .icon-svg {
    width: 24px;
    height: 24px;
    filter: invert(27%) sepia(44%) saturate(468%) hue-rotate(88deg)
        brightness(94%) contrast(91%);
}

/* FAQ Section */
.faq-section {
    padding: 40px 24px 60px;
    background: var(--gray-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--mira-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.faq-icon .icon-svg {
    width: 16px;
    height: 16px;
    filter: invert(58%) sepia(23%) saturate(1005%) hue-rotate(353deg)
        brightness(90%) contrast(86%);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-container {
        gap: 40px;
    }

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

    .malaysia-grid {
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        left: 12px;
        right: 12px;
        padding: 8px 14px;
    }

    .navbar.compact {
        left: 8px;
        right: 8px;
        padding: 3px 16px;
        border-radius: 0 0 14px 14px;
    }

    .navbar.compact .logo-mg {
        height: 20px;
    }

    .navbar.compact .logo-text {
        font-size: 11px;
    }

    .navbar.compact .logo-subtext {
        font-size: 8px;
    }

    .nav-right {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .navbar.menu-open .nav-right {
        display: flex;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-contact {
        font-size: 14px;
    }

    .lang-toggle {
        align-self: flex-start;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .about-hero {
        height: 56vh;
        min-height: 400px;
        padding-top: 92px;
    }

    .about-hero-title {
        font-size: 38px;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image {
        order: -1;
    }

    .section-title {
        font-size: 28px;
    }

    .malaysia-section {
        padding: 60px 24px;
    }

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

    .malaysia-image {
        height: 320px;
    }

    .malaysia-benefits {
        grid-template-columns: 1fr;
    }

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

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

    .team-card:nth-child(3n + 2) {
        transform: none;
    }

    .team-card::before {
        font-size: 56px;
        top: -18px;
    }

    .cta-title {
        font-size: 28px;
    }

    .footer {
        padding: 40px 24px 24px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .footer-right {
        align-items: center;
        margin-left: 0;
    }

    .footer-social {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .footer-social-group {
        align-items: center;
    }

    .footer-social-divider {
        display: none;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }
}

body.page-about .about-hero-bg {
    background-image: url("../resources/media/placeholders/melbourne_city.jpg");
}

body.page-about .division-intro {
    max-width: 640px;
    margin: 0 auto;
}

body.page-hr-about .about-hero-bg {
    background-image: url("../resources/media/placeholders/team_meeting.jpg");
}

body.page-about .about-hero,
body.page-hr-about .about-hero {
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

body.page-about .about-hero-content,
body.page-hr-about .about-hero-content {
    max-width: 820px;
    padding: 0 24px;
    text-align: center;
}

body.page-about .about-hero-title,
body.page-about .about-hero-subtitle,
body.page-hr-about .about-hero-title,
body.page-hr-about .about-hero-subtitle {
    margin-right: auto;
    margin-left: auto;
}
