/* Projects Page Styles - Under Construction Theme */

:root {
    --projects-primary: #7DD87D;
    --projects-dark: #2C2C2C;
    --projects-light: #F8F9FA;
    --projects-gray: #6C757D;
    --projects-white: #FFFFFF;
    --projects-accent: #5CB85C;
    --projects-warning: #FFC107;
    --projects-info: #17A2B8;
}

/* ===== Hero Section ===== */
.projects-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2C2C2C 100%);
}

.projects-hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.projects-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.projects-hero-patterns {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.project-pattern {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s infinite ease-in-out;
}

.project-pattern-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--projects-primary) 0%, transparent 70%);
    top: -250px;
    right: -150px;
    animation-delay: 0s;
}

.project-pattern-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--projects-warning) 0%, transparent 70%);
    bottom: -150px;
    left: 5%;
    animation-delay: 5s;
}

.project-pattern-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--projects-info) 0%, transparent 70%);
    top: 45%;
    left: -80px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.15);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.projects-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

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

/* Construction Icon */
.construction-icon-wrapper {
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

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

.construction-icon {
    display: inline-block;
    position: relative;
}

.construction-icon svg {
    color: var(--projects-primary);
    filter: drop-shadow(0 0 20px rgba(125, 216, 125, 0.5));
}

.construction-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--projects-primary);
    animation: pulse 1.5s infinite;
}

.dot-1 {
    animation-delay: 0s;
}

.dot-2 {
    animation-delay: 0.3s;
}

.dot-3 {
    animation-delay: 0.6s;
}

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

/* Hero Badge */
.projects-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(125, 216, 125, 0.1);
    border: 1px solid rgba(125, 216, 125, 0.3);
    border-radius: 50px;
    color: var(--projects-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.projects-hero-badge svg {
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hero Title */
.projects-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--projects-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.projects-gradient-text {
    background: linear-gradient(135deg, var(--projects-primary) 0%, var(--projects-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.projects-gradient-text i {
    background: linear-gradient(135deg, var(--projects-primary) 0%, var(--projects-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rocketFloat 2s ease-in-out infinite;
    display: inline-block;
    margin-left: 0.3rem;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-10px) rotate(-10deg);
    }
}

/* Hero Description */
.projects-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Status Cards */
.projects-hero-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 100%;
}

.status-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
    border-color: rgba(125, 216, 125, 0.5);
    box-shadow: 0 10px 40px rgba(125, 216, 125, 0.2);
}

.status-card.active {
    background: rgba(125, 216, 125, 0.1);
    border-color: var(--projects-primary);
}

.status-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--projects-primary), var(--projects-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.status-card.active .status-icon {
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(125, 216, 125, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(125, 216, 125, 0);
    }
}

.status-label {
    display: block;
    color: var(--projects-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--projects-primary), var(--projects-accent));
    border-radius: 10px;
    transition: width 1s ease;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

/* ===== Coming Soon Section ===== */
.coming-soon-section {
    padding: 6rem 0;
    background: var(--projects-light);
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--projects-primary), var(--projects-accent));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--projects-dark);
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--projects-primary) 0%, var(--projects-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--projects-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--projects-primary), var(--projects-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(125, 216, 125, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(125, 216, 125, 0.1), rgba(92, 184, 92, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--projects-primary);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--projects-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--projects-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--projects-primary);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--projects-primary);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* ===== Timeline Section ===== */
.timeline-section {
    padding: 6rem 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--projects-primary), var(--projects-accent));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--projects-gray);
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-marker {
    background: var(--projects-primary);
    border-color: var(--projects-primary);
    box-shadow: 0 0 0 4px rgba(125, 216, 125, 0.2);
}

.timeline-item.active .timeline-marker {
    background: var(--projects-warning);
    border-color: var(--projects-warning);
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.timeline-content {
    background: var(--projects-light);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.timeline-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 1rem;
    background: var(--projects-primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-date i {
    font-size: 1rem;
}

.timeline-item.active .timeline-date {
    background: var(--projects-warning);
}

.timeline-item.active .timeline-date i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--projects-dark);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--projects-gray);
    line-height: 1.6;
}

/* ===== Stay Updated Section ===== */
.stay-updated-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--projects-dark) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.stay-updated-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237DD87D' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stay-updated-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.updated-icon {
    margin-bottom: 2rem;
}

.updated-icon svg {
    color: var(--projects-primary);
    filter: drop-shadow(0 0 20px rgba(125, 216, 125, 0.5));
}

.updated-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.updated-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.updated-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--projects-primary), var(--projects-accent));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(125, 216, 125, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(125, 216, 125, 0.5);
    color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .projects-hero-status {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .projects-hero-section {
        min-height: 75vh;
        padding: 3rem 0;
    }
    
    .projects-hero-content {
        padding: 0 1.5rem;
    }
    
    .construction-icon-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .construction-icon svg {
        width: 70px;
        height: 70px;
    }
    
    .construction-dots {
        gap: 6px;
        margin-top: 0.75rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .projects-hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .projects-hero-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .projects-hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.875rem;
    }
    
    .projects-hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .projects-hero-status {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .status-card {
        padding: 1.5rem 1.25rem;
    }
    
    .status-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .status-label {
        font-size: 0.9rem;
    }
    
    /* Pattern boyutlarını küçült */
    .project-pattern-1 {
        width: 350px;
        height: 350px;
        top: -175px;
        right: -100px;
    }
    
    .project-pattern-2 {
        width: 250px;
        height: 250px;
        bottom: -100px;
    }
    
    .project-pattern-3 {
        width: 180px;
        height: 180px;
    }
    
    .projects-section {
        padding: 4rem 0;
    }
    
    .projects-container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 13px;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .coming-soon-section,
    .timeline-section,
    .stay-updated-section {
        padding: 4rem 0;
    }
    
    .updated-title {
        font-size: 2rem;
    }
    
    .updated-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .updated-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .projects-hero-section {
        min-height: 650px;
    }
    
    .projects-container {
        padding: 0 1rem;
    }
    
    .projects-hero-content {
        padding: 0 1rem;
    }
    
    .construction-icon-wrapper {
        margin-bottom: 1.25rem;
    }
    
    .construction-icon svg {
        width: 60px !important;
        height: 60px !important;
    }
    
    .construction-dots {
        gap: 5px;
        margin-top: 0.625rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .projects-hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .projects-hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .projects-hero-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }
    
    .projects-hero-status {
        gap: 0.875rem;
        margin-top: 1.25rem;
    }
    
    .status-card {
        padding: 1.25rem 1rem;
    }
    
    .status-icon {
        width: 35px;
        height: 35px;
    }
    
    .status-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .status-label {
        font-size: 0.85rem;
    }
    
    .progress-bar {
        height: 5px;
    }
    
    .projects-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .timeline-item {
        padding-left: 45px;
    }
    
    .timeline-date {
        font-size: 0.75rem;
        padding: 0.2rem 0.75rem;
    }
    
    .timeline-title {
        font-size: 1.25rem;
    }
    
    .timeline-description {
        font-size: 0.9rem;
    }
    
    .updated-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .updated-title {
        font-size: 1.75rem;
    }
    
    .updated-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    /* Pattern'leri çok küçük ekranlarda gizle */
    .project-pattern-1,
    .project-pattern-2,
    .project-pattern-3 {
        opacity: 0.03;
    }
}

