/* =======================================================
    Dosya: hakında.css
    Tema: Albatros Enerji - Dinamik Siyan Tasarım (Hakkımızda Sayfası)
    ======================================================= */

/* Genel Stil Ayarları */
html { 
    scroll-behavior: smooth; 
}

body { 
    background-color: #020617; 
    font-family: 'Poppins', sans-serif; 
    color: white; 
    /* Akıcı, hareketli arkaplan efekti */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 85% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 90%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    background-size: 1200px 1200px, 1000px 1000px, 800px 800px;
    background-attachment: fixed; 
}

/* 1. Navbar Stili ve Scroll Efekti (Diğer sayfayla uyumlu) */
header { 
    transition: 0.3s; 
}
header.scrolled { 
    background: rgba(2, 6, 23, 0.98); 
    backdrop-filter: blur(25px); 
    box-shadow: 0 4px 30px rgba(6, 182, 212, 0.6); 
}
/* Mobil Navigasyon Menü Butonu */
.mobile-menu-button {
    color: #06b6d4;
    font-size: 1.5rem;
}
/* Navbar Link Hover Alt Çizgi Efekti */
.navbar-link-underline {
    position: relative;
    padding-bottom: 5px; 
}
.navbar-link-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #06b6d4;
    transition: width 0.3s ease-out;
}
.navbar-link-underline:hover::after {
    width: 100%;
}

/* 2. Gelişmiş Glassmorphism Efekti */
.glass { 
    background: rgba(255, 255, 255, 0.06); 
    border: 1px solid rgba(6, 182, 212, 0.2); 
    backdrop-filter: blur(30px); 
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6); 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.glass:hover {
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 15px 60px rgba(6, 182, 212, 0.5); 
    transform: translateY(-5px); 
}

/* 3. CTA Butonu Stili */
.cta-premium {
    background-color: #06b6d4; 
    color: #020617; 
    font-weight: 700;
    transition: all 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6); 
    border: none; 
    position: relative;
    overflow: hidden;
}
.cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.5s ease;
}
.cta-premium:hover::before {
    left: 100%;
}
.cta-premium:hover {
    background-color: #0891b2; 
    transform: scale(1.03); 
    box-shadow: 0 0 60px rgba(6, 182, 212, 1); 
}

/* 4. Hakkımızda İkon Kart Stili */
.about-card {
    background-color: #0f172a;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.4s;
}
.about-card:hover {
    background-color: #020617;
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
}


/* 5. Harita Konum Stili (En Vurgulu ve Derli Toplu) */
.location-map-wrapper {
    position: relative;
    border-radius: 1.5rem; /* rounded-3xl */
    overflow: hidden;
    border: 3px solid #06b6d4; /* Kalın siyan çerçeve */
    box-shadow: 0 0 80px rgba(6, 182, 212, 0.7); /* Yoğun siyan gölge */
    height: 550px; 
    background-color: #0f172a; 
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.location-map-wrapper:hover {
    box-shadow: 0 0 120px rgba(6, 182, 212, 1); /* Hover'da daha güçlü parlama */
    transform: scale(1.01);
}
.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(95%) brightness(60%) contrast(120%); /* Temaya daha iyi uyum */
    transition: filter 0.6s ease;
}
.location-map-wrapper:hover iframe {
    filter: grayscale(0%) brightness(100%) contrast(100%); /* Hover'da renkleri geri getirir */
}
/* Harita üzerindeki başlık için */
.map-overlay-title {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 12px 25px;
    background: rgba(2, 6, 23, 0.8);
    border: 2px solid #06b6d4;
    border-radius: 15px;
    box-shadow: 0 0 35px rgba(6, 182, 212, 0.5);
    pointer-events: none; 
}
/* WhatsApp Butonu Stil */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 9999;
}

.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}


/* 6. WhatsApp Butonu */
.whatsapp { 
    position: fixed; bottom: 25px; right: 25px; background: #25D366; color: white; border-radius: 50%; width: 60px; height: 60px; display: flex; justify-content: center; align-items: center; font-size: 28px; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7); z-index: 100; transition: transform 0.3s;
}
.whatsapp:hover {
    transform: scale(1.15) rotate(8deg);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .location-map-wrapper {
        height: 350px; 
    }
}