/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #333;
    line-height: 1.6;
}

/* Ana container */
.maintenance-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.maintenance-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Logo bölümü */
.logo-section {
    margin-bottom: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #10b981;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bakım mesajı */
.maintenance-message {
    margin-bottom: 40px;
}

.maintenance-icon {
    font-size: 4rem;
    color: #f59e0b;
    margin-bottom: 20px;
    animation: rotate 3s linear infinite;
}

.maintenance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.maintenance-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* İlerleme çubuğu */
.progress-section {
    margin-bottom: 40px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-text {
    font-weight: 600;
    color: #374151;
}

.progress-percentage {
    font-weight: 700;
    color: #10b981;
    font-size: 1.1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.estimated-time {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Özellikler bölümü */
.features-section {
    margin-bottom: 40px;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.feature-card {
    padding: 24px;
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.feature-icon {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 16px;
    display: block;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* İletişim bölümü */
.contact-section {
    margin-bottom: 40px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

.contact-method i {
    font-size: 1.1rem;
}

/* Sosyal medya */
.social-section {
    margin-bottom: 40px;
}

.social-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

/* Newsletter */
.newsletter-section {
    margin-bottom: 40px;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.newsletter-description {
    color: #6b7280;
    margin-bottom: 24px;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

.input-group input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.input-group input::placeholder {
    color: #9ca3af;
}

.input-group button {
    padding: 16px 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.input-group button:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

/* Footer */
.footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
    margin-top: 40px;
}

.footer p {
    color: #6b7280;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
}

/* Arka plan animasyonları */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 80%;
    animation-delay: 3s;
}

/* Animasyonlar */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .maintenance-content {
        padding: 24px;
        margin: 10px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .maintenance-title {
        font-size: 2rem;
    }

    .maintenance-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .contact-method {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .maintenance-content {
        padding: 20px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .maintenance-title {
        font-size: 1.8rem;
    }

    .maintenance-icon {
        font-size: 3rem;
    }

    .progress-section {
        padding: 20px;
    }

    .feature-card {
        padding: 20px;
    }
}

/* Karanlık mod desteği */
@media (prefers-color-scheme: dark) {
    .maintenance-content {
        background: rgba(17, 24, 39, 0.95);
        color: #f9fafb;
    }

    .maintenance-title {
        color: #f9fafb;
    }

    .maintenance-description {
        color: #d1d5db;
    }

    .progress-section {
        background: linear-gradient(135deg, #374151, #4b5563);
        border-color: #4b5563;
    }

    .progress-text {
        color: #d1d5db;
    }

    .features-title,
    .contact-title,
    .social-title,
    .newsletter-title {
        color: #f9fafb;
    }

    .feature-card {
        background: linear-gradient(135deg, #374151, #4b5563);
        border-color: #4b5563;
        color: #f9fafb;
    }

    .feature-card h4 {
        color: #f9fafb;
    }

    .feature-card p {
        color: #d1d5db;
    }

    .newsletter-description {
        color: #d1d5db;
    }

    .input-group {
        background: #374151;
        border-color: #4b5563;
    }

    .input-group input {
        color: #f9fafb;
    }

    .input-group input::placeholder {
        color: #9ca3af;
    }

    .footer {
        border-color: #4b5563;
    }

    .footer p,
    .footer-links a {
        color: #d1d5db;
    }
}
