/* ========================
   ABOUT HERO
   ======================== */
.about-hero { padding: 80px 20px 70px; }

.about-hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}
.about-hero-blob--1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.09) 0%, transparent 70%);
    top: -80px; right: -80px;
    animation: blobFloat 7s ease-in-out infinite;
}
.about-hero-blob--2 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    bottom: -40px; left: -40px;
    animation: blobFloat 9s ease-in-out infinite reverse;
}
@keyframes blobFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-14px) scale(1.04); }
}

.about-hero-icon {
    width: 76px; height: 76px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: #FFD700;
    margin: 0 auto 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.2);
    animation: fadeInUp 0.6s ease both;
}

.about-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
    animation: fadeInUp 0.7s ease both;
}
.about-hero-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.about-hero-breadcrumb a:hover { color: #FFD700; }
.about-hero-breadcrumb span { color: rgba(255,255,255,0.85); font-weight: 600; }
.about-hero-breadcrumb i { font-size: 0.6rem; }

.about-hero-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem !important;
}
.about-hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
}

/* Tag pills below subtitle */
.about-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    animation: fadeInUp 1s ease both;
}
.about-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.20);
    color: rgba(255,255,255,0.85);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}
.about-hero-tag i { color: #FFD700; font-size: 0.75rem; }

/* ========================
   BIOGRAPHY SECTION
   ======================== */
.biography-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(220,20,60,0.08), 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(220,20,60,0.06);
}

.about-image-container { position: relative; padding: 12px; }

.image-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(220,20,60,0.18);
    z-index: 2;
}
.image-frame img {
    width: 100%; height: auto; display: block;
    border-radius: 18px;
    transition: transform 0.4s ease;
}
.about-image-container:hover .image-frame img { transform: scale(1.04); }

/* Corner accent ring */
.image-accent {
    position: absolute;
    top: 0; right: 0;
    width: calc(100% - 12px); height: calc(100% - 12px);
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #DC143C, #FFD700) border-box;
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
}

.biography-text { padding-left: 2rem; }

.biography-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #DC143C;
    line-height: 1.25;
}

.title-divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, #DC143C, #FFD700);
    border-radius: 2px;
}

.biography-content {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
}

/* ========================
   MISSION & VISION
   ======================== */
.mv-section { background: linear-gradient(180deg, #fff8f8 0%, #fff 100%); }

.mv-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(220,20,60,0.08);
    border: 1px solid rgba(220,20,60,0.07);
    height: 100%;
    transition: transform 0.28s, box-shadow 0.28s;
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(220,20,60,0.14);
}

.mv-card-accent {
    height: 5px;
    background: linear-gradient(90deg, #DC143C, #B8001F);
}
.mv-card--vision .mv-card-accent {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.mv-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
}

.mv-icon-wrap {
    flex-shrink: 0;
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #DC143C, #B8001F);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 14px rgba(220,20,60,0.30);
}
.mv-icon-wrap--vision {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B0000;
    box-shadow: 0 4px 14px rgba(255,215,0,0.35);
}

.mv-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.mv-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #777;
    margin: 0;
}

/* ========================
   VALUES SECTION
   ======================== */
.values-section { background: #f9f9f9; }

.values-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.values-header-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #DC143C, #B8001F);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #FFD700;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(220,20,60,0.28);
}
.values-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 2px;
}
.values-subtitle {
    font-size: 0.82rem;
    color: #aaa;
    margin: 0;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 24px 16px 20px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.value-card--passion::before  { background: linear-gradient(90deg, #DC143C, #FF6B6B); }
.value-card--excellence::before { background: linear-gradient(90deg, #FFD700, #FFA500); }
.value-card--community::before { background: linear-gradient(90deg, #4A90D9, #357ABD); }
.value-card--tradition::before { background: linear-gradient(90deg, #20B2AA, #008B8B); }

.value-card-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 14px;
}
.value-card--passion .value-card-icon   { background: rgba(220,20,60,0.10); color: #DC143C; }
.value-card--excellence .value-card-icon { background: rgba(255,215,0,0.15); color: #D4A017; }
.value-card--community .value-card-icon  { background: rgba(74,144,217,0.12); color: #4A90D9; }
.value-card--tradition .value-card-icon  { background: rgba(32,178,170,0.12); color: #20B2AA; }

.value-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.value-card-desc {
    font-size: 0.78rem;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* ========================
   CTA SECTION
   ======================== */
.about-cta {
    position: relative;
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
    color: white;
}
.about-cta-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.about-cta-blob--1 {
    width: 250px; height: 250px;
    background: rgba(255,215,0,0.07);
    top: -80px; right: -60px;
}
.about-cta-blob--2 {
    width: 180px; height: 180px;
    background: rgba(255,255,255,0.05);
    bottom: -60px; left: -40px;
}
.about-cta-icon {
    position: relative;
    z-index: 1;
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.14);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #FFD700;
    margin: 0 auto 20px;
}
.about-cta-title {
    position: relative;
    z-index: 1;
    font-size: clamp(1.3rem, 5vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
}
.about-cta-text {
    position: relative;
    z-index: 1;
    font-size: clamp(0.88rem, 3vw, 1.05rem);
    color: rgba(255,255,255,0.80);
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.about-cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #DC143C;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    transition: all 0.25s;
}
.about-cta-btn:hover {
    background: #FFD700;
    color: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* ========================
   RESPONSIVE — DESKTOP
   ======================== */
@media (max-width: 991px) {
    .biography-text { padding-left: 0; margin-top: 1.5rem; }
    .biography-title { font-size: 1.8rem; }
    .biography-wrapper { padding: 2rem; }
}

/* ========================
   RESPONSIVE — TABLET
   ======================== */
@media (max-width: 768px) {
    .biography-wrapper {
        padding: 0;
        box-shadow: none;
        border: none;
        background: transparent;
    }
    .biography-title { font-size: 1.6rem; }
    .biography-content { font-size: 0.95rem; line-height: 1.75; }
    .mv-card-inner { padding: 18px; gap: 12px; }
    .mv-icon-wrap { width: 44px; height: 44px; font-size: 1.2rem; border-radius: 12px; }
    .mv-title { font-size: 1rem; }
}

/* ========================
   RESPONSIVE — MOBILE
   ======================== */
@media (max-width: 575.98px) {
    .about-hero { padding: 55px 16px 50px; }
    .about-hero-icon { width: 62px; height: 62px; font-size: 1.7rem; border-radius: 18px; margin-bottom: 14px; }
    .about-hero-tag { font-size: 0.72rem; padding: 6px 12px; }

    .biography-title { font-size: 1.4rem; }
    .title-divider { width: 40px; }

    .values-header { gap: 12px; margin-bottom: 18px; }
    .values-header-icon { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 12px; }
    .values-title { font-size: 1.25rem; }

    .value-card { padding: 18px 12px 16px; }
    .value-card-icon { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 10px; }
    .value-card-title { font-size: 0.88rem; }
    .value-card-desc { font-size: 0.73rem; }

    .about-cta { padding: 48px 16px; }
    .about-cta-icon { width: 54px; height: 54px; font-size: 1.5rem; border-radius: 14px; }
    .about-cta-btn { padding: 13px 28px; font-size: 0.9rem; }
}
