/* ============================================
   HynoJobs — About Page Styles
   ============================================ */

/* Active nav link */
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}
.nav-links a.active::after {
    width: 100% !important;
}

/* ============== PAGE HERO ============== */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(99, 102, 241, 0.18) 0%, transparent 50%),
        linear-gradient(180deg, #fafaff 0%, #ffffff 100%);
    z-index: -1;
}

.page-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin: 20px 0;
    font-weight: 800;
}
.page-hero .lead {
    font-size: 19px;
    color: var(--gray-500);
    margin: 0 auto 32px;
    max-width: 640px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    font-size: 14px;
    color: var(--gray-500);
}
.breadcrumb a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb span { color: var(--gray-700); font-weight: 500; }
.breadcrumb i { font-size: 10px; color: var(--gray-300); }

/* ============== STORY ============== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
}
.story-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.story-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}
.story-badge i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.story-badge strong {
    display: block;
    color: var(--dark);
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.story-badge small {
    color: var(--gray-500);
    font-size: 12px;
}

.story-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin: 12px 0 20px;
}
.story-content p {
    color: var(--gray-700);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.75;
}
.story-content em { color: var(--primary); font-style: normal; font-weight: 600; }

.story-points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.story-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--gray-700);
}
.story-points i { color: var(--success); font-size: 18px; }

/* ============== MISSION & VISION ============== */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.mv-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}
.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.mv-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--gradient-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
}
.mv-card h3 {
    font-size: 26px;
    margin-bottom: 14px;
}
.mv-card p {
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.75;
}
.mv-card strong { color: var(--primary-dark); }

/* ============== VALUES ============== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.value-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: var(--transition);
}
.value-card:hover .value-icon {
    background: var(--gradient-1);
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
}
.value-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
}
.value-card p {
    color: var(--gray-500);
    font-size: 14px;
}

/* ============== STATS BANNER ============== */
.stats-banner {
    background: var(--gradient-1);
    padding: 80px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat-block h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 8px;
    font-weight: 800;
}
.stat-block p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

/* ============== TEAM ============== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 28px;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.team-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.team-card:hover .team-img img { transform: scale(1.05); }
.team-card h4 {
    margin: 24px 0 4px;
    font-size: 20px;
}
.team-card span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.team-card p {
    color: var(--gray-500);
    font-size: 14px;
    padding: 12px 24px 0;
    line-height: 1.6;
}
.team-socials {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gray-100);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.team-socials a:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============== JOURNEY ============== */
.journey-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    position: relative;
}
.journey-item {
    position: relative;
}
.journey-year {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.journey-card {
    background: var(--white);
    padding: 24px 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.journey-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.journey-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}
.journey-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}
.journey-card em { color: var(--primary); font-style: normal; font-weight: 600; }

/* ============== CONTACT ============== */
.contact-section {
    background: linear-gradient(180deg, #fafaff 0%, #ffffff 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}
.contact-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition);
    display: block;
    color: inherit;
}
a.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: var(--gradient-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.contact-card h4 {
    font-size: 19px;
    margin-bottom: 6px;
}
.contact-card p {
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 12px;
}
.contact-card strong {
    color: var(--primary);
    font-size: 15px;
    word-break: break-word;
}

/* Centered single email card */
.contact-single {
    display: flex;
    justify-content: center;
}
.contact-single .contact-card {
    max-width: 460px;
    width: 100%;
    padding: 48px 36px;
}
.contact-single .contact-icon {
    width: 76px;
    height: 76px;
    font-size: 28px;
    margin-bottom: 24px;
}
.contact-single .contact-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}
.contact-single .contact-card p {
    margin-bottom: 16px;
    font-size: 14px;
}
.contact-single .contact-card strong {
    font-size: 17px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.08);
}

/* Contact form */
.contact-form-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-field {
    margin-bottom: 20px;
}
.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-300);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
    background: var(--white);
}
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
.form-field textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form button {
    width: 100%;
    justify-content: center;
}
.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-500);
}
.form-note a {
    color: var(--primary);
    font-weight: 600;
}
.form-note a:hover { text-decoration: underline; }

/* ============== RESPONSIVE ============== */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; gap: 60px; }
    .story-image img { height: 400px; }
    .mv-grid { grid-template-columns: 1fr; gap: 24px; }
    .mv-card { padding: 36px 28px; }
}

@media (max-width: 768px) {
    .page-hero { padding: 120px 0 60px; }
    .story-badge {
        right: 16px;
        bottom: -20px;
        padding: 14px 18px;
    }
    .contact-form-wrap { padding: 32px 24px; }
    .contact-form .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .journey-year { font-size: 44px; }
}

@media (max-width: 480px) {
    .contact-form-wrap { padding: 24px 18px; }
    .stat-block h2 { font-size: 2rem; }
}
