#main-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 1.2s ease-in-out;
}

#main-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cards-container {
    display: flex;
    gap: 40px;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    background: linear-gradient(145deg, #0a0a0a, #111);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-metalic);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--gold-metalic);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.service-card h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.service-card p {
    color: var(--cream);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.gold-btn {
    background: transparent;
    color: var(--gold-metalic);
    border: 2px solid var(--gold-metalic);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover .gold-btn {
    background: var(--gold-metalic);
    color: var(--bg-black);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}
/* Sayfa geçiş animasyonu */
body.fade-out-page {
    opacity: 0;
    transition: opacity 0.5s ease;
}




/*  yanda çıkan wp ikon linki sabit kalan  */
/* =========================================
   SABİT (YÜZEN) WHATSAPP BUTONU
   ========================================= */
.floating-wp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp'ın Orijinal Yeşili */
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    z-index: 9999; /* Sayfadaki her şeyin en üstünde dursun */
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite; /* Dikkat çekici nabız efekti */
}

.floating-wp-btn,
.floating-wp-btn:hover,
.floating-wp-btn:focus,
.floating-wp-btn:visited {
    text-decoration: none;
}

.floating-wp-btn:hover {
    transform: scale(1.1); /* Üzerine gelince hafif büyüsün */
    background-color: #1ebe5d;
}

/* Dikkat çekmesi için etrafına yayılan hafif yeşil ışık (Nabız) animasyonu */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobilde baş parmağa daha kolay otursun diye ufak ayar */
@media (max-width: 768px) {
    .floating-wp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}
