/* ============================================
   ABOUT PAGE — PAGE HERO BANNER
============================================= */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg {
    transform: scale(1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(2, 21, 39, 0.6) 0%,
        rgba(2, 21, 39, 0.85) 100%
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.page-hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.page-hero-breadcrumb a:hover {
    color: var(--color-primary);
}

.page-hero-breadcrumb svg {
    opacity: 0.4;
}

/* ============================================
   ABOUT STORY SECTION
============================================= */
.about-story {
    padding: 120px 0;
    background: var(--color-bg-warm);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-images {
    position: relative;
}

.story-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-img-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.story-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--color-white);
    box-shadow: var(--shadow-lg);
}

.story-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.story-text .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.story-text .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.story-quote {
    margin-bottom: 16px;
}

.story-lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-text p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.signature-img {
    height: 50px;
    width: auto;
    opacity: 0.7;
}

.story-signature strong {
    display: block;
    font-size: 16px;
    color: var(--color-dark);
}

.story-signature span {
    font-size: 13px;
    color: var(--color-text-muted);
}

@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .story-img-accent {
        right: 20px;
        bottom: -30px;
        width: 160px;
        height: 210px;
    }
    .story-experience-badge {
        left: 20px;
    }
}

/* ============================================
   STATS BANNER
============================================= */
.stats-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 21, 39, 0.88);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box:last-child {
    border-right: none;
}

.stat-icon {
    color: var(--color-primary);
    margin-bottom: 16px;
    opacity: 0.7;
}

.stat-box-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1;
}

.stat-box-suffix {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--color-primary);
    font-weight: 600;
}

.stat-box-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .stat-box:nth-child(3),
    .stat-box:nth-child(4) {
        border-bottom: none;
    }
}

/* ============================================
   MISSION & VISION SECTION
============================================= */
.mission-section {
    padding: 120px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card {
    padding: 48px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-primary);
    transition: height 0.6s ease;
}

.mission-card:hover::before {
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.mission-card-icon {
    color: var(--color-primary);
    margin-bottom: 24px;
    opacity: 0.8;
}

.mission-card-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.mission-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .mission-card {
        padding: 32px;
    }
}

/* ============================================
   STRENGTHS SECTION
============================================= */
.strengths-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.strengths-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.strengths-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 21, 39, 0.88);
}

.strengths-section .container {
    position: relative;
    z-index: 1;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.strength-card {
    position: relative;
    padding: 40px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.strength-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-6px);
}

.strength-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.strength-icon {
    color: var(--color-primary);
    margin-bottom: 20px;
    transition: transform var(--transition);
}

.strength-card:hover .strength-icon {
    transform: scale(1.1);
}

.strength-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.strength-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   VALUES SECTION
============================================= */
.values-section {
    padding: 120px 0;
    background: var(--color-bg-warm);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    position: relative;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-card-number {
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--color-border);
    line-height: 1;
}

.value-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-primary);
    transition: all var(--transition);
}

.value-card:hover .value-card-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT PROCESS SECTION
============================================= */
.about-process {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about-process-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-process-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 21, 39, 0.85);
}

.about-process .container {
    position: relative;
    z-index: 1;
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-process-step {
    text-align: center;
    position: relative;
    padding: 40px 24px;
}

.about-process-step .process-step-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.about-process-step .process-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 168, 83, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-primary);
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.about-process-step:hover .process-step-icon {
    background: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.about-process-step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.about-process-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Connecting line between steps */
.about-process-step::after {
    content: '';
    position: absolute;
    top: 78px;
    right: -15%;
    width: 30%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.about-process-step:last-child::after {
    display: none;
}

@media (max-width: 968px) {
    .about-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-process-step::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .about-process-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TEAM SECTION
============================================= */
.team-section {
    padding: 120px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    transition: all var(--transition-slow);
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 3/4;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.08);
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 21, 39, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

.team-social-links {
    display: flex;
    gap: 10px;
}

.team-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition);
}

.team-social-links a:hover {
    background: var(--color-primary);
    color: var(--color-dark);
}

.team-card-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 968px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}