/* --- ANA FOOTER YAPISI --- */
.creative-footer {
    background-color: #080808;
    padding: 120px 8% 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* --- DEV ARKA PLAN YAZISI (GÜNCELLENDİ) --- */
.footer-bg-text {
    position: absolute;
    bottom: -10px;
    left: 0;
    font-size: 25vw;
    font-weight: 900;
    /* Yazının içini boşaltıp sadece ince hat yapma (Modern Mimari Hava) */
    -webkit-text-stroke: 1px rgba(122, 148, 96, 0.08); 
    color: transparent; 
    white-space: nowrap;
    pointer-events: none;
    line-height: 0.8;
    z-index: 1;
    /* Sonsuz yavaş akış animasyonu */
    animation: marquee 60s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- ÜST KATMAN DÜZENİ --- */
.footer-top-layer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 10; /* Yazının üzerine çıkması için */
    margin-bottom: 80px;
}

/* Canlı Durum & Logo */
.live-status {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7a9460;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 8px; height: 8px;
    background-color: #7a9460;
    border-radius: 50%;
    box-shadow: 0 0 10px #7a9460;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(122, 148, 96, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(122, 148, 96, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(122, 148, 96, 0); }
}

.f-logo-big {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
}
.f-logo-big span { color: #7a9460; }

.footer-brand-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 400px;
}

.f-location-badge {
    margin-top: 30px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- YÜZEN İLETİŞİM KARTI --- */
.contact-card-floating {
    background: #111;
    padding: 40px;
    border-radius: 30px;
    width: 450px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    transition: 0.4s ease;
}

.contact-card-floating::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #7a9460, transparent, transparent);
    z-index: -1;
    border-radius: 32px;
}

/* Mini Proje Önizleme */
.mini-project-preview {
    position: relative;
    width: 100%;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.mini-project-preview img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.8s ease;
}

.contact-card-floating:hover .mini-project-preview img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.preview-tag {
    position: absolute; top: 15px; right: 15px;
    background: #7a9460; color: white;
    font-size: 0.65rem; padding: 5px 12px;
    border-radius: 4px; font-weight: 800;
}

.card-inner span {
    display: block; font-size: 0.75rem;
    color: #7a9460; letter-spacing: 2px;
    margin-bottom: 10px;
}

.mail-link {
    font-size: 1.7rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.mail-link:hover { color: #7a9460; }

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.social-circles { display: flex; gap: 12px; }
.social-circles a {
    width: 45px; height: 45px;
    background: #1a1a1a;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; text-decoration: none;
    transition: 0.3s; border: 1px solid rgba(255,255,255,0.05);
}
.social-circles a:hover { background: #7a9460; transform: translateY(-5px); }

/* --- BİLGİ BANDI (TICKER) --- */
.footer-info-ticker {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.ticker-item {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    letter-spacing: 2px;
}

/* --- ALT BAR --- */
.footer-bottom-layer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    position: relative;
    z-index: 10;
}

.f-nav-minimal { display: flex; gap: 30px; }
.f-nav-minimal a {
    text-decoration: none;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem; font-weight: 600;
    transition: 0.3s;
}
.f-nav-minimal a:hover { color: #fff; }

.f-legal { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.ownsoft-signature strong { color: rgba(255,255,255,0.7); }

/* --- MOBİL UYUM (GÜNCELLENDİ) --- */
@media (max-width: 992px) {
    .footer-top-layer { flex-direction: column; gap: 60px; }
    .contact-card-floating { width: 100%; }
    .footer-bg-text { font-size: 45vw; bottom: 5%; }
    .f-logo-big { font-size: 3.5rem; }
}

@media (max-width: 600px) {
    .creative-footer { padding: 80px 5% 30px; }
    .mail-link { font-size: 1.3rem; }
    .f-nav-minimal { gap: 15px; margin-bottom: 20px; }
    .footer-bottom-layer { flex-direction: column; text-align: center; }
    .footer-info-ticker { display: none; }
}

/* Ekstra Bilgi Listesi */
.f-info-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.f-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.f-info-item i {
    color: #7a9460;
    width: 20px;
}

/* Telefon Grubu */
.phone-group {
    display: flex;
    flex-direction: column;
}

.phone-group small {
    font-size: 0.65rem;
    color: #7a9460;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.tel-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Kart Etiketi */
.card-label {
    margin-top: 10px;
}

/* İkonların görünmesi için genel düzeltme */
.fab, .fas {
    font-style: normal;
}


/* --- MINI PROJECT PREVIEW (MAP ONLY) --- */
.mini-project-preview.location-map-mode {
    position: relative;
    width: 100%;
    height: 180px; /* Harita için ideal yükseklik */
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 25px;
}

.mini-project-preview.location-map-mode iframe {
    /* Haritayı tasarımın geri kalanıyla uyumlu hale getiren modern filtre */
    filter: grayscale(1) invert(0.9) contrast(1.2) opacity(0.7);
    transition: 0.5s ease;
}

.mini-project-preview.location-map-mode:hover iframe {
    filter: grayscale(0) invert(0) opacity(1);
}

/* "KONUM" Etiketi */
.mini-project-preview.location-map-mode .preview-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #7a9460; /* Vadi Branda Yeşili */
    color: white;
    font-size: 0.65rem;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 5;
    pointer-events: none; /* Etiket harita etkileşimini engellemesin */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}