* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    background: transparent;
    border-radius: 30px;
    padding: 20px 30px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.content::-webkit-scrollbar {
    display: none;
}

/* Logo Alanı */
.logo-container {
    margin-bottom: 15px;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Ana Mesaj */
.main-message {
    margin-bottom: 20px;
}

.coming-soon {
    font-size: 32px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.subtitle {
    font-size: 14px;
    color: #D4AF37;
    margin-bottom: 12px;
    font-weight: 300;
}

.divider {
    width: 80px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto;
    border-radius: 2px;
}

/* İletişim Bilgileri */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.branch {
    background: transparent;
    padding: 15px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 2px solid #88511c;
}

.branch:hover {
    transform: translateY(-5px);
    border-color: #88511c;
}

.branch-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.branch-header i {
    color: #88511c;
    font-size: 18px;
}

.branch-header h3 {
    font-size: 18px;
    color: #88511c;
    font-weight: 600;
}

.address {
    font-size: 13px;
    color: #88511c;
    line-height: 1.5;
    margin-bottom: 8px;
}

.phone {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.phone-number {
    font-size: 14px;
    color: #88511c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.phone-number:hover {
    color: #D4AF37;
}

.phone-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.phone-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #88511c;
    color: #88511c;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.phone-icon:hover {
    background: #88511c;
    color: #000000;
    transform: scale(1.1);
}

/* Sosyal Medya */
.social-media {
    margin-top: 15px;
}

.social-title {
    font-size: 14px;
    color: #D4AF37;
    margin-bottom: 12px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
    pointer-events: auto;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: #D4AF37;
    color: #000000;
    border-color: #FFD700;
}

/* Animasyonlu Arka Plan */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

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

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

@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 Tasarım */
@media (max-width: 768px) {
    .content {
        padding: 40px 25px;
    }

    .coming-soon {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 28px;
    }

    .branch {
        padding: 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .logo {
        max-width: 200px;
    }
}

