/* ===== ABOUT PAGE REDESIGN ===== */
/* Dark Theme with Gold Accents */

:root {
    --gold: #f8be14;
    --gold-dark: #e5ae12;
    --gold-light: #fad257;
    --gold-pale: #fce9aa;
    
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-elevated: #1a1a1a;
    --bg-light: #1e1e1e;
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-tertiary: #999999;
    
    --border-light: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(248, 190, 20, 0.2);
    
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 25px -5px rgba(248, 190, 20, 0.2);
}

/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.gold-text {
    color: var(--gold);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -8px rgba(248, 190, 20, 0.4);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ===== HERO CINEMATIC ===== */
.about-hero-cinematic {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    padding: 6rem 0;
}

.about-hero-cinematic .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 60px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.hero-cinematic-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-cinematic-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cinematic-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-block {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-cinematic-visual {
    position: relative;
    height: 400px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    filter: blur(60px);
    opacity: 0.15;
    animation: floatShape 12s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 0;
    background: var(--gold-light);
    opacity: 0.1;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 20%;
    background: var(--gold-pale);
    opacity: 0.12;
    animation-delay: 6s;
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.icon-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.icon-3 {
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.05); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Media Collage */
.story-media {
    position: relative;
}

.media-collage {
    position: relative;
    height: 500px;
}

.collage-item {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.collage-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-1 {
    width: 280px;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 2;
}

.item-2 {
    width: 220px;
    height: 280px;
    top: 50px;
    right: 0;
    z-index: 3;
}

.item-3 {
    width: 200px;
    height: 250px;
    bottom: 0;
    left: 50px;
    z-index: 1;
}

.item-4 {
    width: 180px;
    height: 220px;
    bottom: 50px;
    right: 50px;
    z-index: 4;
}

/* Story Content */
.story-content {
    padding-left: 2rem;
}

.story-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-text.lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 2rem;
}

.story-milestones {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.milestone {
    display: flex;
    flex-direction: column;
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.milestone-desc {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ===== PHILOSOPHY BANNER ===== */
.philosophy-banner {
    padding: 5rem 0;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
    position: relative;
    overflow: hidden;
}

.philosophy-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 190, 20, 0.1), transparent 70%);
    border-radius: 50%;
}

.philosophy-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.philosophy-quote blockquote {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-author {
    font-size: 1rem;
    color: var(--gold);
}

/* ===== VALUES SHOWCASE ===== */
.values-showcase {
    padding: 6rem 0;
    background: var(--bg-card);
}

.values-grid-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-showcase-card {
    background: var(--bg-dark);
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.value-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.value-showcase-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.value-showcase-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.value-showcase-card:hover .value-icon {
    background: var(--gold);
    transform: rotate(10deg) scale(1.1);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.value-showcase-card:hover .value-icon i {
    color: var(--bg-dark);
}

.value-showcase-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-showcase-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== STATISTICS COUNTER ===== */
.stats-counter-section {
    padding: 4rem 0;
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-card));
}

.stats-grid-counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-counter-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat-counter-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
}

.stat-counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-counter-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.stat-counter-desc {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ===== MISSION & VISION SHOWCASE ===== */
.mission-vision-showcase {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.mission-vision-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-card-showcase,
.vision-card-showcase {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card-showcase::before,
.vision-card-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.mission-card-showcase:hover,
.vision-card-showcase:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-icon i {
    font-size: 2.2rem;
    color: var(--gold);
}

.card-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.mission-card-showcase h2,
.vision-card-showcase h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.mission-card-showcase p,
.vision-card-showcase p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mission-list-showcase,
.vision-list-showcase {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list-showcase li,
.vision-list-showcase li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.mission-list-showcase i,
.vision-list-showcase i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ===== FOUNDER SPOTLIGHT ===== */
.founder-spotlight {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
}

.founder-spotlight-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.founder-image-container {
    position: relative;
}

.founder-image-frame {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(248, 190, 20, 0.3);
}

.founder-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.founder-image-frame:hover img {
    transform: scale(1.05);
}

.founder-image-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(248, 190, 20, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.founder-image-frame:hover .founder-image-glow {
    opacity: 1;
}

.founder-social-links {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    border: 1px solid var(--border-gold);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.founder-content-spotlight {
    padding: 2rem;
}

.founder-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.founder-content-spotlight h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.founder-qualifications {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.founder-qualifications span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

.founder-qualifications i {
    color: var(--gold);
}

.founder-bio-spotlight {
    margin-bottom: 2rem;
}

.founder-bio-spotlight p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.founder-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.achievement-chip {
    background: rgba(248, 190, 20, 0.1);
    border: 1px solid var(--border-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-size: 0.85rem;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.achievement-chip i {
    color: var(--gold);
}

/* ===== TEAM SHOWCASE ===== */
.team-showcase {
    padding: 6rem 0;
    background: var(--bg-card);
}

.team-grid-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member-card {
    background: var(--bg-dark);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transition: bottom 0.3s ease;
}

.team-member-card:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.member-bio {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.client-logo {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(1) brightness(1.5);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0) brightness(1);
}

/* ===== TESTIMONIALS SHOWCASE ===== */
.testimonials-showcase {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-dark));
    position: relative;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    padding: 1rem;
}

.testimonial-card-showcase {
    background: var(--bg-elevated);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid var(--border-gold);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-showcase {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-showcase img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.testimonial-author-showcase h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.testimonial-author-showcase span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonials-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-controls button:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: scale(1.1);
}

/* ===== AWARDS SECTION ===== */
.awards-section {
    padding: 6rem 0;
    background: var(--bg-card);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.award-card {
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.award-icon {
    width: 70px;
    height: 70px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.award-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.award-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.award-card p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ===== CAREER CTA ===== */
.career-cta {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.career-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
    border-radius: 48px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.career-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.career-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.career-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.career-icon {
    width: 150px;
    height: 150px;
    background: rgba(248, 190, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
}

.career-icon i {
    font-size: 5rem;
    color: var(--gold);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .values-grid-showcase,
    .team-grid-showcase,
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-counter {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero-cinematic .container,
    .story-grid,
    .founder-spotlight-grid,
    .mission-vision-cards {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-cinematic-visual {
        display: none;
    }
    
    .story-media {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .career-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .career-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .career-buttons {
        justify-content: center;
    }
    
    .career-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-cinematic-title {
        font-size: 3rem;
    }
    
    .hero-cinematic-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .values-grid-showcase,
    .team-grid-showcase,
    .awards-grid,
    .stats-grid-counter,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-quote blockquote {
        font-size: 1.5rem;
    }
    
    .media-collage {
        height: 400px;
    }
    
    .item-1 {
        width: 200px;
        height: 250px;
    }
    
    .item-2 {
        width: 160px;
        height: 200px;
    }
    
    .item-3 {
        width: 140px;
        height: 180px;
    }
    
    .item-4 {
        width: 120px;
        height: 150px;
    }
    
    .founder-qualifications {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .career-card {
        padding: 3rem 2rem;
    }
    
    .career-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-cinematic-title {
        font-size: 2.5rem;
    }
    
    .story-milestones {
        flex-direction: column;
        gap: 1rem;
    }
    
    .founder-achievements {
        flex-direction: column;
    }
    
    .achievement-chip {
        width: 100%;
        justify-content: center;
    }
    
    .testimonial-card-showcase {
        padding: 2rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .floating-shape,
    .floating-icon,
    .hero-scroll-indicator,
    .value-showcase-card,
    .team-member-card,
    .award-card,
    .client-logo,
    .career-icon,
    .collage-item,
    .founder-image-frame img {
        animation: none;
        transition: none;
    }
}