/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* İçerik Alanı */
.content {
    padding-bottom: 70px; /* Footer yüksekliği kadar boşluk bırakıyoruz */
}

/* Sticky Footer */
.sticky-footer {
    position: fixed; /* Mobilde ve webde en altta sabit kalması için fixed daha uygundur */
    bottom: 0;
    width: 100%;
    height: 65px;
    display: flex;
    z-index: 1000;
}

.footer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    gap: 10px;
}

.call-btn {
    background-color: #ff9800;
    color: #000;
    transition: all 0.3s ease;
    animation: pulse-orange 2s infinite;
}

.whatsapp-btn {
    background-color: #25d366; /* WhatsApp yeşili */
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-orange {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.8); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(255, 152, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 152, 0, 0); }
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.footer-btn:hover {
    background-color: #000; /* Üstüne gelince siyah olması */
    color: #fff;
}

/* Basit Responsive Ayarı */
@media (max-width: 600px) {
    .nav-menu {
        display: none; /* Mobilde menüyü gizleyebilir veya hamburger yapabiliriz */
    }
}
/* Google Fonts'tan şık bir font ekleyelim */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap&font-display=swap');

.sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    background: #1a1a1a; /* Tekel konseptine uygun şık koyu bir arka plan */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Logo Yazı Stili */
.logo {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.logo span {
    color: #f1c40f; /* TEKEL kelimesini altın sarısı/amber rengi yaparak vurguluyoruz */
    font-weight: 400;
}

/* Menü Linkleri */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #ecf0f1;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: 0.3s;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: #f1c40f;
}

/* Hamburger Menü (Masaüstünde Gizli) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #f1c40f;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Menü Kapat Butonu — sadece mobilde görünür */
.nav-close-item {
    display: none;
}

.nav-close-btn {
    display: none;
    background: none;
    border: 2px solid #f1c40f;
    color: #f1c40f;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.nav-close-btn:hover {
    background-color: #f1c40f;
    color: #1a1a1a;
    transform: rotate(90deg);
}

/* Mobil için basit bir düzenleme */
@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
    }
    .hamburger-menu {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -270px;
        width: 270px;
        height: 100vh;
        background-color: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 20px;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        overflow-y: auto;
    }
    .nav-menu.active {
        right: 0;
    }
    /* Kapat butonu: yalnızca menü açıkken göster */
    .nav-menu.active .nav-close-item {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        padding: 0 20px 10px;
        margin: 0 !important;
    }
    .nav-menu.active .nav-close-btn {
        display: flex;
    }
    .nav-menu li {
        margin: 12px 0;
        margin-left: 0;
    }
    .nav-menu a {
        font-size: 1.05rem;
    }
    /* Hamburger animasyonu (Çarpı) */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay to ensure text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-content h1 span {
    color: #f1c40f;
}

.hero-content p {
    font-size: clamp(1rem, 4vw, 1.8rem);
    color: #f1c40f;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f1c40f;
    color: #000;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.3);
}

.hero-btn:hover {
    background: #fff;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.hero-btn i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    .hero-btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: 90%;
        justify-content: center;
    }
}

.prev:hover, .next:hover {
    background: rgba(255,255,255,0.4);
}

.prev { left: 30px; }
.next { right: 30px; }

/* Noktalar (Indicators) */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #f1c40f;
    transform: scale(1.2);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .slider-container { height: 60vh; }
    .slide-content h2 { font-size: 2rem; }
    .slide-content p { font-size: 1rem; }
    .prev, .next { font-size: 1.5rem; padding: 10px; }
}


.main-footer {
    background-color: #0c0c0c; /* Header ile uyumlu çok koyu gri/siyah */
    color: #999;
    padding: 40px 10% 100px 10%; /* Alt kısma 100px boşluk: Sticky buton için yer açtık */
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    line-height: 1.8;
}

.footer-info p {
    margin-bottom: 5px;
}

.footer-link {
    color: #f1c40f; /* Marka renginiz olan sarı */
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-credits {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.8rem;
}

.ai-link {
    color: #00cec9; /* AI ve Teknoloji vurgusu için turkuaz tonu */
    text-decoration: none;
    font-weight: bold;
}

.ai-link:hover {
    color: #fff;
}

/* Mobil için küçük ayar */
@media (max-width: 768px) {
    .main-footer {
        padding-bottom: 120px; /* Mobilde parmak boşluğu daha önemli */
    }
}

/* Yeni Mahalle Grid Yapısı */
.districts-section-new {
    padding: 100px 8%;
    background-color: #080808;
    text-align: center;
}

.districts-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.district-card-new {
    background: #111;
    border: 1px solid #222;
    padding: 25px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.district-card-new:hover {
    background: #1a1a1a;
    border-color: #d4af37;
    transform: translateY(-5px);
}

.district-card-new h3 {
    color: #fff;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.district-card-new h3 span {
    color: #d4af37;
    font-weight: 800;
}

.district-card-new p {
    color: #777;
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Mobil Uyumluluk */
@media (max-width: 1200px) {
    .districts-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .districts-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .districts-section-new {
        padding: 60px 4%;
    }
}

@media (max-width: 480px) {
    .district-card-new h3 {
        font-size: 0.85rem;
    }
    .district-card-new p {
        font-size: 0.7rem;
    }
}
/* Premium Hizmetler Genel Alanı */
.premium-services {
    padding: 100px 10%;
    background-color: #0a0a0a; /* Derin siyah */
    text-align: center;
}

.premium-header {
    margin-bottom: 60px;
}

.gold-subtitle {
    color: #d4af37; /* Gold rengi */
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.premium-title {
    color: #fff;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    margin: 15px 0;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 0 auto;
}

/* Kart Grid Yapısı */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Premium Kartlar */
.premium-card {
    background: linear-gradient(145deg, #151515, #0f0f0f);
    border: 1px solid #222;
    padding: 50px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.card-border-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #d4af37;
    transition: 0.4s;
}

.premium-card:hover {
    transform: translateY(-15px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.premium-card:hover .card-border-top {
    width: 100%;
}

.premium-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 25px;
}

.premium-card h3 {
    color: #fff;
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.premium-card p {
    color: #999;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.card-footer-mark {
    font-size: 0.7rem;
    color: #333;
    font-weight: 800;
    letter-spacing: 2px;
    border-top: 1px solid #222;
    padding-top: 15px;
    transition: 0.4s;
}

.premium-card:hover .card-footer-mark {
    color: #d4af37;
    border-color: #d4af37;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .premium-services { padding: 60px 5%; }
    .premium-title { font-size: 2rem; }
}
.pricing-section {
    padding: 100px 10%;
    background-color: #0c0c0c;
    text-align: center;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .pricing-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-box {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 40px 30px;
    width: 100%;
    position: relative;
    transition: 0.4s ease;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Orta Kutuyu Öne Çıkar */
.pricing-box.featured {
    background: #222;
    border: 2px solid #f1c40f;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f1c40f;
    color: #000;
    padding: 5px 20px;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 20px;
}

.box-header h3 {
    color: #f1c40f;
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.box-description {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.box-btn {
    display: block;
    background: transparent;
    color: #f1c40f;
    border: 2px solid #f1c40f;
    padding: 15px 10px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.85rem;
    transition: 0.3s;
    border-radius: 4px;
    text-transform: uppercase;
}

.box-btn:hover {
    background: #f1c40f;
    color: #000;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .pricing-box.featured {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }
}
.premium-contact {
    padding: 100px 10%;
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Kartlar solda, Harita sağda */
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-card {
    background: #151515;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.contact-item-card:hover {
    border-color: #d4af37;
    background: #1a1a1a;
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.contact-item-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-item-card p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}

.contact-link:hover {
    color: #fff;
}

/* Harita Tasarımı */
.map-container {
    border: 5px solid #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    filter: grayscale(1) invert(1) contrast(1.2); /* Haritayı siyah-beyaz (Dark Mode) yapar */
    opacity: 0.8;
    transition: 0.5s;
}

.map-container:hover {
    filter: grayscale(0) invert(0); /* Üzerine gelince renklenir */
    opacity: 1;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-item-card:hover {
        transform: translateY(-5px);
    }
}

.premium-about {
    padding: 100px 10%;
    background-color: #050505;
    color: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Görsel Alanı */
.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    aspect-ratio: 3 / 2; /* 600x400 uyumlu */
    border-radius: 4px;
    filter: brightness(0.7);
    border: 1px solid #d4af37;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #d4af37;
    color: #000;
    padding: 20px;
    text-align: center;
    font-weight: 800;
    z-index: 2;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

.experience-badge .years { font-size: 1.5rem; display: block; }
.experience-badge .text { font-size: 0.7rem; letter-spacing: 1px; }

/* Metin Alanı */
.gold-line-left {
    width: 50px;
    height: 3px;
    background: #d4af37;
    margin-bottom: 30px;
}

.about-p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-p strong {
    color: #fff;
}

.about-p.highlight {
    color: #d4af37;
    font-style: italic;
    border-left: 2px solid #d4af37;
    padding-left: 20px;
    margin-top: 30px;
}

/* İstatistik Alanı */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 30px;
}

.stat-num {
    display: block;
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-desc {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    .about-visual {
        order: 2;
    }
}
.premium-products {
    padding: 100px 10%;
    background-color: #0c0c0c;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
    opacity: 0.85;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: left;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.product-card h3 {
    color: #fff;
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
    font-weight: 700;
}

.product-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0;
    transition: opacity 0.5s ease 0.1s;
}

.product-btn {
    display: inline-block;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    padding: 12px 25px;
    font-weight: 900;
    font-size: 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.2s;
}

/* Hover Efektleri */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.product-card:hover .card-overlay {
    opacity: 0.7; /* Arka plan görseli daha belirginleşir */
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
}

.product-card:hover .card-content {
    transform: translateY(0);
}

.product-card:hover p,
.product-card:hover .product-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-btn:hover {
    background: #fff;
    color: #000;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .premium-products {
        padding: 60px 5%;
    }
}

@media (max-width: 576px) {
    .product-card {
        height: 350px;
    }
    .product-card h3 {
        font-size: 1.4rem;
    }
}
/* SEO Harita Açıklaması */
.seo-map-description {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 30px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.seo-map-description h3 {
    color: #f1c40f;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.seo-map-description p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.seo-map-description strong {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .seo-map-description {
        padding: 20px 15px;
        margin-top: 15px;
    }
    .seo-map-description h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .seo-map-description p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Floating Kapsayıcı */
.floating-contact {
    position: fixed;
    bottom: 90px; /* Alttaki sticky barın üzerinde durması için yükseklik */
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Butonlar arasındaki boşluk */
    z-index: 9999; /* Her şeyin üstünde görünmesi için */
}

/* Genel Buton Tasarımı */
.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 21px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* WhatsApp Renkleri */
.whatsapp-float {
    background-color: #25d366;
    animation: pulse-green 2s infinite;
}

/* Arama Renkleri */
.call-float {
    background-color: #ff9800; /* Turuncu arka plan */
    animation: pulse-orange 2s infinite;
}

.call-float i {
    color: #000; /* Siyah ikon */
}

/* Hover (Üzerine Gelince) Efekti */
.floating-btn:hover {
    transform: scale(1.1); /* Biraz büyütür */
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* Premium Makale Alanı (SEO Monster) */
.premium-article {
    padding: 100px 10%;
    background-color: #0c0c0c;
    color: #fff;
    border-top: 1px solid #1a1a1a;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.article-content h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.article-p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.article-p strong {
    color: #fff;
    font-weight: 800;
}

.article-list {
    list-style: none;
    margin: 30px 0;
}

.article-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1.05rem;
}

.article-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.2rem;
}

.article-image {
    position: relative;
}

.article-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #d4af37;
    border-radius: 8px;
    z-index: 1;
}

@media (max-width: 992px) {
    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .article-image {
        order: -1;
    }
}

/* Aşağı İn Butonu */
.scroll-down-btn {
    background-color: #1a1a1a;
    border: 1px solid #d4af37;
    color: #d4af37;
}

.scroll-down-btn:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

/* Yukarı Çık Butonu */
.scroll-top-btn {
    background-color: #333; /* Premium koyu gri */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: #f1c40f;
    color: #1a1a1a;
}

/* Footer Link Grid Yapısı */
.footer-links-grid {
    padding: 60px 0;
    background-color: #0c0c0c;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.f-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.f-col h4 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.f-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #d4af37;
}

.f-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.f-logo span {
    color: #d4af37;
}

.f-about-text {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.f-social {
    display: flex;
    gap: 15px;
}

.f-social a {
    color: #fff;
    font-size: 1.1rem;
    transition: 0.3s;
}

.f-social a:hover {
    color: #d4af37;
}

.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.f-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .f-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .f-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .footer-links-grid {
        padding: 40px 20px;
    }
}

/* Dikey İletişim Kartları */
.contact-info-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-item-card-v {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-item-card-v:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.contact-icon-v {
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text-v {
    flex-grow: 1;
}

.contact-text-v h4 {
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.contact-text-v p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.contact-btn-v {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 900;
    transition: 0.3s;
    text-transform: uppercase;
}

.contact-btn-v:hover {
    background: #d4af37;
    color: #000;
}

/* Mobil Düzenleme */
@media (max-width: 576px) {
    .contact-info-vertical {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-item-card-v {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .contact-btn-v {
        width: 100%;
        margin-top: 15px;
    }
}