/* ============================================================
   Premium About Sub-Pages Stylesheet
   Our Story | Sustainability | Careers | Awards
   ============================================================ */

/* ---- Cinematic Page Banner ---- */
.page-banner-cinematic {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

.page-banner-cinematic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(10, 25, 47, 0.92) 0%,
        rgba(26, 60, 94, 0.75) 50%,
        rgba(10, 25, 47, 0.55) 100%
    );
    z-index: 1;
}

/* Animated particles overlay */
.page-banner-cinematic::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(200,168,107,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26,60,94,0.15) 0%, transparent 40%);
    z-index: 1;
    animation: bannerPulse 8s ease-in-out infinite alternate;
}

@keyframes bannerPulse {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

.page-banner-cinematic .banner-inner {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
    width: 100%;
}

.page-banner-cinematic .banner-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 168, 107, 0.2);
    border: 1px solid rgba(200, 168, 107, 0.4);
    backdrop-filter: blur(8px);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.6s ease both;
}

.page-banner-cinematic h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 0.7s 0.1s ease both;
}

.page-banner-cinematic .banner-desc {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s 0.2s ease both;
}

.page-banner-cinematic .breadcrumb-nav {
    animation: fadeInUp 0.7s 0.3s ease both;
}

.page-banner-cinematic .breadcrumb-item a { color: rgba(255,255,255,.65); }
.page-banner-cinematic .breadcrumb-item a:hover { color: var(--secondary); }
.page-banner-cinematic .breadcrumb-item.active { color: var(--secondary); font-weight: 600; }
.page-banner-cinematic .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* Banner stats strip */
.banner-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    animation: fadeInUp 0.7s 0.35s ease both;
    flex-wrap: wrap;
}
.banner-stat-item {
    text-align: center;
}
.banner-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    line-height: 1;
}
.banner-stat-lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}
.banner-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Our Story Page ---- */

/* Story intro with highlight quote */
.story-quote-block {
    border-left: 4px solid var(--secondary);
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(26,60,94,0.04) 0%, rgba(200,168,107,0.04) 100%);
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}
.story-quote-block p {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    margin: 0;
    line-height: 1.6;
}
.story-quote-block cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--secondary);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Timeline section */
.timeline-section { position: relative; }
.timeline-track {
    position: relative;
    padding-left: 2.5rem;
}
.timeline-track::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary) 0%, var(--primary) 100%);
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--secondary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--secondary);
    transition: transform 0.2s;
}
.timeline-item:hover::before { transform: scale(1.3); }
.timeline-year {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}
.timeline-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}
.timeline-text {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Values grid premium */
.values-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}
.value-card-premium {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(15,32,53,0.05);
    border: 1px solid rgba(15,32,53,0.04);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}
.value-card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.value-card-premium:hover { 
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,32,53,0.1);
}
.value-card-premium:hover::before { transform: scaleX(1); }
.value-icon-wrap {
    width: 52px; height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s;
}
.value-card-premium:hover .value-icon-wrap {
    background: var(--secondary);
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
}
.value-title { font-size: 0.95rem; font-weight: 700; color: #1e293b; margin-bottom: 0.4rem; }
.value-text { font-size: 0.82rem; color: #64748b; line-height: 1.55; margin: 0; }

/* ---- Sustainability Page ---- */

.sustainability-intro {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2035 100%);
    border-radius: 24px;
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}
.sustainability-intro::before {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 260px; height: 260px;
    border: 60px solid rgba(200,168,107,0.1);
    border-radius: 50%;
}
.sustainability-intro::after {
    content: '';
    position: absolute;
    top: -30px; left: -30px;
    width: 160px; height: 160px;
    border: 40px solid rgba(255,255,255,0.04);
    border-radius: 50%;
}

.pillar-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 6px 28px rgba(15,32,53,0.06);
    height: 100%;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15,32,53,0.04);
}
.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transition: transform 0.35s;
    transform-origin: left;
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(15,32,53,0.1); }
.pillar-card:hover::after { transform: scaleX(1); }

.pillar-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}
.pillar-card:hover .pillar-icon { transform: scale(1.1) rotate(-3deg); }
.pillar-icon.green { background: rgba(34,197,94,0.1); color: #16a34a; }
.pillar-icon.blue { background: rgba(59,130,246,0.1); color: #2563eb; }
.pillar-icon.amber { background: rgba(245,158,11,0.1); color: #d97706; }
.pillar-icon.purple { background: rgba(139,92,246,0.1); color: #7c3aed; }
.pillar-icon.teal { background: rgba(20,184,166,0.1); color: #0d9488; }
.pillar-icon.rose { background: rgba(244,63,94,0.1); color: #e11d48; }

.pillar-title { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin-bottom: 0.75rem; }
.pillar-text { font-size: 0.875rem; color: #64748b; line-height: 1.65; margin: 0; }

/* Green stat bar */
.green-stat-bar {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid rgba(34,197,94,0.15);
    border-radius: 16px;
    padding: 2rem;
}
.green-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #16a34a;
    display: block;
    line-height: 1;
}
.green-stat-label { font-size: 0.8rem; color: #4b5563; font-weight: 600; margin-top: 0.3rem; display: block; }

/* Achievement strip */
.achievement-strip {
    background: var(--primary);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    color: #fff;
}
.achievement-strip-item {}
.achievement-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.achievement-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: 1px; }

@media (max-width: 768px) {
    .achievement-strip { grid-template-columns: repeat(2,1fr); }
}

/* ---- Careers Page ---- */

/* Job opening card */
.job-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(15,32,53,0.05);
    border: 1px solid rgba(15,32,53,0.04);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.job-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: top;
}
.job-card:hover { transform: translateX(6px); box-shadow: 0 12px 35px rgba(15,32,53,0.1); }
.job-card:hover::before { transform: scaleY(1); }

.job-dept-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s;
}
.job-card:hover .job-dept-icon { background: var(--primary); color: #fff; }

.job-info { flex: 1; }
.job-title { font-size: 1rem; font-weight: 700; color: #1e293b; margin-bottom: 0.35rem; }
.job-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.job-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-flex; align-items: center; gap: 4px;
}
.job-tag.location { background: rgba(59,130,246,0.1); color: #2563eb; }
.job-tag.type { background: rgba(34,197,94,0.1); color: #16a34a; }
.job-tag.dept { background: rgba(200,168,107,0.15); color: #92400e; }
.job-desc { font-size: 0.83rem; color: #64748b; line-height: 1.55; margin: 0; }

/* Perks grid */
.perk-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(15,32,53,0.05);
    border: 1px solid rgba(15,32,53,0.04);
    transition: all 0.3s;
    height: 100%;
}
.perk-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(15,32,53,0.1); }
.perk-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
    transition: all 0.3s;
}
.perk-card:hover .perk-icon { transform: scale(1.1) rotate(-5deg); }
.perk-title { font-size: 0.95rem; font-weight: 700; color: #1e293b; margin-bottom: 0.4rem; }
.perk-text { font-size: 0.82rem; color: #64748b; margin: 0; line-height: 1.5; }

/* Application CTA */
.careers-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2035 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.careers-cta::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border: 70px solid rgba(200,168,107,0.1);
    border-radius: 50%;
}
.careers-cta::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 180px; height: 180px;
    border: 50px solid rgba(255,255,255,0.04);
    border-radius: 50%;
}
.careers-cta h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative; z-index: 1;
}
.careers-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.65;
    position: relative; z-index: 1;
}
.careers-cta .btn { position: relative; z-index: 1; }

/* ---- Awards Page Redesign ---- */

/* Awards hero section */
.awards-hero-section {
    background: linear-gradient(135deg, #fff8f0 0%, #fffbf5 100%);
    border-radius: 24px;
    padding: 3.5rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(200,168,107,0.15);
    position: relative;
    overflow: hidden;
}
.awards-hero-section::before {
    content: '🏆';
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.08;
    pointer-events: none;
}

/* Premium award card with year highlight */
.award-premium-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(15,32,53,0.06);
    border: 1px solid rgba(15,32,53,0.04);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.award-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(15,32,53,0.12);
    border-color: rgba(200,168,107,0.3);
}

.award-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2035 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 130px;
    display: flex; align-items: center; justify-content: center;
}
.award-card-header::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    border: 30px solid rgba(200,168,107,0.15);
    border-radius: 50%;
}
.award-card-img-wrap {
    position: relative; z-index: 1;
}
.award-card-img-wrap img {
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s;
}
.award-premium-card:hover .award-card-img-wrap img {
    opacity: 1;
    transform: scale(1.05);
}
.award-trophy-icon {
    width: 72px; height: 72px;
    background: rgba(200,168,107,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--secondary);
}

.award-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.award-year-pill {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}
.award-premium-card:hover .award-year-pill {
    background: var(--secondary);
    color: #fff;
}
.award-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.award-description {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.55;
    flex: 1;
    margin: 0;
}

/* Year filter tabs for awards */
.award-filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.award-filter-btn {
    padding: 6px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(26,60,94,0.15);
    background: #fff;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.award-filter-btn:hover,
.award-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,60,94,0.25);
}

/* ---- Shared elements ---- */

/* Section intro box */
.section-intro-box {
    background: linear-gradient(135deg, rgba(26,60,94,0.03), rgba(200,168,107,0.06));
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(26,60,94,0.06);
    margin-bottom: 3rem;
}

/* Premium CTA Banner */
.premium-cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2035 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}
.premium-cta-banner::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 250px; height: 250px;
    border: 60px solid rgba(200,168,107,0.12);
    border-radius: 50%;
}
.premium-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -35px; left: -35px;
    width: 170px; height: 170px;
    border: 45px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}
.premium-cta-banner h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative; z-index: 1;
}
.premium-cta-banner p {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.65;
    position: relative; z-index: 1;
}
.premium-cta-banner .btn { position: relative; z-index: 1; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-banner-cinematic {
        background-attachment: scroll !important;
        min-height: 380px;
    }
    .banner-stats { gap: 1.25rem; }
    .banner-stat-num { font-size: 1.5rem; }
    .values-premium-grid { grid-template-columns: 1fr; }
    .sustainability-intro { padding: 2rem; }
    .achievement-strip { grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
    .careers-cta { padding: 2.5rem 1.5rem; }
    .premium-cta-banner { padding: 2.5rem 1.5rem; }
    .job-card { flex-direction: column; }
    .awards-hero-section { padding: 2rem; }
    .awards-hero-section::before { display: none; }
}

@media (max-width: 480px) {
    .page-banner-cinematic h1 { font-size: 1.9rem; }
    .achievement-strip { grid-template-columns: repeat(2,1fr); }
}
