/* Journey Map - Mobile'de gizle */
.journey-map {
    padding: 100px 0;
    background: radial-gradient(circle at center, var(--surface-color) 0%, var(--bg-color) 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .journey-map {
        display: none;
    }
}

[data-theme="dark"] .journey-map {
    background: radial-gradient(circle at center, var(--surface-color) 0%, var(--bg-color) 100%);
}

.live-stats-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    margin-top: 4rem;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    z-index: 10;
    box-shadow: 0 0 40px rgba(41, 61, 129, 0.3);
}

.hub-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    animation: hubPulse 3s infinite;
    opacity: 0.3;
}

@keyframes hubPulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.hub-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hub-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hub-label {
    font-weight: 700;
    font-size: 0.9rem;
}

.hub-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
}

.stat-orbit {
    position: absolute;
    border: 2px dashed rgba(41, 61, 129, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
}

.orbit-3 {
    width: 360px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 50s;
}

.orbit-4 {
    width: 440px;
    height: 440px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 60s;
}

.orbit-5 {
    width: 520px;
    height: 520px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 70s;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.stat-node {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: counterRotate 30s linear infinite;
    box-shadow: var(--shadow-lg);
}

.orbit-2 .stat-node {
    animation-duration: 40s;
}

.orbit-3 .stat-node {
    animation-duration: 50s;
}

.orbit-4 .stat-node {
    animation-duration: 60s;
}

.orbit-5 .stat-node {
    animation-duration: 70s;
}

@keyframes counterRotate {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(-360deg);
    }
}

.stat-node:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(41, 61, 129, 0.3);
}

.node-icon {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.node-value {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-color);
    line-height: 1;
}

.node-label {
    font-size: 0.6rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1;
}

[data-theme="dark"] .stat-node {
    background: var(--gray-800);
    border-color: var(--primary-light);
}

/* Tech Showcase - Mobile'de gizle */
.tech-showcase {
    padding: 100px 0;
    background: var(--bg-color);
}

@media (max-width: 768px) {
    .tech-showcase {
        display: none;
    }
}

[data-theme="dark"] .tech-showcase {
    background: var(--bg-color);
}

.tech-ecosystem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.tech-layer {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

    .tech-layer:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }

    .tech-layer h4 {
        color: var(--text-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-align: center;
        font-size: 1.1rem;
    }

.tech-items {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

    .tech-item:hover {
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .tech-item.active {
        border-color: var(--primary-color);
        background: var(--primary-color);
        color: white;
    }

.tech-logo {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.tech-description {
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    min-height: 200px;
}

.tech-detail h5 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.tech-detail p {
    color: var(--text-light);
    line-height: 1.6;
}

[data-theme="dark"] .tech-layer,
[data-theme="dark"] .tech-description {
    background: var(--surface-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .tech-item {
    background: var(--gray-800);
}

/* Contact Interactive Section */
.contact-interactive {
    padding: 100px 0;
    background: var(--surface-color);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .contact-interactive {
    background: var(--surface-color);
}

.contact-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.contact-animation {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comm-hub {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 10;
}

.hub-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: commPulse 3s infinite;
}

@keyframes commPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hub-core {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
}

    .hub-core .hub-icon {
        font-size: 2rem;
        margin-bottom: 0.2rem;
    }

    .hub-core .hub-label {
        font-size: 0.9rem;
        line-height: 1;
    }

    .hub-core .hub-subtitle {
        font-size: 0.7rem;
        opacity: 0.8;
    }

.contact-method {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: methodFloat 4s ease-in-out infinite;
}

    .contact-method:hover {
        transform: scale(1.05);
        box-shadow: var(--shadow-xl);
    }

.email-method {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.phone-method {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.location-method {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.calendar-method {
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes methodFloat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.method-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.method-label {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.method-value {
    font-size: 0.7rem;
    color: var(--text-light);
}

.connection-line {
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    animation: lineGlow 3s ease-in-out infinite;
}

.line-1 {
    top: 30%;
    left: 30%;
    width: 40%;
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

.line-2 {
    top: 30%;
    right: 30%;
    width: 40%;
    transform: rotate(-45deg);
    animation-delay: 1.5s;
}

.line-3 {
    bottom: 30%;
    left: 30%;
    width: 40%;
    transform: rotate(-45deg);
    animation-delay: 2.5s;
}

.line-4 {
    bottom: 30%;
    right: 30%;
    width: 40%;
    transform: rotate(45deg);
    animation-delay: 3.5s;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

.floating-message {
    position: absolute;
    opacity: 0;
    animation: messageFloat 8s ease-in-out infinite;
}

.msg-1 {
    top: 40%;
    left: 5%;
    animation-delay: 1s;
}

.msg-2 {
    top: 60%;
    right: 5%;
    animation-delay: 3s;
}

.msg-3 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 5s;
}

@keyframes messageFloat {
    0%, 90% {
        opacity: 0;
        transform: translateY(20px);
    }

    10%, 80% {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-bubble {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

/* Contact Form Panel */
.contact-form-panel {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.form-header h3 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.quick-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        color: var(--text-color);
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

.form-input,
.form-select,
.form-textarea {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--bg-color);
    color: var(--text-color);
}

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(41, 61, 129, 0.1);
    }

.form-textarea {
    min-height: 80px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .submit-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

.btn-loading,
.btn-success {
    display: none;
}

.contact-alternatives {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.alt-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--surface-color);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
}

    .alt-method:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }

.alt-icon {
    font-size: 1rem;
}

[data-theme="dark"] .contact-method,
[data-theme="dark"] .contact-form-panel {
    background: var(--gray-800);
    border-color: var(--border-color);
}

[data-theme="dark"] .message-bubble {
    background: var(--gray-800);
    color: var(--white);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
    background: var(--surface-color);
    border-color: var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-animation {
        height: 300px;
    }

    .contact-method {
        min-width: 80px;
        padding: 0.8rem;
    }

    .method-icon {
        font-size: 1.2rem;
    }

    .method-label {
        font-size: 0.7rem;
    }

    .method-value {
        font-size: 0.6rem;
    }

    .contact-alternatives {
        flex-direction: column;
        gap: 0.5rem;
    }
}

hidden;
}

[data-theme="dark"] .journey-map {
    background: radial-gradient(circle at center, var(--surface-color) 0%, var(--bg-color) 100%);
}

.live-stats-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    margin-top: 4rem;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    z-index: 10;
    box-shadow: 0 0 40px rgba(41, 61, 129, 0.3);
}

.hub-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    animation: hubPulse 3s infinite;
    opacity: 0.3;
}

@keyframes hubPulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.hub-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hub-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hub-label {
    font-weight: 700;
    font-size: 0.9rem;
}

.hub-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
}

.stat-orbit {
    position: absolute;
    border: 2px dashed rgba(41, 61, 129, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
}

.orbit-3 {
    width: 360px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 50s;
}

.orbit-4 {
    width: 440px;
    height: 440px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 60s;
}

.orbit-5 {
    width: 520px;
    height: 520px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 70s;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.stat-node {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: counterRotate 30s linear infinite;
    box-shadow: var(--shadow-lg);
}

.orbit-2 .stat-node {
    animation-duration: 40s;
}

.orbit-3 .stat-node {
    animation-duration: 50s;
}

.orbit-4 .stat-node {
    animation-duration: 60s;
}

.orbit-5 .stat-node {
    animation-duration: 70s;
}

@keyframes counterRotate {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(-360deg);
    }
}

.stat-node:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(41, 61, 129, 0.3);
}

.node-icon {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.node-value {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-color);
    line-height: 1;
}

.node-label {
    font-size: 0.6rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1;
}

[data-theme="dark"] .stat-node {
    background: var(--gray-800);
    border-color: var(--primary-light);
}

/* Tech Showcase */
.tech-showcase {
    padding: 100px 0;
    background: var(--bg-color);
}

[data-theme="dark"] .tech-showcase {
    background: var(--bg-color);
}

.tech-ecosystem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.tech-layer {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

    .tech-layer:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }

    .tech-layer h4 {
        color: var(--text-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-align: center;
        font-size: 1.1rem;
    }

.tech-items {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

    .tech-item:hover {
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .tech-item.active {
        border-color: var(--primary-color);
        background: var(--primary-color);
        color: white;
    }

.tech-logo {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.tech-description {
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    min-height: 200px;
}

.tech-detail h5 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.tech-detail p {
    color: var(--text-light);
    line-height: 1.6;
}

[data-theme="dark"] .tech-layer,
[data-theme="dark"] .tech-description {
    background: var(--surface-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .tech-item {
    background: var(--gray-800);
}

/* Office Experience */
.office-experience {
    padding: 100px 0;
    background: var(--surface-color);
}

[data-theme="dark"] .office-experience {
    background: var(--surface-color);
}

.office-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.office-scene {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f0f4f8 0%, #d6e8f5 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.scene-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-layer {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.laptop {
    top: 40%;
    left: 30%;
    animation-delay: 0s;
}

.coffee {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.plant {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.team-avatar {
    position: absolute;
    font-size: 3rem;
    animation: bounce 3s ease-in-out infinite;
}

.avatar-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.avatar-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.avatar-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 2s;
}
/* About Page Styles */

/* About Hero Section */
.about-hero {
    background: var(--gradient-main);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

    .about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Company Story */
.company-story {
    padding: 80px 0;
    background: var(--bg-color);
}

[data-theme="dark"] .company-story {
    background: var(--bg-color);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.story-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--primary-color);
    }

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -0.5rem;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        background: var(--primary-color);
        border-radius: 50%;
        border: 3px solid var(--bg-color);
    }

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--surface-color);
}

[data-theme="dark"] .mission-vision {
    background: var(--surface-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .mv-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.6;
}

[data-theme="dark"] .mv-card {
    background: var(--gray-800);
    border-color: var(--border-color);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--bg-color);
}

[data-theme="dark"] .team-section {
    background: var(--bg-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.member-photo {
    margin-bottom: 1.5rem;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
}

.member-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.member-info span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

[data-theme="dark"] .team-member {
    background: var(--surface-color);
    border-color: var(--border-color);
}

/* Office Experience - EKSIK OLAN CSS */
.office-experience {
    padding: 100px 0;
    background: var(--surface-color);
}

[data-theme="dark"] .office-experience {
    background: var(--surface-color);
}

.office-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.office-scene {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f0f4f8 0%, #d6e8f5 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.scene-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-layer {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.laptop {
    top: 40%;
    left: 30%;
    animation-delay: 0s;
}

.coffee {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.plant {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.team-avatar {
    position: absolute;
    font-size: 3rem;
    animation: bounce 3s ease-in-out infinite;
}

.avatar-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.avatar-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.avatar-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.hotspot-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.hotspot-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    z-index: 2;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.office-info-panel {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    height: fit-content;
}

.info-content h4 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.office-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.office-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.stat-icon {
    font-size: 1rem;
}

.contact-card {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

    .contact-card h5 {
        color: var(--text-color);
        font-weight: 700;
        margin-bottom: 1rem;
    }

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

    .contact-row a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

        .contact-row a:hover {
            text-decoration: underline;
        }

.visit-calendar-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .visit-calendar-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

[data-theme="dark"] .office-info-panel {
    background: var(--gray-800);
    border-color: var(--border-color);
}

[data-theme="dark"] .office-scene {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

[data-theme="dark"] .bg-layer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

/* Culture Showcase - EKSIK OLAN CSS */
.culture-showcase {
    padding: 100px 0;
    background: var(--bg-color);
}

[data-theme="dark"] .culture-showcase {
    background: var(--bg-color);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.culture-value {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .culture-value:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

.value-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 10;
}

/* Innovation Animation */
.innovation-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: expandCircle 3s ease-in-out infinite;
}

.c1 {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.c2 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.c3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

@keyframes expandCircle {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

/* Teamwork Animation */
.teamwork-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: nodeGlow 2s ease-in-out infinite;
}

.n1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.n2 {
    top: 70%;
    left: 20%;
    animation-delay: 0.7s;
}

.n3 {
    top: 60%;
    right: 25%;
    animation-delay: 1.4s;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.5;
    animation: lineGlow 2s ease-in-out infinite;
}

.l1 {
    top: 30%;
    left: 30%;
    width: 20px;
    transform: rotate(45deg);
    animation-delay: 0.3s;
}

.l2 {
    top: 60%;
    left: 25%;
    width: 25px;
    transform: rotate(-30deg);
    animation-delay: 1s;
}

.l3 {
    top: 45%;
    right: 35%;
    width: 15px;
    transform: rotate(60deg);
    animation-delay: 1.7s;
}

@keyframes nodeGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

/* Quality Animation */
.quality-bars {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}

.bar {
    width: 8px;
    background: var(--primary-color);
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-in-out infinite;
}

.b1 {
    height: 30px;
    animation-delay: 0s;
}

.b2 {
    height: 50px;
    animation-delay: 0.2s;
}

.b3 {
    height: 70px;
    animation-delay: 0.4s;
}

.b4 {
    height: 40px;
    animation-delay: 0.6s;
}

@keyframes barGrow {
    0%, 100% {
        transform: scaleY(0.8);
        opacity: 0.7;
    }

    50% {
        transform: scaleY(1.2);
        opacity: 1;
    }
}

/* Transparency Animation */
.transparency-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: waveExpand 3s ease-in-out infinite;
}

.w1 {
    animation-delay: 0s;
}

.w2 {
    animation-delay: 1s;
}

.w3 {
    animation-delay: 2s;
}

@keyframes waveExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.culture-value h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.culture-value p {
    color: var(--text-light);
    line-height: 1.6;
}

[data-theme="dark"] .culture-value {
    background: var(--gray-800);
    border-color: var(--border-color);
}

/* Achievements */
.achievements {
    padding: 80px 0;
    background: var(--surface-color);
}

[data-theme="dark"] .achievements {
    background: var(--surface-color);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .achievement-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.achievement-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.achievement-desc {
    font-size: 0.8rem;
    color: var(--text-light);
}

[data-theme="dark"] .achievement-item {
    background: var(--gray-800);
    border-color: var(--border-color);
}

/* Office & Contact */
.office-contact {
    padding: 80px 0;
    background: var(--bg-color);
}

[data-theme="dark"] .office-contact {
    background: var(--bg-color);
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.office-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.office-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item strong {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.office-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.office-card {
    background: var(--surface-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    max-width: 300px;
}

    .office-card h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 1rem;
    }

    .office-card p {
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

.visit-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

    .visit-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

[data-theme="dark"] .office-card {
    background: var(--surface-color);
    border-color: var(--border-color);
}

/* Connection Lines Animation */
@keyframes dashMove {
    0% {
        stroke-dashoffset: 10;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.connection-path {
    stroke: var(--primary-color);
    stroke-width: 2;
    fill: none;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }

        .about-hero h1 {
            font-size: 2.2rem;
        }

    .story-content,
    .office-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .achievement-item {
        padding: 1.5rem 1rem;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .story-text h2,
    .office-info h3 {
        font-size: 1.8rem;
    }

    .mv-card,
    .team-member,
    .achievement-item {
        padding: 1.5rem 1rem;
    }
}
