/* Our Culture Page Styles */

/* Culture Hero Section */
.culture-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.pattern-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--green);
    border-radius: 50%;
    animation: patternFloat 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.pattern-circle:nth-child(1) { top: 10%; left: 10%; }
.pattern-circle:nth-child(2) { top: 30%; left: 85%; }
.pattern-circle:nth-child(3) { top: 70%; left: 15%; }

.pattern-hexagon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--blue);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: patternRotate 10s linear infinite;
    animation-delay: var(--delay);
    opacity: 0.3;
}

.pattern-hexagon:nth-child(4) { top: 20%; left: 70%; }
.pattern-hexagon:nth-child(5) { top: 80%; left: 60%; }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-word {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.2em;
}

.title-word:nth-child(1) {
    color: var(--text-main);
}

.title-word:nth-child(2) {
    background: linear-gradient(90deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-word:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.hero-title:hover .title-word:nth-child(2)::after {
    transform: scaleX(1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
    font-style: italic;
}

.hero-description {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(120, 176, 75, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* Culture Values Preview */
.culture-values-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    perspective: 1000px;
}

.value-orb {
    background: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.value-orb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-orb:hover {
    transform: translateY(-10px) scale(1.1);
}

.value-orb:hover::before {
    opacity: 1;
}

.value-orb i {
    font-size: 2rem;
    color: var(--green);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.value-orb:hover i {
    color: white;
}

.value-orb span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.value-orb:hover span {
    color: white;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.decoration-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
}

/* Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(120, 176, 75, 0.1);
    border-color: rgba(120, 176, 75, 0.2);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
}

.card-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.1), rgba(110, 193, 228, 0.1));
    border-radius: 50%;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.value-card:hover .card-icon-bg {
    transform: scale(1.2);
}

.card-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--green);
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.card-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.card-stats {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Cultural Pillars */
.cultural-pillars {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fdfe 0%, #e8f7fa 100%);
    position: relative;
    overflow: hidden;
}

.pillar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pillar-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(110, 193, 228, 0.1), transparent);
    animation: waveMove 20s linear infinite;
    animation-delay: var(--delay);
    opacity: 0.3;
}

.pillars-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.pillar-card.reverse {
    direction: rtl;
}

.pillar-card.reverse .pillar-content {
    direction: ltr;
}

.pillar-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Growth Visual */
.visual-growth {
    position: relative;
    width: 200px;
    height: 200px;
}

.growth-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.growth-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

/* Balance Visual */
.visual-balance {
    width: 200px;
    height: 200px;
    position: relative;
}

.balance-scale {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 10px;
    background: var(--text-muted);
    border-radius: 5px;
}

.scale-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 80px;
    background: var(--text-muted);
}

.balance-weights {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.weight {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
    animation: weightBalance 4s ease-in-out infinite;
}

.weight.work {
    background: linear-gradient(135deg, var(--green), #81c784);
    animation-delay: 0s;
}

.weight.life {
    background: linear-gradient(135deg, var(--blue), #29b6f6);
    animation-delay: 2s;
}

/* Inclusion Visual */
.visual-inclusion {
    width: 200px;
    height: 200px;
    position: relative;
}

.inclusion-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
}

.circle-piece {
    position: absolute;
    top: 0;
    left: 50%;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, 
        rgba(120, 176, 75, calc(0.2 + var(--index) * 0.2)),
        rgba(110, 193, 228, calc(0.2 + var(--index) * 0.2))
    );
    border-radius: 0 100% 0 0;
    transform-origin: 0 100%;
    transform: rotate(calc(var(--index) * 90deg));
    animation: pieceRotate 6s linear infinite;
    animation-delay: calc(var(--index) * -1s);
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
}

.pillar-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
    position: relative;
}

.pillar-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 2px;
}

.pillar-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1rem;
}

.pillar-features li i {
    color: var(--green);
    font-size: 1.1rem;
}

/* Team Environment */
.team-environment {
    padding: 120px 0;
    background: white;
}

.environment-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Circle Graph */
.circle-graph {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 0 auto;
}

.graph-segment {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
    background: conic-gradient(
        transparent 0deg calc(360deg - calc(var(--percent) * 3.6deg)),
        var(--color) calc(360deg - calc(var(--percent) * 3.6deg)) 360deg
    );
}

.graph-segment:nth-child(1) {
    --percent: 95;
    --color: var(--green);
    transform: rotate(0deg);
}

.graph-segment:nth-child(2) {
    --percent: 90;
    --color: var(--blue);
    transform: rotate(120deg);
}

.graph-segment:nth-child(3) {
    --percent: 88;
    --color: #ff9f43;
    transform: rotate(240deg);
}

.graph-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.graph-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-main);
    line-height: 1;
}

.graph-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.graph-legend {
    margin-top: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-muted);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Environment Features */
.environment-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(248, 253, 254, 0.5), rgba(232, 247, 250, 0.5));
    border-radius: 15px;
    border: 1px solid rgba(110, 193, 228, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Culture in Action */
.culture-action {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.action-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.action-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(110, 193, 228, 0.5);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: particleFloat 6s ease-in-out infinite;
}

.action-showcase {
    max-width: 1000px;
    margin: 60px auto 0;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse .showcase-content {
    direction: ltr;
}

.showcase-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Community Visual */
.visual-community {
    width: 200px;
    height: 200px;
    position: relative;
}

.community-hand {
    position: absolute;
    top: 30%;
    left: 30%;
    width: 60px;
    height: 40px;
    background: var(--green);
    border-radius: 50% 50% 0 0;
    transform: rotate(-45deg);
    animation: handWave 3s ease-in-out infinite;
}

.community-heart {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #ff4757;
    transform: rotate(45deg);
    animation: heartBeat 2s ease-in-out infinite;
}

.community-heart::before,
.community-heart::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #ff4757;
    border-radius: 50%;
}

.community-heart::before {
    top: -20px;
    left: 0;
}

.community-heart::after {
    top: 0;
    left: -20px;
}

.community-people {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.person {
    width: 30px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    position: relative;
    animation: personBounce 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

/* Innovation Visual */
.visual-innovation {
    width: 200px;
    height: 200px;
    position: relative;
}

.innovation-gear {
    position: absolute;
    background: var(--blue);
    border-radius: 50%;
    animation: gearRotate linear infinite;
}

.gear-1 {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 20px;
    animation-duration: 8s;
}

.gear-2 {
    width: 60px;
    height: 60px;
    top: 70px;
    left: 90px;
    animation-duration: 6s;
    animation-direction: reverse;
}

.gear-3 {
    width: 40px;
    height: 40px;
    top: 120px;
    left: 40px;
    animation-duration: 4s;
}

.innovation-spark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkPulse 1.5s ease-in-out infinite;
}

.showcase-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.showcase-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.showcase-stat {
    text-align: center;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Join Culture CTA */
.join-culture {
    padding: 120px 0;
    background: linear-gradient(135deg, #e8f7fa 0%, #d4e9f1 100%);
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 3rem;
    animation: iconBounce 3s ease-in-out infinite;
}

.join-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.join-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.culture-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    min-width: 140px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(120, 176, 75, 0.1);
}

.benefit i {
    font-size: 2rem;
    color: var(--green);
}

.benefit span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.join-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(120, 176, 75, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--green);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--green);
    color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes patternFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes patternRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

@keyframes weightBalance {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-20px); }
    75% { transform: translateY(20px); }
}

@keyframes pieceRotate {
    0% { transform: rotate(calc(var(--index) * 90deg)); }
    100% { transform: rotate(calc(var(--index) * 90deg + 360deg)); }
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes handWave {
    0%, 100% { transform: rotate(-45deg); }
    50% { transform: rotate(-30deg); }
}

@keyframes heartBeat {
    0%, 100% { transform: translate(-50%, -50%) rotate(45deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(45deg) scale(1.1); }
}

@keyframes personBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes gearRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes sparkPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .pillar-card,
    .environment-stats,
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pillar-card.reverse,
    .showcase-item.reverse {
        direction: ltr;
    }
    
    .pillar-visual,
    .showcase-visual {
        height: 200px;
        order: -1;
    }
    
    .circle-graph {
        margin-bottom: 40px;
    }
    
    .culture-values-preview {
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .showcase-stats {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .value-orb {
        width: 100px;
        height: 100px;
    }
    
    .value-orb i {
        font-size: 1.5rem;
    }
    
    .pillar-visual,
    .showcase-visual {
        height: 150px;
    }
    
    .visual-growth,
    .visual-balance,
    .visual-inclusion,
    .visual-community,
    .visual-innovation {
        transform: scale(0.8);
    }
}