/* --- cards.css --- */

.contact-cards-section {
    padding: 60px 0;
    background-color: #fdfdfd;
    position: relative;
    margin-top: -20px; /* Banner ile hafif iç içe geçiş */
    z-index: 10;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

/* Hover Efektleri */
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(206, 160, 107, 0.15);
    border-color: rgba(206, 160, 107, 0.3);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #fffbf6; /* Çok açık gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.contact-card:hover .icon-box {
    background: var(--primary-gold);
    transform: scale(1.1) rotate(10deg);
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    transition: color 0.3s;
}

.contact-card:hover .icon-box i {
    color: #fff;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-card p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-action {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.contact-card:hover .card-action {
    border-bottom-color: var(--primary-gold);
    letter-spacing: 0.5px;
}

/* Giriş Animasyonları */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.card-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0; /* JS yüklenene kadar gizli */
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }




