/* 1. Ana Konteyner ve Genel Yapı */
.ff-container {
    width: 100%;
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Chivo', sans-serif; /* Sitedeki ana fontla uyumlu */
    text-align: center;
    border-top: 1px solid #f0f0f0;
    margin-top: 40px;
}

/* 2. Etiketler ve Başlıklar */
.ff-label {
    display: block;
    color: #ff4500; /* Logo turuncusu */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.ff-address {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0 auto 30px auto;
    max-width: 500px;
}

/* 3. Telefon ve Etkileşim */
.ff-phone {
    display: inline-block;
    color: #000;
    font-size: 28px;
    font-weight: 900;
    text-decoration: none !important;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.ff-phone:hover {
    color: #ff4500;
    transform: scale(1.02);
}

/* 4. E-posta Kutusu */
.ff-email-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.ff-email {
    color: #0056b3;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 16px;
}

.ff-email:hover {
    opacity: 0.8;
}

/* 5. Sosyal Medya İkonları (SVG Uyumlu) */
.ff-social-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid #f5f5f5;
    padding-top: 30px;
}

.ff-icon {
    width: 42px;
    height: 42px;
    background: #3d8b8d; /* Görseldeki yeşil-mavi tonu */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: #fff !important;
}

.ff-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.ff-icon:hover {
    background: #001524;
    transform: translateY(-5px);
}

/* 6. Ayırıcı Çizgi */
.ff-divider {
    width: 50px;
    height: 3px;
    background: #ff4500;
    margin: 0 auto 30px auto;
    border-radius: 2px;
}