/* Homepage Specific Styles - Apple.com Inspired */

.homepage {
    background: #ffffff;
}

/* Company Hero Section */
.company-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.company-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-content-wrapper {
    flex: 1;
    max-width: 700px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.company-title {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}

.title-word {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-word:nth-child(1) {
    animation-delay: 0.1s;
}

.title-word:nth-child(2) {
    animation-delay: 0.25s;
}

.title-word:nth-child(3) {
    animation-delay: 0.4s;
}

.title-word:nth-child(4) {
    animation-delay: 0.55s;
}

.company-subtitle {
    font-size: 1.5rem;
    color: #6e6e73;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(2) .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.875rem;
    color: #6e6e73;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-visual-wrapper {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease 1.1s forwards;
}

.hero-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e6e73;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    background: #fbfbfd;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.25rem;
    color: #6e6e73;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.about-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #6366f1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.about-section.in-view .about-card {
    opacity: 1;
    transform: translateY(0);
}

.about-section.in-view .about-card:nth-child(1) {
    transition-delay: 0.1s;
}

.about-section.in-view .about-card:nth-child(2) {
    transition-delay: 0.2s;
}

.about-section.in-view .about-card:nth-child(3) {
    transition-delay: 0.3s;
}

.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15),
                0 0 0 1px rgba(99, 102, 241, 0.1) inset;
    border-color: rgba(99, 102, 241, 0.3);
}

.about-card[data-card="mission"]:hover {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2),
                0 0 0 1px rgba(99, 102, 241, 0.2) inset;
}

.about-card[data-card="vision"]:hover {
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2),
                0 0 0 1px rgba(139, 92, 246, 0.2) inset;
}

.about-card[data-card="values"]:hover {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2),
                0 0 0 1px rgba(16, 185, 129, 0.2) inset;
}

.about-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    transition: all 0.4s ease;
    transform: rotate(0deg);
}

.about-card:hover .about-icon-bg {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.about-card[data-card="mission"] .about-icon-bg {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.about-card[data-card="vision"] .about-icon-bg {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.about-card[data-card="values"] .about-icon-bg {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.about-icon {
    position: relative;
    z-index: 2;
    color: #6366f1;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.2));
}

.about-card[data-card="mission"] .about-icon {
    color: #6366f1;
}

.about-card[data-card="vision"] .about-icon {
    color: #8b5cf6;
}

.about-card[data-card="values"] .about-icon {
    color: #10b981;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.4));
}

.about-card[data-card="vision"]:hover .about-icon {
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
}

.about-card[data-card="values"]:hover .about-icon {
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.4));
}

.about-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.about-card:hover .about-card-title {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card[data-card="vision"]:hover .about-card-title {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card[data-card="values"]:hover .about-card-title {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card-text {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.about-card:hover .about-card-text {
    color: #374151;
}

/* Projects Section */
.projects-section {
    padding: 8rem 2rem;
    background: #ffffff;
    /* Navbar sabit olduğu için Projeler'e tıklandığında başlığın görünmesi için boşluk bırak */
    scroll-margin-top: 100px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.project-card {
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.projects-section.in-view .project-card {
    opacity: 1;
    transform: translateY(0);
}

.projects-section.in-view .project-card:nth-child(1) {
    transition-delay: 0.1s;
}

.projects-section.in-view .project-card:nth-child(2) {
    transition-delay: 0.2s;
}

.projects-section.in-view .project-card:nth-child(3) {
    transition-delay: 0.3s;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-card.coming-soon {
    opacity: 0.6;
    cursor: default;
}

.project-card.coming-soon:hover {
    transform: none;
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    /* Varsayılan kartlar için açık arka plan */
    background: #f5f5f7;
}

/* Sadece NetLev görselinde kenarlarda beyaz boşluk görünmemesi için koyu arka plan */
.project-card[data-project="netlev"] .project-image-wrapper {
    background: #020617;
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e6e73;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.4s ease;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image-placeholder,
.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link-text {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.project-info {
    padding: 2rem;
}

.project-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.project-description {
    font-size: 1rem;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.project-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    font-size: 0.8125rem;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.project-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.feature-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    flex-shrink: 0;
    color: #6366f1;
    transition: color 0.3s ease;
}

.project-feature[data-feature="gamification"] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0.03) 100%);
    border-color: rgba(99, 102, 241, 0.2);
    color: #6366f1;
}

.project-feature[data-feature="gamification"] .feature-icon {
    color: #6366f1;
}

.project-feature[data-feature="analytics"] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.project-feature[data-feature="analytics"] .feature-icon {
    color: #10b981;
}

.project-feature[data-feature="chat"] {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.03) 100%);
    border-color: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.project-feature[data-feature="chat"] .feature-icon {
    color: #8b5cf6;
}

.project-feature[data-feature="gamification"]:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0.06) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.project-feature[data-feature="analytics"]:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.project-feature[data-feature="chat"]:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(139, 92, 246, 0.06) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background: #fbfbfd;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #1d1d1f;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #6366f1;
}

.contact-icon {
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .company-hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 2rem 4rem;
    }

    .hero-content-wrapper {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-visual-wrapper {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .company-title {
        font-size: 2.5rem;
    }

    .company-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

